summaryrefslogtreecommitdiff
path: root/mail/dbmail/files/extra-patch-configure
diff options
context:
space:
mode:
authorMartin Wilke <miwi@FreeBSD.org>2012-06-04 03:01:54 +0000
committerMartin Wilke <miwi@FreeBSD.org>2012-06-04 03:01:54 +0000
commit1a1b5bf057ae9e5224aae70203e47db1b4054f59 (patch)
treed69bddd98d2947cc268cc74de5167a77a24aa259 /mail/dbmail/files/extra-patch-configure
parentA fork of django-filebrowser for Mezzanine CMS (diff)
- Update to fix LDAP linking to libldap.so instead of libldap_r.so, upstream
mainly have linux where the libraries are symlinked so less interest in fixing. - fix bug where the mhash version is shown instead of the dbmail one. - Bump PORTREVISION PR: 168501 Submitted by: Maintainer
Notes
Notes: svn path=/head/; revision=298324
Diffstat (limited to 'mail/dbmail/files/extra-patch-configure')
-rw-r--r--mail/dbmail/files/extra-patch-configure29
1 files changed, 29 insertions, 0 deletions
diff --git a/mail/dbmail/files/extra-patch-configure b/mail/dbmail/files/extra-patch-configure
new file mode 100644
index 000000000000..05a0660366c3
--- /dev/null
+++ b/mail/dbmail/files/extra-patch-configure
@@ -0,0 +1,29 @@
++++ configure.orig 2012-03-11 08:02:30.000000000 +0000
+--- configure 2012-05-31 12:47:22.000000000 +0100
+@@ -4420,7 +4420,7 @@
+ cat >>confdefs.h <<_ACEOF
+ #define HAVE_LDAP_H 1
+ _ACEOF
+- LDAPLIB="-lldap"
++ LDAPLIB="-lldap_r"
+ else
+ LDAPLIB="failed"
+ fi
+@@ -4443,7 +4443,7 @@
+ cat >>confdefs.h <<_ACEOF
+ #define HAVE_LDAP_H 1
+ _ACEOF
+- LDAPLIB="-L$TEST_PATH -lldap"
++ LDAPLIB="-L$TEST_PATH -lldap_r"
+ else
+ LDAPLIB="failed"
+ fi
+@@ -4489,7 +4489,7 @@
+ return 0;
+ }
+ _ACEOF
+-for ac_lib in '' ldap; do
++for ac_lib in '' ldap_r; do
+ if test -z "$ac_lib"; then
+ ac_res="none required"
+ else