diff options
author | Dan Nicholson <[email protected]> | 2008-05-06 06:21:41 -0700 |
---|---|---|
committer | Dan Nicholson <[email protected]> | 2008-05-09 07:06:52 -0700 |
commit | 5dbbde5b222204fa8dfc086b88a8105516f7d727 (patch) | |
tree | 9dbddd860223643bf436950f9a74a4409c257d44 /src/glx/x11/dri_glx.c | |
parent | d368eed9c78aa3ced8540c66bdc4c5e1d4a067b4 (diff) |
Default DRI driver directory to match X.Org xserver
Since the only valid consumer of the DRI drivers is the X.Org xserver,
this changes the default DRI driver directory to match xorg-server:
${libdir}/dri. The old default of /usr/X11R6/modules/dri was wrong for
nearly all current systems.
Diffstat (limited to 'src/glx/x11/dri_glx.c')
-rw-r--r-- | src/glx/x11/dri_glx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glx/x11/dri_glx.c b/src/glx/x11/dri_glx.c index a58060da3a3..da4824f1725 100644 --- a/src/glx/x11/dri_glx.c +++ b/src/glx/x11/dri_glx.c @@ -84,7 +84,7 @@ struct __GLXDRIconfigPrivateRec { #ifndef DEFAULT_DRIVER_DIR /* this is normally defined in Mesa/configs/default with DRI_DRIVER_SEARCH_PATH */ -#define DEFAULT_DRIVER_DIR "/usr/X11R6/lib/modules/dri" +#define DEFAULT_DRIVER_DIR "/usr/local/lib/dri" #endif static void InfoMessageF(const char *f, ...) |