summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJon TURNEY <jon.turney@dronecode.org.uk>2012-03-13 18:38:59 +0000
committerJon TURNEY <jon.turney@dronecode.org.uk>2012-03-28 13:03:52 +0100
commitba83b8b4ae8adfc7520baf119f8c56bdcbf6547f (patch)
tree8d4852d700d691aed014c1340741d691231b2c26
parent9cb777eb71dde895ca0ad3454a9b44252e9b402e (diff)
Use -no-undefined libtool flag in src/glx/Makefile.am
"Use -no-undefined to assure libtool that the library has no unresolved symbols at link time, so that libtool will build a shared library on platforms that require that all symbols are resolved when the library is linked." Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
-rw-r--r--src/glx/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glx/Makefile.am b/src/glx/Makefile.am
index 2e065885e52..ec62faade99 100644
--- a/src/glx/Makefile.am
+++ b/src/glx/Makefile.am
@@ -102,7 +102,7 @@ GL_LIBS = \
GL_LDFLAGS = \
-Wl,-Bsymbolic \
- -version-number 1:2
+ -version-number 1:2 -no-undefined
libGL_la_SOURCES = $(GL_FILES)
libMangledGL_la_SOURCES = $(GL_FILES)