diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2009-11-17 08:27:36 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2009-11-17 08:27:36 +0000 |
commit | 372d366fd8b5565873c512f72cc6347500450f88 (patch) | |
tree | 09b45782969c8e452ccc474fccfab52625cbc147 /main/postfix/APKBUILD | |
parent | ddb3b2506b0fd1702e57d9be564f43e79033d1a5 (diff) | |
download | aports-372d366fd8b5565873c512f72cc6347500450f88.tar.bz2 aports-372d366fd8b5565873c512f72cc6347500450f88.tar.xz |
main/postfix: fix for ldap
ref #207
Diffstat (limited to 'main/postfix/APKBUILD')
-rw-r--r-- | main/postfix/APKBUILD | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/main/postfix/APKBUILD b/main/postfix/APKBUILD index d809d72b29..68f39ff122 100644 --- a/main/postfix/APKBUILD +++ b/main/postfix/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=postfix pkgver=2.6.5 -pkgrel=0 +pkgrel=1 pkgdesc="Secure and fast drop-in replacement for Sendmail (MTA)" url="http://www.postfix.org/" license="IPL-1" @@ -71,6 +71,10 @@ build () { ccargs="$ccargs -DHAS_MYSQL $(mysql_config --include)" #auxlibs="$auxlibs -lmysqlclient -lm -lz" + # ldap + ccargs="$ccargs -DHAS_LDAP" + #auxlibs="$auxlibs -lldap -llber" + # compile make DEBUG="" \ OPT="$CFLAGS" \ |