Date: Sun, 21 Sep 2014 09:34:59 +0000 (UTC) From: John Marino <marino@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r368732 - head/security/heimdal Message-ID: <201409210934.s8L9YxbV077565@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201409210934.s8L9YxbV077565>