From owner-svn-ports-head@freebsd.org Tue Nov 3 18:52:40 2015 Return-Path: Delivered-To: svn-ports-head@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 98927A25D63; Tue, 3 Nov 2015 18:52:40 +0000 (UTC) (envelope-from marino@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 5E7CF10A0; Tue, 3 Nov 2015 18:52:40 +0000 (UTC) (envelope-from marino@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tA3IqdjE040239; Tue, 3 Nov 2015 18:52:39 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tA3IqdbY040238; Tue, 3 Nov 2015 18:52:39 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201511031852.tA3IqdbY040238@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Tue, 3 Nov 2015 18:52:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r400708 - head/devel/libdap 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.20 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 Nov 2015 18:52:40 -0000 Author: marino Date: Tue Nov 3 18:52:39 2015 New Revision: 400708 URL: https://svnweb.freebsd.org/changeset/ports/400708 Log: devel/libdap: Unbreak build on DragonFly after r400253 OSVERSION checks need to be validated by checking OPSYS, especially with the ">" comparison. In this case, the extra patch got applied to all releases of DragonFly unconditionally, breaking the build. Approved by: blanket for OSVERSION usage Modified: head/devel/libdap/Makefile Modified: head/devel/libdap/Makefile ============================================================================== --- head/devel/libdap/Makefile Tue Nov 3 18:33:57 2015 (r400707) +++ head/devel/libdap/Makefile Tue Nov 3 18:52:39 2015 (r400708) @@ -24,7 +24,7 @@ USES= bison charsetfix gmake libtool lo .include -.if ${OSVERSION} >= 1100000 +.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1100000 EXTRA_PATCHES+= ${FILESDIR}/extra-patch-dds.yy .endif