From: Emil Velikov Date: Fri, 23 Feb 2018 19:32:05 +0000 (+0000) Subject: autotools: error out when building with mangling and glvnd X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=25a9450a44b3b572fba81e6cafe33f3367252499;p=mesa.git autotools: error out when building with mangling and glvnd It's not a thing that can work, nor is a wise idea to attempt. v2: Tweak error message (Dylan) CC: Signed-off-by: Emil Velikov Reviewed-by: Adam Jackson (v1) --- diff --git a/configure.ac b/configure.ac index 6b1b8aca753..e2c48a455c2 100644 --- a/configure.ac +++ b/configure.ac @@ -1524,6 +1524,9 @@ AC_ARG_ENABLE([mangling], [enable_mangling=no] ) if test "x${enable_mangling}" = "xyes" ; then + if test "x$enable_libglvnd" = xyes; then + AC_MSG_ERROR([Conflicting options --enable-mangling and --enable-libglvnd.]) + fi DEFINES="${DEFINES} -DUSE_MGL_NAMESPACE" GL_LIB="Mangled${GL_LIB}" OSMESA_LIB="Mangled${OSMESA_LIB}"