svn commit: r335618 - in head/dns: bind98 bind99

Erwin Lansing erwin at FreeBSD.org
Wed Dec 4 12:15:53 UTC 2013


Author: erwin
Date: Wed Dec  4 12:15:53 2013
New Revision: 335618
URL: http://svnweb.freebsd.org/changeset/ports/335618

Log:
  Fix build with GSSAPI
  
  Submitted by:	sunpoet

Modified:
  head/dns/bind98/Makefile
  head/dns/bind99/Makefile

Modified: head/dns/bind98/Makefile
==============================================================================
--- head/dns/bind98/Makefile	Wed Dec  4 12:04:49 2013	(r335617)
+++ head/dns/bind98/Makefile	Wed Dec  4 12:15:53 2013	(r335618)
@@ -157,6 +157,7 @@ CONFIGURE_ARGS+=	--disable-threads
 
 .if ${PORT_OPTIONS:MGSSAPI}
 CONFIGURE_ARGS+=	--with-gssapi
+LDFLAGS+=		-L${LIBDIR} -lgssapi_krb5
 .else
 CONFIGURE_ARGS+=	--without-gssapi
 .endif

Modified: head/dns/bind99/Makefile
==============================================================================
--- head/dns/bind99/Makefile	Wed Dec  4 12:04:49 2013	(r335617)
+++ head/dns/bind99/Makefile	Wed Dec  4 12:15:53 2013	(r335618)
@@ -164,6 +164,7 @@ CONFIGURE_ARGS+=	--disable-threads
 
 .if ${PORT_OPTIONS:MGSSAPI}
 CONFIGURE_ARGS+=	--with-gssapi
+LDFLAGS+=		-L${LIBDIR} -lgssapi_krb5
 .else
 CONFIGURE_ARGS+=        --without-gssapi
 .endif


More information about the svn-ports-all mailing list