diff options
author | erwin <erwin@FreeBSD.org> | 2013-12-10 18:01:21 +0800 |
---|---|---|
committer | erwin <erwin@FreeBSD.org> | 2013-12-10 18:01:21 +0800 |
commit | 3c11601c71dfd7c987ea86dddbb9c626c333b156 (patch) | |
tree | 0f38d1821131a98fbeeb6cc18c5aa3ed0f1f3925 /dns/bind98 | |
parent | 85cb76277967d008591c6a17b213707922589d8b (diff) | |
download | freebsd-ports-graphics-3c11601c71dfd7c987ea86dddbb9c626c333b156.tar.gz freebsd-ports-graphics-3c11601c71dfd7c987ea86dddbb9c626c333b156.tar.zst freebsd-ports-graphics-3c11601c71dfd7c987ea86dddbb9c626c333b156.zip |
Fix build with GSSAPI option without Kerberos
PR: 184560
Submitted by: Dewayne <dewayne@heuristicsystems.com.au>
Diffstat (limited to 'dns/bind98')
-rw-r--r-- | dns/bind98/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/dns/bind98/Makefile b/dns/bind98/Makefile index af9f0e4dcb7..9de1320f5d2 100644 --- a/dns/bind98/Makefile +++ b/dns/bind98/Makefile @@ -157,7 +157,11 @@ CONFIGURE_ARGS+= --disable-threads .if ${PORT_OPTIONS:MGSSAPI} CONFIGURE_ARGS+= --with-gssapi +.if defined(HEIMDAL_HOME) +LDFLAGS+= -L${LIBDIR} -lgssapi -lkrb5 +.else LDFLAGS+= -L${LIBDIR} -lgssapi_krb5 +.endif .else CONFIGURE_ARGS+= --without-gssapi .endif |