diff options
author | dinoex <dinoex@FreeBSD.org> | 2003-08-31 20:32:29 +0800 |
---|---|---|
committer | dinoex <dinoex@FreeBSD.org> | 2003-08-31 20:32:29 +0800 |
commit | e8c9bac99489de03fb923eff3c0a2b2476777ca3 (patch) | |
tree | 8814632f855351f919ebaa4df45555cce8c81995 /net | |
parent | e74e33c1c3346c9b9eab4d55aad3fca6eb25bb4d (diff) | |
download | freebsd-ports-graphics-e8c9bac99489de03fb923eff3c0a2b2476777ca3.tar.gz freebsd-ports-graphics-e8c9bac99489de03fb923eff3c0a2b2476777ca3.tar.zst freebsd-ports-graphics-e8c9bac99489de03fb923eff3c0a2b2476777ca3.zip |
- Support POWERDNS_WITH_RECURSOR in STABLE
- Support WITH_LDAP in STABLE
Diffstat (limited to 'net')
-rw-r--r-- | net/powerdns/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/net/powerdns/Makefile b/net/powerdns/Makefile index 5515bf40ac8..a15970b8cac 100644 --- a/net/powerdns/Makefile +++ b/net/powerdns/Makefile @@ -75,14 +75,16 @@ describe: .include <bsd.port.pre.mk> -.if ${OSVERSION} >= 500000 && defined(POWERDNS_WITH_RECURSOR) +.if defined(POWERDNS_WITH_RECURSOR) +USE_GCC=3.2 CONFIGURE_ARGS+= --enable-recursor PLIST_SUB+= RECURSOR="" .else PLIST_SUB+= RECURSOR="@comment " .endif -.if ${OSVERSION} >= 500043 && defined(WITH_LDAP) +.if defined(WITH_LDAP) +USE_GCC=3.2 LIB_DEPENDS+= ldap.2:${PORTSDIR}/${LDAP_PORT} LIB_DEPENDS+= lber.2:${PORTSDIR}/${LDAP_PORT} CONFIGURE_MODULES+= "ldap" |