aboutsummaryrefslogtreecommitdiff
path: root/print/panda/files
diff options
context:
space:
mode:
authorTijl Coosemans <tijl@FreeBSD.org>2014-09-07 20:14:17 +0000
committerTijl Coosemans <tijl@FreeBSD.org>2014-09-07 20:14:17 +0000
commit2e34e125f2dfca1d1c8049cedfd59435dfae055a (patch)
treee25618413e0474fb9a98426a19b925a2713c71fe /print/panda/files
parent7483085a9a55313523ffcef5346b298692bbd109 (diff)
downloadports-2e34e125f2dfca1d1c8049cedfd59435dfae055a.tar.gz
ports-2e34e125f2dfca1d1c8049cedfd59435dfae055a.zip
Notes
Diffstat (limited to 'print/panda/files')
-rw-r--r--print/panda/files/patch-configure.in26
1 files changed, 26 insertions, 0 deletions
diff --git a/print/panda/files/patch-configure.in b/print/panda/files/patch-configure.in
new file mode 100644
index 000000000000..bf1cae63c46b
--- /dev/null
+++ b/print/panda/files/patch-configure.in
@@ -0,0 +1,26 @@
+--- configure.in.orig 2004-04-13 00:46:24 UTC
++++ configure.in
+@@ -28,7 +28,7 @@
+ dnl AC_CHECK_LIB(dmalloc, malloc)
+
+ dnl -lpng::
+-AC_CHECK_LIB(png, png_libpng_ver, CFLAGS="$CFLAGS -DHAVE_LIBPNG" LDFLAGS="$LDFLAGS -lpng" )
++AC_CHECK_LIB(png, png_get_libpng_ver, CFLAGS="$CFLAGS -DHAVE_LIBPNG" LDFLAGS="$LDFLAGS -lpng" )
+
+ dnl -ltiff:
+ AC_CHECK_LIB(tiff, TIFFOpen, CFLAGS="$CFLAGS -DHAVE_LIBTIFF" LDFLAGS="$LDFLAGS -ltiff")
+@@ -52,12 +52,12 @@
+ if test "z$DATABASE" = "zedb"; then
+ AC_CHECK_LIB(edb, e_db_open,
+ [LDFLAGS="$LDFLAGS -ledb" DATABASE="edb" AC_DEFINE([USE_EDB], [], [Use Edb])],
+- [AC_MSG_RESULT([not found]),
++ [AC_MSG_RESULT([not found])
+ AC_MSG_ERROR([please reinstall the Edb distribution])])
+ elif test "z$DATABASE" = "zdb"; then
+ AC_CHECK_LIB(db, db_create,
+ [LDFLAGS="$LDFLAGS -ldb" DATABASE="db" AC_DEFINE([USE_DB], [], [Use Berkeley DB])],
+- [AC_MSG_RESULT([not found]),
++ [AC_MSG_RESULT([not found])
+ AC_MSG_ERROR([please reinstall the Berkeley DB distribution])])
+ fi
+ fi