b3aac7c901
2) change tiff/Makefile to spit out message saying to use tiff34 remove all tiff files, patches, and pkg data; they're no longer needed 3) install tiff34 as libtiff, tiff.h, and tiffio.h; add symbolic links so the old names of libtiff34, tiff34.h, and tiffio34.h still work. 4) Change ImageMagick to use -ltiff, not -ltiff34; remove the patch files and directory as they are no longer needed. 5) Change gimp to use -ltiff, not -ltiff34; remove the patch files and directory as they are no longer needed. NOTE: with these changes ImageMagick and gimp require the updated tiff34 port.
33 lines
1.1 KiB
Plaintext
33 lines
1.1 KiB
Plaintext
--- libtiff/Makefile.in.orig Mon Apr 29 15:16:21 1996
|
|
+++ libtiff/Makefile.in Tue Jun 9 16:05:05 1998
|
|
@@ -62,7 +62,7 @@
|
|
#
|
|
CONF_LIBRARY=@CONF_JPEG@ @CONF_ZIP@
|
|
COPTS = @GCOPTS@
|
|
-OPTIMIZER=-O
|
|
+OPTIMIZER=-O2
|
|
CFLAGS = @ENVOPTS@ @LIBCOPTS@ ${COPTS} ${OPTIMIZER} ${IPATH} ${CONF_LIBRARY}
|
|
#
|
|
SRCS = \
|
|
@@ -199,7 +199,10 @@
|
|
# OSF/1 3.2 shared lib rule
|
|
OSFdso: ${OBJS}
|
|
${LD} -o libtiff.@DSOSUF@ -shared -error_unresolved ${OBJS} @LIBJPEG@ @LIBGZ@ -lc -lm
|
|
-
|
|
+FREEBSDdso: ${OBJS}
|
|
+ ${LD} -Bshareable -x /usr/lib/c++rt0.o -o libtiff.@DSOSUF_VERSION@ \
|
|
+ ${OBJS} @LIBJPEG@ @LIBGZ@
|
|
+ touch $@
|
|
|
|
${OBJS}: ${SRCDIR}/tiffio.h ${SRCDIR}/tiff.h ${SRCDIR}/tif_dir.h
|
|
${OBJS}: ${SRCDIR}/tiffcomp.h ${SRCDIR}/tiffiop.h ${SRCDIR}/tiffconf.h
|
|
@@ -309,7 +312,7 @@
|
|
${INSTALL} -idb tiff.sw.tools -m 555 -F @DIR_LIB@ \
|
|
-O libtiff.@DSOSUF_VERSION@; \
|
|
${INSTALL} -idb tiff.sw.tools -F @DIR_LIB@ \
|
|
- -ln libtiff.@DSOSUF_VERSION@ -O libtiff.@DSOSUF@; \
|
|
+ -lns libtiff.@DSOSUF_VERSION@ -O libtiff.@DSOSUF@; \
|
|
else \
|
|
${INSTALL} -idb tiff.sw.tools -m 444 -F @DIR_LIB@ \
|
|
-O libtiff.@DSOSUF@; \
|