svn commit: r355569 - head/security/krb5

Cy Schubert cy at FreeBSD.org
Tue May 27 19:59:41 UTC 2014


Author: cy
Date: Tue May 27 19:59:41 2014
New Revision: 355569
URL: http://svnweb.freebsd.org/changeset/ports/355569
QAT: https://qat.redports.org/buildarchive/r355569/

Log:
  Fix build when KRB5_HOME != LOCALBASE.
  
  Submitted by:	hrs

Modified:
  head/security/krb5/Makefile

Modified: head/security/krb5/Makefile
==============================================================================
--- head/security/krb5/Makefile	Tue May 27 19:54:28 2014	(r355568)
+++ head/security/krb5/Makefile	Tue May 27 19:59:41 2014	(r355569)
@@ -43,9 +43,6 @@ LDAP=			Enable LDAP support
 PREFIX=			${KRB5_HOME}
 CFLAGS+=		-Wl,-rpath=${KRB5_HOME}/lib
 LDFLAGS+=		-Wl,-rpath=${KRB5_HOME}/lib
-.if ${KRB5_HOME} != ${LOCALBASE}
-BROKEN=			LIB_DEPENDS when using KRB5_HOME is broken
-.endif
 .endif
 LDFLAGS+=		-L${LOCALBASE}/lib
 CFLAGS+=		-I${LOCALBASE}/include
@@ -55,6 +52,10 @@ USE_RC_SUBR=		kpropd
 
 .include <bsd.port.pre.mk>
 
+.if defined(KRB5_HOME) && ${KRB5_HOME} != ${LOCALBASE}
+BROKEN=			LIB_DEPENDS when using KRB5_HOME is broken
+.endif
+
 .if ${PORT_OPTIONS:MDNS_FOR_REALM}
 CONFIGURE_ARGS+=	--enable-dns-for-realm
 .endif


More information about the svn-ports-all mailing list