diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2012-06-04 03:01:54 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2012-06-04 03:01:54 +0000 |
commit | 1a1b5bf057ae9e5224aae70203e47db1b4054f59 (patch) | |
tree | d69bddd98d2947cc268cc74de5167a77a24aa259 /mail/dbmail/files/extra-patch-acinclude.m4 | |
parent | A 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-acinclude.m4')
-rw-r--r-- | mail/dbmail/files/extra-patch-acinclude.m4 | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/mail/dbmail/files/extra-patch-acinclude.m4 b/mail/dbmail/files/extra-patch-acinclude.m4 new file mode 100644 index 000000000000..f0eb87c767d7 --- /dev/null +++ b/mail/dbmail/files/extra-patch-acinclude.m4 @@ -0,0 +1,20 @@ +--- acinclude.m4.orig 2012-05-30 16:42:44.000000000 +0100 ++++ acinclude.m4 2012-05-30 16:44:28.000000000 +0100 +@@ -235,7 +235,7 @@ + dnl See if we already have the paths we need in the environment. + dnl ...but only if --with-ldap was given without a specific path. + if ( test [ "x$lookforldap" = "xyes" ] || test [ "x$lookforauthldap" = "xyes" ] ); then +- AC_CHECK_HEADERS([ldap.h],[LDAPLIB="-lldap"], [LDAPLIB="failed"]) ++ AC_CHECK_HEADERS([ldap.h],[LDAPLIB="-lldap_r"], [LDAPLIB="failed"]) + if test [ "x$LDAPLIB" != "xfailed" ]; then + break + fi +@@ -247,7 +247,7 @@ + SAVE_CFLAGS=$CFLAGS + dnl The headers might be in a funny place, so we need to use -Ipath + CFLAGS="$CFLAGS -L$TEST_PATH $LDAPINC" +- AC_CHECK_HEADERS([ldap.h],[LDAPLIB="-L$TEST_PATH -lldap"], [LDAPLIB="failed"]) ++ AC_CHECK_HEADERS([ldap.h],[LDAPLIB="-L$TEST_PATH -lldap_r"], [LDAPLIB="failed"]) + CFLAGS=$SAVE_CFLAGS + if test [ "x$LDAPLIB" != "xfailed" ]; then + break 2 |