diff options
author | Sergey A. Osokin <osa@FreeBSD.org> | 2004-02-20 23:36:26 +0800 |
---|---|---|
committer | Sergey A. Osokin <osa@FreeBSD.org> | 2004-02-20 23:36:26 +0800 |
commit | 99b6ee13be0e196141316eb5f19802176048869e (patch) | |
tree | a9c2f15cfca58c369ecd3fa778fd7521f2a12fe3 /mail/postfix26 | |
parent | 2278059ba6d5b95a01157fc663526be94f8efe1c (diff) | |
download | freebsd-ports-gnome-99b6ee13be0e196141316eb5f19802176048869e.tar.gz freebsd-ports-gnome-99b6ee13be0e196141316eb5f19802176048869e.tar.zst freebsd-ports-gnome-99b6ee13be0e196141316eb5f19802176048869e.zip |
Fix build with LDAP.
Submitted by: Jean-Baptiste Quenot <jb.quenot@caraldi.com>
Approved by: Vivek Khera <khera@kcilink.com> (maintainer)
PR: 62690
Diffstat (limited to 'mail/postfix26')
-rw-r--r-- | mail/postfix26/scripts/configure.postfix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mail/postfix26/scripts/configure.postfix b/mail/postfix26/scripts/configure.postfix index 0faf855cfad9..2535d3aa961f 100644 --- a/mail/postfix26/scripts/configure.postfix +++ b/mail/postfix26/scripts/configure.postfix @@ -1,5 +1,5 @@ #!/bin/sh -# $FreeBSD: /tmp/pcvs/ports/mail/postfix26/scripts/Attic/configure.postfix,v 1.42 2004-01-30 19:28:45 eik Exp $ +# $FreeBSD: /tmp/pcvs/ports/mail/postfix26/scripts/Attic/configure.postfix,v 1.43 2004-02-20 15:36:26 osa Exp $ if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then exit @@ -194,13 +194,13 @@ while [ "$1" ]; do OpenLDAP20) echo "BUILD_DEPENDS+= \${LOCALBASE}/lib/libldap.a:\${PORTSDIR}/net/openldap20-client" echo "POSTFIX_CCARGS+= -DHAS_LDAP -I\${LOCALBASE}/include" - echo "POSTFIX_AUXLIBS+= -lldap -llber" + echo "POSTFIX_AUXLIBS+= -L\${LOCALBASE}/lib -lldap -llber" echo "OPENLDAP_SUFFIX= +openldap20" ;; OpenLDAP21) echo "BUILD_DEPENDS+= \${LOCALBASE}/lib/libldap.a:\${PORTSDIR}/net/openldap21-client" echo "POSTFIX_CCARGS+= -DHAS_LDAP -I\${LOCALBASE}/include" - echo "POSTFIX_AUXLIBS+= -lldap -llber" + echo "POSTFIX_AUXLIBS+= -L\${LOCALBASE}/lib -lldap -llber" echo "OPENLDAP_SUFFIX= +openldap21" ;; Test) |