Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 3 Mar 2015 08:39:12 +0000 (UTC)
From:      Mathieu Arnold <mat@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r380349 - head/www/h2o
Message-ID:  <201503030839.t238dCu5043477@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201503030839.t238dCu5043477>