diff options
author | Chia-I Wu <olvaffe@gmail.com> | 2009-08-21 13:53:36 +0800 |
---|---|---|
committer | Brian Paul <brianp@vmware.com> | 2009-08-21 08:34:34 -0600 |
commit | 5a459d58fca2b71cb77c39f98df8a81ce6298421 (patch) | |
tree | 736e152e0c0da819c13482ccb183806ce2538610 /configs | |
parent | 1f871a4d1536a7124d82d4503d1167bd668f84da (diff) | |
download | external_mesa3d-5a459d58fca2b71cb77c39f98df8a81ce6298421.zip external_mesa3d-5a459d58fca2b71cb77c39f98df8a81ce6298421.tar.gz external_mesa3d-5a459d58fca2b71cb77c39f98df8a81ce6298421.tar.bz2 |
egl: Remove dependency on libX11.
libX11 is used to determine the screen number, which is in turned used
to determine the DRI driver. However, the sysfs interface for
determining the DRI driver is gone, and no working driver depends on
this mechanism.
Display string parsing is moved to a new function,
_eglSplitDisplayString.
Signed-off-by: Chia-I Wu <olvaffe@gmail.com>
Diffstat (limited to 'configs')
-rw-r--r-- | configs/default | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configs/default b/configs/default index 60638d7..127b98e 100644 --- a/configs/default +++ b/configs/default @@ -105,7 +105,7 @@ GALLIUM_STATE_TRACKERS_DIRS = glx # Library dependencies #EXTRA_LIB_PATH ?= GL_LIB_DEPS = $(EXTRA_LIB_PATH) -lX11 -lXext -lm -lpthread -EGL_LIB_DEPS = $(EXTRA_LIB_PATH) -lX11 -ldl -lpthread +EGL_LIB_DEPS = $(EXTRA_LIB_PATH) -ldl -lpthread OSMESA_LIB_DEPS = $(EXTRA_LIB_PATH) -L$(TOP)/$(LIB_DIR) -l$(GL_LIB) GLU_LIB_DEPS = $(EXTRA_LIB_PATH) -L$(TOP)/$(LIB_DIR) -l$(GL_LIB) -lm GLUT_LIB_DEPS = $(EXTRA_LIB_PATH) -L$(TOP)/$(LIB_DIR) -l$(GLU_LIB) -l$(GL_LIB) -lX11 -lXmu -lXi -lm |