Date: Wed, 4 Dec 2013 12:15:53 +0000 (UTC) From: Erwin Lansing <erwin@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r335618 - in head/dns: bind98 bind99 Message-ID: <201312041215.rB4CFr2c005032@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201312041215.rB4CFr2c005032>