You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

119 lines
3.1 KiB

Index: config/mkmainlib.inc
diff -Nau config/mkmainlib.inc.orig config/mkmainlib.inc
--- config/mkmainlib.inc.orig 2004-01-26 14:30:23.000000000 +0100
+++ config/mkmainlib.inc 2004-02-12 09:08:24.000000000 +0100
@@ -28,7 +28,7 @@
@-if test "$(WITH_SHARED)" = "no"; then \
cp .libs/$(MAINLIBNAME) .libs/$(MAINLIBNAME)i;\
fi
- $(LIBTOOL) $(INSTALL_DATA) $(MAINLIBNAME) $(libdir);
+ $(LIBTOOL) --mode=install $(INSTALL_DATA) $(MAINLIBNAME) $(libdir);
@-if test "$(WITH_SHARED)" = "yes"; then \
$(LIBTOOL) -n --finish $(libdir);\
else\
Index: configure
diff -Nau configure.orig configure
--- configure.orig 2004-07-07 20:29:08.000000000 +0200
+++ configure 2004-10-27 17:04:45.110483011 +0200
@@ -3183,12 +3183,9 @@
fi;
ac_sys_arch=`uname -p`
- DEFINES="$DEFINES -mt"
- EXTERNALLIBS="$EXTERNALLIBS -mt"
if test "$WITH_64BIT" = "yes"; then
PLATFORM="-DPDF_PLATFORM=\\\"\"SunOS64\"\\\""
- DEFINES="$DEFINES -xarch=v9";
if test "$ac_sys_arch" = "sparc" ; then
DEFINES="$DEFINES -DPDC_PF_SOLARIS_SPARC64"
fi
@@ -8908,6 +8908,7 @@
# zlib
+if [ ".$FLATELIBINC" = . -a ".$FLATELIBLINK" = . ]; then
if test -d libs/flate ; then
FLATELIBINC="-I\$(top_builddir)/libs/flate"
FLATELIBLINK="\$(top_builddir)/libs/flate/libz\$(LA)"
@@ -8917,10 +8918,12 @@
FLATELIBINC=""
FLATELIBLINK=""
fi
+fi
# pnglib
+if [ ".$PNGLIBINC" = . -a ".$PNGLIBLINK" = . ]; then
if test -d libs/png ; then
PNGLIBINC="-I\$(top_builddir)/libs/png"
PNGLIBLINK="\$(top_builddir)/libs/png/libpng\$(LA)"
@@ -8930,10 +8933,12 @@
PNGLIBINC=""
PNGLIBLINK=""
fi
+fi
# tifflib
+if [ ".$TIFFLIBINC" = . -a ".$TIFFLIBLINK" = . ]; then
if test -d libs/tiff ; then
TIFFLIBINC="-I\$(top_builddir)/libs/tiff"
TIFFLIBLINK="\$(top_builddir)/libs/tiff/libtiff\$(LA)"
@@ -8943,10 +8948,12 @@
TIFFLIBINC=""
TIFFLIBLINK=""
fi
+fi
# jpeglib
+if [ ".$JPEGLIBINC" = . -a ".$JPEGLIBLINK" = . ]; then
if test -d libs/jpeg ; then
JPEGLIBINC="-I\$(top_builddir)/libs/jpeg"
JPEGLIBLINK="\$(top_builddir)/libs/jpeg/libjpeg\$(LA)"
@@ -8956,6 +8963,7 @@
JPEGLIBINC=""
JPEGLIBLINK=""
fi
+fi
Index: libs/tiff/tif_ojpeg.c
--- libs/tiff/tif_ojpeg.c.orig 2006-10-12 10:24:39 +0200
+++ libs/tiff/tif_ojpeg.c 2006-10-14 11:16:02 +0200
@@ -141,7 +141,9 @@
#undef JPEG_INTERNALS
/* Hack for files produced by Wang Imaging application on Microsoft Windows */
+#if 0
extern void jpeg_reset_huff_decode(j_decompress_ptr);
+#endif
/* PDFlib GmbH */
#if defined(__ia64__) && defined (__linux__)
@@ -1110,7 +1112,9 @@
"jdshuff.c", if Ken Murchison's lossless-Huffman patch is applied), and we
invoke that interface here after decoding each "strip".
*/
+#if 0
if (sp->is_WANG) jpeg_reset_huff_decode(&sp->cinfo.d);
+#endif
return 1;
}
@@ -1209,7 +1213,9 @@
"jdshuff.c", if Ken Murchison's lossless-Huffman patch is applied), and we
invoke that interface here after decoding each "strip".
*/
+#if 0
if (sp->is_WANG) jpeg_reset_huff_decode(&sp->cinfo.d);
+#endif
return 1;
}