pkgsrc-Bugs archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
pkg/50243: graphics/libepoxy and option EGL from MesaLib
>Number: 50243
>Category: pkg
>Synopsis: graphics/libepoxy and option EGL from MesaLib
>Confidential: no
>Severity: serious
>Priority: medium
>Responsible: pkg-manager
>State: open
>Class: sw-bug
>Submitter-Id: net
>Arrival-Date: Mon Sep 14 11:25:00 +0000 2015
>Originator: Joern Clausen
>Release:
>Organization:
University of Bielefeld
>Environment:
>Description:
After making EGL optional in graphics/MesaLib (see pkg/50232), graphics/libepoxy fails, if EGL.h is not present.
>How-To-Repeat:
>Fix:
This fixes the problem for me:
--- Makefile 2015/09/14 11:17:56 1.1
+++ Makefile 2015/09/14 11:18:07
@@ -26,7 +26,7 @@
.include "../../mk/bsd.prefs.mk"
PLIST_VARS+= egl
-.if ${X11_TYPE} == "modular" || exists(${X11BASE}/include/EGL/egl.h)
+.if ${X11_TYPE} == "modular" && exists(${X11BASE}/include/EGL/egl.h)
PLIST.egl= yes
CONFIGURE_ENV+= PKGSRC_BUILD_EGL=yes
.else
Maybe the check for modular X11 is now unnecessary?
Home |
Main Index |
Thread Index |
Old Index