From ba83b8b4ae8adfc7520baf119f8c56bdcbf6547f Mon Sep 17 00:00:00 2001 From: Jon TURNEY Date: Tue, 13 Mar 2012 18:38:59 +0000 Subject: [PATCH] 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 --- src/glx/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/glx/Makefile.am b/src/glx/Makefile.am index 2e06588..ec62faa 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) -- 2.7.4