Module Name: src
Committed By: maya
Date: Tue Jun 18 11:28:30 UTC 2019
Modified Files:
src/external/mit/xorg/lib: libmesa.mk
Log Message:
Include mesa-ver.mk so MESA_VER doesn't get expanded into an empty string.
This changes the output of glGetString(GL_VERSION)
from: 3.1 Mesa
to: 3.1 Mesa 18.3.4
This means programs like firefox/libreoffice no longer blacklist our mesa
version as being too old.
Fixes WebGL on firefox with AMD CEDAR, reported by nia.
To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/external/mit/xorg/lib/libmesa.mk
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/external/mit/xorg/lib/libmesa.mk
diff -u src/external/mit/xorg/lib/libmesa.mk:1.6 src/external/mit/xorg/lib/libmesa.mk:1.7
--- src/external/mit/xorg/lib/libmesa.mk:1.6 Wed Apr 3 15:26:34 2019
+++ src/external/mit/xorg/lib/libmesa.mk Tue Jun 18 11:28:30 2019
@@ -1,4 +1,4 @@
-# $NetBSD: libmesa.mk,v 1.6 2019/04/03 15:26:34 joerg Exp $
+# $NetBSD: libmesa.mk,v 1.7 2019/06/18 11:28:30 maya Exp $
#
# Consumer of this Makefile should set MESA_SRC_MODULES.
@@ -543,3 +543,5 @@ CPPFLAGS+= \
-DYYTEXT_POINTER=1
CFLAGS+= -fvisibility=hidden -fno-strict-aliasing -fno-builtin-memcmp
+
+.include "libGL/mesa-ver.mk"