svn commit: r368732 - head/security/heimdal
John Marino
marino at FreeBSD.org
Sun Sep 21 09:34:59 UTC 2014
Author: marino
Date: Sun Sep 21 09:34:58 2014
New Revision: 368732
URL: http://svnweb.freebsd.org/changeset/ports/368732
QAT: https://qat.redports.org/buildarchive/r368732/
Log:
security/heimdal: Unbreak on DragonFly
The 30 AUG 14 commit to fix libcom_err on some FreeBSD releases crippled
Heimdal on DragonFly such that samba-nsupdate no longer would configure.
The culprit was once again using OSVERSION without checking OPSYS, so
adjusting for OPSYS fixes this regression.
Modified:
head/security/heimdal/Makefile
Modified: head/security/heimdal/Makefile
==============================================================================
--- head/security/heimdal/Makefile Sun Sep 21 09:14:57 2014 (r368731)
+++ head/security/heimdal/Makefile Sun Sep 21 09:34:58 2014 (r368732)
@@ -89,11 +89,15 @@ X11_CONFIGURE_WITH= x
.include <bsd.port.options.mk>
+.if ${OPSYS} == FreeBSD
.if ${OSVERSION} < 1000000
PLIST_SUB+= LIBCOM_ERR=""
.else
PLIST_SUB+= LIBCOM_ERR="@comment "
.endif
+.else
+PLIST_SUB+= LIBCOM_ERR=""
+.endif
.if ${PORT_OPTIONS:MLDAP}
WANT_OPENLDAP_SASL?= yes
More information about the svn-ports-all
mailing list