From dc18940ad9b72019e103cb661ffc757c2022bf9a Mon Sep 17 00:00:00 2001 From: Frank Warmerdam Date: Sat, 15 Dec 2001 17:36:53 +0000 Subject: [PATCH] MacOS 10.1 (bug 94) fixes --- configure | 10 +++++----- libtiff/Makefile.in | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/configure b/configure index 9cfc442b..71d826b0 100755 --- a/configure +++ b/configure @@ -1,5 +1,5 @@ #!/bin/sh -# $Header: /cvs/maptools/cvsroot/libtiff/configure,v 1.20 2001-11-15 17:21:05 warmerda Exp $ +# $Header: /cvs/maptools/cvsroot/libtiff/configure,v 1.21 2001-12-15 17:36:53 warmerda Exp $ # # Tag Image File Format (TIFF) Software # @@ -152,7 +152,7 @@ do -target|--target) ac_prev=TARGET;; -target=*|--target=*) TARGET="$ac_optarg" ;; -version|--version) - echo "This is TIFF configure $Revision: 1.20 $" + echo "This is TIFF configure $Revision: 1.21 $" exit 0 ;; -help|--help) usage; exit 0;; @@ -1194,11 +1194,11 @@ if [ "$DSO" = auto ]; then esac ;; *-darwin*) - DSOSUF=${DIST_MAJOR}.dylib + DSOSUF=dylib DSOSUF_VERSION=${DIST_MAJOR}.${DIST_MINOR}.${DIST_POINT}.dylib LIBCOPTS='-fno-common' - DSOLD=gcc - DSOOPTS='-dynamiclib -undefined suppress' + DSOLD="${CCOMPILER} ${ENVOPTS}" + DSOOPTS='-dynamiclib -undefined error' DSO=DARWIN ;; *-linux*) diff --git a/libtiff/Makefile.in b/libtiff/Makefile.in index 3a6723cd..05fafd2d 100644 --- a/libtiff/Makefile.in +++ b/libtiff/Makefile.in @@ -1,4 +1,4 @@ -# $Header: /cvs/maptools/cvsroot/libtiff/libtiff/Makefile.in,v 1.16 2001-09-09 15:56:04 warmerda Exp $ +# $Header: /cvs/maptools/cvsroot/libtiff/libtiff/Makefile.in,v 1.17 2001-12-15 17:36:53 warmerda Exp $ # # Tag Image File Format Library # @@ -211,7 +211,7 @@ GNULDdso: ${OBJS} fi touch $@ DARWINdso: ${OBJS} - ${CC} -dynamiclib -undefined suppress \ + ${CC} -dynamiclib -undefined error \ -install_name libtiff.@DSOSUF@ \ -o libtiff.@DSOSUF_VERSION@ ${OBJS} \ @LIBJPEG@ @LIBGZ@ @MACHDEPLIBS@