diff options
author | Adam Jackson <[email protected]> | 2004-10-25 21:20:29 +0000 |
---|---|---|
committer | Adam Jackson <[email protected]> | 2004-10-25 21:20:29 +0000 |
commit | 312c68fab3c179c6173bd25aae07be09d299ce20 (patch) | |
tree | 05f989aa355a5234d5391aa5553e22bef4e529ca /configs/linux-solo-x86 | |
parent | 7badefa6c4918b5c3198a4cd798556c9f52adde6 (diff) |
Add DRI_LIB_DEPS for the DRI drivers to link against. Remove expat from the
link list for libGL itself under DRI configurations, since the XML parsing
code is in the drivers themselves.
Diffstat (limited to 'configs/linux-solo-x86')
-rw-r--r-- | configs/linux-solo-x86 | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configs/linux-solo-x86 b/configs/linux-solo-x86 index 5ab2b9f1519..daa65480bd4 100644 --- a/configs/linux-solo-x86 +++ b/configs/linux-solo-x86 @@ -18,7 +18,8 @@ CXXFLAGS = $(CCOMMON) -Wall -O3 -ansi -pedantic -fPIC ASM_SOURCES = $(X86_SOURCES) # Library/program dependencies -GL_LIB_DEPS = -lm -lpthread -lexpat -ldl +DRI_LIB_DEPS = -lm -lpthread -lexpat -ldl +GL_LIB_DEPS = -lm -lpthread -ldl GLUT_LIB_DEPS = -L$(LIB_DIR) -l$(GLU_LIB) -l$(GL_LIB) -lm APP_LIB_DEPS = -L$(LIB_DIR) -l$(GLUT_LIB) -l$(GLU_LIB) -l$(GL_LIB) -lm -lpthread |