From owner-svn-ports-all@FreeBSD.ORG Thu Mar 13 18:35:28 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A8F6D316; Thu, 13 Mar 2014 18:35:28 +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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 952B8E28; Thu, 13 Mar 2014 18:35:28 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s2DIZSWL028668; Thu, 13 Mar 2014 18:35:28 GMT (envelope-from antoine@svn.freebsd.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s2DIZS7s028667; Thu, 13 Mar 2014 18:35:28 GMT (envelope-from antoine@svn.freebsd.org) Message-Id: <201403131835.s2DIZS7s028667@svn.freebsd.org> From: Antoine Brodin Date: Thu, 13 Mar 2014 18:35:28 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r348113 - head/graphics/libEGL 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.17 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, 13 Mar 2014 18:35:28 -0000 Author: antoine Date: Thu Mar 13 18:35:28 2014 New Revision: 348113 URL: http://svnweb.freebsd.org/changeset/ports/348113 QAT: https://qat.redports.org/buildarchive/r348113/ Log: Fix WITH_NEW_XORG check, it has to be done after bsd.port.options.mk or bsd.port.pre.mk is included for it to be default for 11 users Silence from: x11@ Modified: head/graphics/libEGL/Makefile Modified: head/graphics/libEGL/Makefile ============================================================================== --- head/graphics/libEGL/Makefile Thu Mar 13 18:30:16 2014 (r348112) +++ head/graphics/libEGL/Makefile Thu Mar 13 18:35:28 2014 (r348113) @@ -9,10 +9,6 @@ COMMENT= OpenEGL library LIB_DEPENDS+= libpthread-stubs.so:${PORTSDIR}/devel/libpthread-stubs -.if ! defined(WITH_NEW_XORG) -IGNORE= Please enable WITH_NEW_XORG, libEGL needs libdrm higher then 2.4.24 -.endif - USE_XORG= x11 xau xcb xdmcp # stuff not needed by libEGL but configure wants it @@ -23,8 +19,11 @@ LIB_DEPENDS+= libexpat.so:${PORTSDIR}/te BUILD_WRKSRC= ${WRKSRC}/src/egl INSTALL_WRKSRC= ${WRKSRC}/src/egl -WITH_NEW_XORG= yes - .include + +.if ! defined(WITH_NEW_XORG) +IGNORE= Please enable WITH_NEW_XORG, libEGL needs libdrm higher then 2.4.24 +.endif + .include "${.CURDIR}/../../graphics/libGL/bsd.mesalib.mk" .include