48ace64959
- Removed LZW Compression to comply with Unisys patent extortion - Changed default compression in tools to TIFF_PACKBITS, and changed usage descriptions in tools to reflect removal of LZW compression - Added Pixar tag support
39 lines
1.3 KiB
Plaintext
39 lines
1.3 KiB
Plaintext
--- libtiff/Makefile.in.orig Tue Dec 21 18:12:48 1999
|
|
+++ libtiff/Makefile.in Tue Dec 21 18:16:04 1999
|
|
@@ -62,7 +62,6 @@
|
|
#
|
|
CONF_LIBRARY=@CONF_JPEG@ @CONF_ZIP@
|
|
COPTS = @GCOPTS@
|
|
-OPTIMIZER=-O
|
|
CFLAGS = @ENVOPTS@ @LIBCOPTS@ ${COPTS} ${OPTIMIZER} ${IPATH} ${CONF_LIBRARY}
|
|
#
|
|
SRCS = \
|
|
@@ -216,6 +215,9 @@
|
|
OSFdso: ${OBJS}
|
|
${LD} -o libtiff.@DSOSUF@ -shared -error_unresolved ${OBJS} @LIBJPEG@ @LIBGZ@ -lc -lm
|
|
|
|
+OPENBSDdso: ${OBJS}
|
|
+ ${LD} -x -Bshareable -Bforcearchive -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
|
|
@@ -323,15 +325,9 @@
|
|
-src $$i -O $$f; \
|
|
done
|
|
installDSO: @DSO@dso
|
|
- if [ @DSOSUF_VERSION@ != @DSOSUF@ ]; then \
|
|
- ${INSTALL} -idb tiff.sw.tools -m 555 -F @DIR_LIB@ \
|
|
+ ${INSTALL} -idb tiff.sw.tools.nostrip -m 555 -F @DIR_LIB@ \
|
|
-O libtiff.@DSOSUF_VERSION@; \
|
|
- ${INSTALL} -idb tiff.sw.tools -F @DIR_LIB@ \
|
|
- -ln libtiff.@DSOSUF_VERSION@ -O libtiff.@DSOSUF@; \
|
|
- else \
|
|
- ${INSTALL} -idb tiff.sw.tools -m 555 -F @DIR_LIB@ \
|
|
- -O libtiff.@DSOSUF@; \
|
|
- fi
|
|
+
|
|
install: all installHdrs
|
|
${INSTALL} -idb tiff.sw.dev -m 755 -dir @DIR_LIB@
|
|
${INSTALL} -idb tiff.sw.dev -m 444 -F @DIR_LIB@ -O libtiff.a
|