From owner-svn-ports-head@FreeBSD.ORG Tue Mar 3 08:39:13 2015 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0FBFE50B; Tue, 3 Mar 2015 08:39:13 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EFC635F6; Tue, 3 Mar 2015 08:39:12 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t238dCGh043478; Tue, 3 Mar 2015 08:39:12 GMT (envelope-from mat@FreeBSD.org) Received: (from mat@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t238dCu5043477; Tue, 3 Mar 2015 08:39:12 GMT (envelope-from mat@FreeBSD.org) Message-Id: <201503030839.t238dCu5043477@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: mat set sender to mat@FreeBSD.org using -f From: Mathieu Arnold Date: Tue, 3 Mar 2015 08:39:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r380349 - head/www/h2o X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 Mar 2015 08:39:13 -0000 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 +.include + +.if ${OSVERSION} < 900000 +BROKEN= fails to compile on 8.x +.endif + +.include