glx: Remove an old DEFAULT_DRIVER_DIR default.
authorEric Anholt <eric@anholt.net>
Thu, 15 Nov 2018 21:41:34 +0000 (13:41 -0800)
committerEric Anholt <eric@anholt.net>
Fri, 16 Nov 2018 23:37:47 +0000 (15:37 -0800)
You can tell by "Mesa/configs/default" how old this is.  Your build system
really has to provide the DEFAULT_DRIVER_DIR, or other loaders will break.

v2: Move the bad (non-prefix-dependent) define to the SConscript to avoid
    breaking it.

Reviewed-by: Eric Engestrom <eric.engestrom@intel.com> (v1)
Reviewed-by: Emil Velikov <emil.velikov@collabora.com> (v1)
src/glx/SConscript
src/glx/dri_common.c

index 8ce177158140b23fe641f05ff031c102a92dec1d..83c62e22f8cea11b5d6cc6589c9c343322ed5fb9 100644 (file)
@@ -24,9 +24,10 @@ env.Prepend(CPPPATH = [
 
 env.Append(CPPDEFINES = [
     '_REENTRANT',
-    #('DEFAULT_DRIVER_DIR', 'DRI_DRIVER_SEARCH_DIR')
 ])
 
+env.Append(CPPDEFINES = ['DEFAULT_DRIVER_DIR=\\"/usr/local/lib/dri\\"'])
+
 env.Prepend(LIBS = [
     libloader,
     mesautil,
index ab5d6c5bc03d6c5e82557833c0f8f314ebe9320c..08923d7efd5529bc6d142e788b2acc3164cf9299 100644 (file)
@@ -77,11 +77,6 @@ dri_message(int level, const char *f, ...)
 #define GL_LIB_NAME "libGL.so.1"
 #endif
 
-#ifndef DEFAULT_DRIVER_DIR
-/* this is normally defined in Mesa/configs/default with DRI_DRIVER_SEARCH_PATH */
-#define DEFAULT_DRIVER_DIR "/usr/local/lib/dri"
-#endif
-
 /**
  * Try to \c dlopen the named driver.
  *