svn commit: r319266 - head/mail/xf-spf
Baptiste Daroussin
bapt at FreeBSD.org
Mon May 27 16:06:03 UTC 2013
Author: bapt
Date: Mon May 27 16:06:02 2013
New Revision: 319266
URL: http://svnweb.freebsd.org/changeset/ports/319266
Log:
Fix build on HEAD by adding USE_GCC=any (uses nested functions)
Modified:
head/mail/xf-spf/Makefile
Modified: head/mail/xf-spf/Makefile
==============================================================================
--- head/mail/xf-spf/Makefile Mon May 27 16:04:02 2013 (r319265)
+++ head/mail/xf-spf/Makefile Mon May 27 16:06:02 2013 (r319266)
@@ -14,6 +14,7 @@ LIB_DEPENDS+= spf2.3:${PORTSDIR}/mail/li
USES= qmail
USE_BZIP2= yes
+USE_GCC= any
SUB_FILES= pkg-message
SUB_LIST= QMAIL_PREFIX=${QMAIL_PREFIX}
@@ -21,13 +22,13 @@ PLIST_SUB= QMAIL_PREFIX=${QMAIL_PREFIX}
PORTDOCS= README TODO CHANGELOG COPYRIGHT
-.include <bsd.port.pre.mk>
+.include <bsd.port.options.mk>
post-install:
-.if !defined(NOPORTDOCS)
+.if ${PORT_OPTIONS:MDOCS}
@${MKDIR} ${DOCSDIR}
@${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${DOCSDIR}/
.endif
@${CAT} ${PKGMESSAGE}
-.include <bsd.port.post.mk>
+.include <bsd.port.mk>
More information about the svn-ports-all
mailing list