summaryrefslogtreecommitdiffstats
path: root/src/gallium/targets/gbm/pipe_loader.c
diff options
context:
space:
mode:
authorChia-I Wu <[email protected]>2011-06-24 10:39:06 +0900
committerChia-I Wu <[email protected]>2011-06-24 16:43:03 +0900
commitf36d210c93b1fde0cdc5c6625ca2df25ad937aba (patch)
tree0d5fe5fdad1e722436b783d5101e44e82d74ab2b /src/gallium/targets/gbm/pipe_loader.c
parent15e64242f9f97f5e001bc7b9f94f17b013230ba5 (diff)
targets/gbm: build pipe drivers
Build pipe drivers here instead of using those built by the soon-to-be-removed targets/egl. [with an update by Benjamin Franzke to use --{start|end}-group]
Diffstat (limited to 'src/gallium/targets/gbm/pipe_loader.c')
-rw-r--r--src/gallium/targets/gbm/pipe_loader.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gallium/targets/gbm/pipe_loader.c b/src/gallium/targets/gbm/pipe_loader.c
index 472614c7052..6200541dbf0 100644
--- a/src/gallium/targets/gbm/pipe_loader.c
+++ b/src/gallium/targets/gbm/pipe_loader.c
@@ -107,11 +107,11 @@ find_pipe_module(struct pipe_module *pmod, const char *name)
search_paths = NULL;
if (geteuid() == getuid()) {
- /* don't allow setuid apps to use EGL_DRIVERS_PATH */
- search_paths = getenv("EGL_DRIVERS_PATH");
+ /* don't allow setuid apps to use GBM_BACKENDS_PATH */
+ search_paths = getenv("GBM_BACKENDS_PATH");
}
if (search_paths == NULL)
- search_paths = _EGL_GALLIUM_DRIVER_SEARCH_DIR;
+ search_paths = GBM_BACKEND_SEARCH_DIR;
end = search_paths + strlen(search_paths);
for (p = search_paths; p < end && pmod->lib == NULL; p = next + 1) {