diff options
author | Dan Nicholson <[email protected]> | 2007-10-31 17:12:07 -0700 |
---|---|---|
committer | Dan Nicholson <[email protected]> | 2007-12-07 11:49:40 -0800 |
commit | 6aaf9bdd418e11d5ccb76a6ab85a8df36b0c8804 (patch) | |
tree | 9a50ad38cf2683bf76d33bb4845959d12741dc72 /configs/linux-static | |
parent | e2ca788ae700aae75bf8d024c1374c38cc5574f9 (diff) |
configs: Fix linking with static libGL and --as-needed
Linking of the programs breaks when using a static libGL and the GNU ld
option --as-needed. This is because libXext is needed for the XShm
functions.
Diffstat (limited to 'configs/linux-static')
-rw-r--r-- | configs/linux-static | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configs/linux-static b/configs/linux-static index 2a77d4c4b7b..1ee16be73f2 100644 --- a/configs/linux-static +++ b/configs/linux-static @@ -22,4 +22,5 @@ GLUT_LIB_DEPS = GLW_LIB_DEPS = # Need to specify all libraries we may need -APP_LIB_DEPS = $(EXTRA_LIB_PATH) -lX11 -lXmu -lXt -lXi -lpthread -lstdc++ -lm +APP_LIB_DEPS = $(EXTRA_LIB_PATH) -lX11 -lXext -lXmu -lXt -lXi -lpthread \ + -lstdc++ -lm |