svn commit: r380349 - head/www/h2o

Mathieu Arnold mat at FreeBSD.org
Tue Mar 3 08:39:13 UTC 2015


Author: mat
Date: Tue Mar  3 08:39:11 2015
New Revision: 380349
URL: https://svnweb.freebsd.org/changeset/ports/380349
QAT: https://qat.redports.org/buildarchive/r380349/

Log:
  OSVERSION is not defined before bsd.pre.
  
  Pointy Hat to:	az
  Sponsored by:	Absolight

Modified:
  head/www/h2o/Makefile

Modified: head/www/h2o/Makefile
==============================================================================
--- head/www/h2o/Makefile	Tue Mar  3 08:04:29 2015	(r380348)
+++ head/www/h2o/Makefile	Tue Mar  3 08:39:11 2015	(r380349)
@@ -43,10 +43,6 @@ H2O_PIDDIR=	/var/run/${PORTNAME}/
 
 USE_RC_SUBR=	${PORTNAME}
 
-.if ${OSVERSION} < 900000
-BROKEN=	fails to compile on 8.x
-.endif
-
 do-install:
 	${MKDIR} ${STAGEDIR}${DOCSDIR} \
 		${STAGEDIR}${ETCDIR} \
@@ -58,4 +54,10 @@ do-install:
 		${STAGEDIR}${ETCDIR}/${PORTNAME}.conf.sample
 	${INSTALL_PROGRAM} ${WRKDIR}/.build/h2o ${STAGEDIR}${PREFIX}/bin/h2o
 
-.include <bsd.port.mk>
+.include <bsd.port.pre.mk>
+
+.if ${OSVERSION} < 900000
+BROKEN=	fails to compile on 8.x
+.endif
+
+.include <bsd.port.post.mk>


More information about the svn-ports-head mailing list