meson: Add support for configuring dri drivers directory.
authorDylan Baker <dylan@pnwbakers.com>
Thu, 28 Sep 2017 20:59:04 +0000 (13:59 -0700)
committerDylan Baker <dylan@pnwbakers.com>
Mon, 9 Oct 2017 20:42:44 +0000 (13:42 -0700)
v2: - drop with_ from dri_drivers_path variable (Eric A)
v3: - Move HAVE_X11_PLATFORM to the proper patch (Eric A)

Signed-off-by: Dylan Baker <dylanx.c.baker@intel.com>
Reviewed-by: Eric Anholt <eric@anholt.net>
meson.build
meson_options.txt
src/glx/meson.build
src/mesa/drivers/dri/meson.build

index 86e1cc98f81f0acf2f69bb6c394756f4570f5782..716976ccfc67cb9fdb5a0cfb6bac3aa1913bf021 100644 (file)
@@ -42,6 +42,11 @@ with_asm = get_option('asm')
 with_appledri = false
 with_windowsdri = false
 
+dri_drivers_path = get_option('dri-drivers-path')
+if dri_drivers_path == ''
+  dri_drivers_path = join_paths(get_option('libdir'), 'dri')
+endif
+
 with_gles1 = get_option('gles1')
 with_gles2 = get_option('gles2')
 with_opengl = get_option('opengl')
index 09adce0286000a4be6f57251cfd95e92ae978e2d..37b511acd299b6d31a485b9451390dddb35ab77c 100644 (file)
@@ -24,6 +24,8 @@ option('dri3', type : 'combo', value : 'auto', choices : ['auto', 'yes', 'no'],
        description : 'enable support for dri3')
 option('dri-drivers', type : 'string', value : 'i965',
        description : 'comma separated list of dri drivers to build.')
+option('dri-drivers-path', type : 'string', value : '',
+       description : 'Location of dri drivers. Default: $libdir/dri.')
 option('vulkan-drivers', type : 'string', value : 'intel,amd',
        description : 'comma separated list of vulkan drivers to build.')
 option('shader-cache', type : 'boolean', value : true,
index 70718df4d35fdb1a3f22fb538046e9f3b37abe52..6853f5b3a165f924f5c9d024a22b08c227446262 100644 (file)
@@ -106,7 +106,7 @@ elif with_windowsdri
   #]
 endif
 
-dri_driver_dir = join_paths(get_option('prefix'), get_option('libdir'), 'dri')
+dri_driver_dir = join_paths(get_option('prefix'), dri_drivers_path)
 if not with_glvnd
   gl_lib_name = 'GL'
   gl_lib_version = '1.2.0'
index fc851e8a6b41055d699f27b9ada5ea2bc1b5536c..9e0e9638aa4a0b6274a59471b896c3808e49366a 100644 (file)
@@ -49,7 +49,7 @@ if with_dri
   meson.add_install_script(
     join_paths(meson.source_root(), 'bin/install_megadrivers.py'),
     libmesa_dri_drivers.full_path(),
-    join_paths(get_option('libdir'), 'dri'),
+    dri_drivers_path,
     dri_link,
   )
 endif