summaryrefslogtreecommitdiff
path: root/print/ghostscript8/files/patch-base-configure.ac
diff options
context:
space:
mode:
authorHiroki Sato <hrs@FreeBSD.org>2010-08-02 06:15:08 +0000
committerHiroki Sato <hrs@FreeBSD.org>2010-08-02 06:15:08 +0000
commit44bc3e23220d42767cd9d28679a12da3aeb7bb04 (patch)
treeae6229353724de60300bc3fba7aa27d7d9fe5ef6 /print/ghostscript8/files/patch-base-configure.ac
parentUpgrade to 0.15. (diff)
- Fix compile errors when vgalib and lvga256 drivers are enabled.
- Use external libraries instead of bundled old ones[1]. - Fix WITHOUT_FOO handling[2]. Submitted by: mi[1], dinoex[2] PR: ports/126513 PR: ports/148960
Diffstat (limited to 'print/ghostscript8/files/patch-base-configure.ac')
-rw-r--r--print/ghostscript8/files/patch-base-configure.ac20
1 files changed, 20 insertions, 0 deletions
diff --git a/print/ghostscript8/files/patch-base-configure.ac b/print/ghostscript8/files/patch-base-configure.ac
new file mode 100644
index 000000000000..07bc58242f70
--- /dev/null
+++ b/print/ghostscript8/files/patch-base-configure.ac
@@ -0,0 +1,20 @@
+--- base/configure.ac.orig 2010-08-01 22:37:05.000000000 +0900
++++ base/configure.ac 2010-08-01 22:41:12.000000000 +0900
+@@ -402,7 +402,7 @@
+ PNGDEVS="$PNGDEVS_ALL"
+ else
+ AC_MSG_RESULT([no])
+- AC_CHECK_LIB(png, png_check_sig, [
++ AC_CHECK_LIB(png, png_sig_cmp, [
+ AC_CHECK_HEADERS(png.h, [
+ SHARE_LIBPNG=1
+ PNGDEVS="$PNGDEVS_ALL"
+@@ -434,7 +434,7 @@
+ AC_CHECK_LIB(tiff, TIFFOpen,
+ [AC_CHECK_HEADERS(tiff.h, [HAVE_SYSTEM_LIBTIFF=1;SHARE_LIBTIFF=1])],
+ [], [-ljpeg])
+- if test -z $LOCAL_LIBTIFF_VERSION && test "x$HAVE_SYSTEM_LIBTIFF" == x; then
++ if test -z $LOCAL_LIBTIFF_VERSION && test "x$HAVE_SYSTEM_LIBTIFF" = x; then
+ AC_MSG_NOTICE([Could not find a copy of libtiff on your system.
+ Disabling tiff output devices.])
+ else