summaryrefslogtreecommitdiff
path: root/package/bogofilter/patches/patch-configure_ac
diff options
context:
space:
mode:
Diffstat (limited to 'package/bogofilter/patches/patch-configure_ac')
-rw-r--r--package/bogofilter/patches/patch-configure_ac53
1 files changed, 53 insertions, 0 deletions
diff --git a/package/bogofilter/patches/patch-configure_ac b/package/bogofilter/patches/patch-configure_ac
new file mode 100644
index 000000000..8d79ed50f
--- /dev/null
+++ b/package/bogofilter/patches/patch-configure_ac
@@ -0,0 +1,53 @@
+$Id: update-patches 24 2008-08-31 14:56:13Z wbx $
+--- bogofilter-1.2.0.orig/configure.ac 2009-02-21 21:41:43.000000000 +0100
++++ bogofilter-1.2.0/configure.ac 2009-05-28 19:47:00.466710794 +0200
+@@ -550,49 +550,6 @@ Cannot link against libdb? Try these ste
+ AH_TEMPLATE([HAVE_DB_H], [Have suitable db.h header])
+ AC_SUBST(LIBDB)
+
+- dnl check if run-time link works
+- saveLIBS="$LIBS"
+- LIBS="$LIBS $LIBDB"
+- AC_MSG_CHECKING(if a program can be linked against Berkeley DB and run)
+- AC_RUN_IFELSE(
+- AC_LANG_PROGRAM([[
+-#ifdef HAVE_INTTYPES_H
+-#include <inttypes.h>
+-#endif
+-#include <db.h>
+- ]], [[
+-return 0;
+- ]]),,
+- [AC_MSG_RESULT(no)
+- AC_MSG_ERROR([Cannot run a program linked against libdb.
+-Did you adjust your library search path to include your libdb?])],)
+- AC_MSG_RESULT(yes)
+-
+- dnl check if header and library of DB library match
+- dnl ignore if cross compiling
+- AC_MSG_CHECKING(if Berkeley DB header and library versions match)
+- rm -r -f bfadtestdir
+- mkdir bfadtestdir
+- AC_RUN_IFELSE(
+- AC_LANG_PROGRAM([[
+- #include <stdlib.h>
+- #include <stdio.h>
+-#ifdef HAVE_INTTYPES_H
+-#include <inttypes.h>
+-#endif
+- #include <db.h>
+- ]], [[
+- int maj, min;
+- (void)db_version(&maj, &min, 0);
+- (void)fprintf(stderr, "headers: %d.%d, library: %d.%d\n",
+- DB_VERSION_MAJOR, DB_VERSION_MINOR, maj, min);
+- if (maj != DB_VERSION_MAJOR) exit(1);
+- if (min != DB_VERSION_MINOR) exit(1);
+- exit(0);
+- ]]),,
+- [AC_MSG_RESULT(no)
+- AC_MSG_ERROR(db.h header file and db library version do not match.)],)
+- AC_MSG_RESULT(yes)
+ AC_CHECK_DECLS(db_create,,
+ AC_MSG_ERROR([[Can not locate a suitable Berkeley DB db.h header file.
+ Use --with-libdb-prefix=PATH to specify the path to a v3+ install directory.