diff options
author | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2001-05-24 12:07:41 +0000 |
---|---|---|
committer | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2001-05-24 12:07:41 +0000 |
commit | f05b70445bd62ea1a4427c624431dfc405385af4 (patch) | |
tree | 97a057b9dc0f7fa1efb3564c0b880d76f3e8ee77 /mail/postfix-current | |
parent | Update to the latest snapshot, 0.8.1-2001.05.24. (diff) |
link against static mysqlclient libs
PR: 26675
Submitted by: Michael Harnois <mdharnois@home.com>
Approved by: maintainer
Notes
Notes:
svn path=/head/; revision=43005
Diffstat (limited to 'mail/postfix-current')
-rw-r--r-- | mail/postfix-current/scripts/configure.postfix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/postfix-current/scripts/configure.postfix b/mail/postfix-current/scripts/configure.postfix index 74b2f951f869..ab402f363473 100644 --- a/mail/postfix-current/scripts/configure.postfix +++ b/mail/postfix-current/scripts/configure.postfix @@ -89,9 +89,9 @@ while [ "$1" ]; do echo "POSTFIX_AUXLIBS+= -L\${LOCALBASE}/lib -ldb3" ;; \"MySQL\") - echo "BUILD_DEPENDS+= \${LOCALBASE}/lib/mysql/libmysqlclient.so:\${PORTSDIR}/databases/mysql323-client" + echo "BUILD_DEPENDS+= \${LOCALBASE}/lib/mysql/libmysqlclient.a:\${PORTSDIR}/databases/mysql323-client" echo "POSTFIX_CCARGS+= -DHAS_MYSQL -I\${LOCALBASE}/include/mysql" - echo "POSTFIX_AUXLIBS+= -L\${LOCALBASE}/lib/mysql -lmysqlclient -lm -lz" + echo "POSTFIX_AUXLIBS+= \${LOCALBASE}/lib/mysql/libmysqlclient.a -lm -lz" ;; \"OpenLDAP\") echo "CONF2+= sample-ldap.cf" |