Received: by mail.netbsd.org (Postfix, from userid 605) id 6E35B84DA0; Sun, 1 Sep 2019 20:38:35 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id E7FD284D96 for ; Sun, 1 Sep 2019 20:38:34 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id xx2DVa-5jUUD for ; Sun, 1 Sep 2019 20:38:34 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 4CC1B84D77 for ; Sun, 1 Sep 2019 20:38:34 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 40646FBF4; Sun, 1 Sep 2019 20:38:34 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1567370314209740" MIME-Version: 1.0 Date: Sun, 1 Sep 2019 20:38:34 +0000 From: "David A. Holland" Subject: CVS commit: pkgsrc/graphics/libepoxy To: pkgsrc-changes@NetBSD.org Reply-To: dholland@netbsd.org X-Mailer: log_accum Message-Id: <20190901203834.40646FBF4@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1567370314209740 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: dholland Date: Sun Sep 1 20:38:34 UTC 2019 Modified Files: pkgsrc/graphics/libepoxy: Makefile Log Message: Explicitly disable EGL if MESALIB_SUPPORTS_EGL isn't yes. Otherwise, the build fails. To generate a diff of this commit: cvs rdiff -u -r1.26 -r1.27 pkgsrc/graphics/libepoxy/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1567370314209740 Content-Disposition: inline Content-Length: 682 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/graphics/libepoxy/Makefile diff -u pkgsrc/graphics/libepoxy/Makefile:1.26 pkgsrc/graphics/libepoxy/Makefile:1.27 --- pkgsrc/graphics/libepoxy/Makefile:1.26 Sat Aug 31 13:50:09 2019 +++ pkgsrc/graphics/libepoxy/Makefile Sun Sep 1 20:38:34 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.26 2019/08/31 13:50:09 nia Exp $ +# $NetBSD: Makefile,v 1.27 2019/09/01 20:38:34 dholland Exp $ DISTNAME= libepoxy-1.5.3 CATEGORIES= graphics @@ -27,6 +27,8 @@ pre-configure: .include "../../graphics/MesaLib/buildlink3.mk" .if !empty(MESALIB_SUPPORTS_EGL:M[Yy][Ee][Ss]) PLIST.egl= yes +.else +CONFIGURE_ARGS+= --disable-egl .endif .include "options.mk" --_----------=_1567370314209740--