diff options
author | ijliao <ijliao@FreeBSD.org> | 2001-05-24 20:07:41 +0800 |
---|---|---|
committer | ijliao <ijliao@FreeBSD.org> | 2001-05-24 20:07:41 +0800 |
commit | 6ecc5e351ed80ddbc5bfb15896eac1082e672ba7 (patch) | |
tree | 723317b5df30de6c12cc7a141295a5fb82b7fd8d /mail/postfix-current | |
parent | 9b56a90f71dbf815c26e5af5c6535bdaaf617f26 (diff) | |
download | freebsd-ports-gnome-6ecc5e351ed80ddbc5bfb15896eac1082e672ba7.tar.gz freebsd-ports-gnome-6ecc5e351ed80ddbc5bfb15896eac1082e672ba7.tar.zst freebsd-ports-gnome-6ecc5e351ed80ddbc5bfb15896eac1082e672ba7.zip |
link against static mysqlclient libs
PR: 26675
Submitted by: Michael Harnois <mdharnois@home.com>
Approved by: maintainer
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" |