From owner-svn-ports-all@freebsd.org Thu Dec 31 08:51:19 2015 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id F0F98A562B8; Thu, 31 Dec 2015 08:51:19 +0000 (UTC) (envelope-from kevlo@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 BABCD1F8F; Thu, 31 Dec 2015 08:51:19 +0000 (UTC) (envelope-from kevlo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tBV8pI3F026585; Thu, 31 Dec 2015 08:51:18 GMT (envelope-from kevlo@FreeBSD.org) Received: (from kevlo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tBV8pIIC026583; Thu, 31 Dec 2015 08:51:18 GMT (envelope-from kevlo@FreeBSD.org) Message-Id: <201512310851.tBV8pIIC026583@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kevlo set sender to kevlo@FreeBSD.org using -f From: Kevin Lo Date: Thu, 31 Dec 2015 08:51:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r404915 - in head/net: hping hping-devel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 31 Dec 2015 08:51:20 -0000 Author: kevlo Date: Thu Dec 31 08:51:18 2015 New Revision: 404915 URL: https://svnweb.freebsd.org/changeset/ports/404915 Log: Check OPSYS. This unbreaks DragonFly after last commit. Submitted by: marino Modified: head/net/hping-devel/Makefile head/net/hping/Makefile Modified: head/net/hping-devel/Makefile ============================================================================== --- head/net/hping-devel/Makefile Thu Dec 31 08:35:46 2015 (r404914) +++ head/net/hping-devel/Makefile Thu Dec 31 08:51:18 2015 (r404915) @@ -31,7 +31,7 @@ PORTEXAMPLES= README apd.htcl apd2.htcl .include -.if (${OSVERSION} >= 1100030) +.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1100030 EXTRA_PATCHES= ${FILESDIR}/extra-patch-sendip.c .endif Modified: head/net/hping/Makefile ============================================================================== --- head/net/hping/Makefile Thu Dec 31 08:35:46 2015 (r404914) +++ head/net/hping/Makefile Thu Dec 31 08:51:18 2015 (r404915) @@ -29,7 +29,7 @@ OPTIONS_DEFINE= DOCS .include -.if (${OSVERSION} >= 1100030) +.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1100030 EXTRA_PATCHES= ${FILESDIR}/extra-patch-sendip.c .endif