diff options
author | Jon TURNEY <[email protected]> | 2012-03-20 11:11:00 +0000 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2012-03-21 11:31:45 -0700 |
commit | 0bc440774489a3f7b4f61bf1161fad7dcf548596 (patch) | |
tree | ee0590bb2e63fb0669c26d3b6b49e0c18e951762 /src/mapi/shared-glapi | |
parent | 668ed9599393de8b0a587c983da5b103249abc78 (diff) |
mapi: Use -no-undefined libtool flag in src/mapi/shared-glapi/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 <[email protected]>
Diffstat (limited to 'src/mapi/shared-glapi')
-rw-r--r-- | src/mapi/shared-glapi/Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mapi/shared-glapi/Makefile.am b/src/mapi/shared-glapi/Makefile.am index f8e0271d71b..8988d2829f3 100644 --- a/src/mapi/shared-glapi/Makefile.am +++ b/src/mapi/shared-glapi/Makefile.am @@ -6,6 +6,7 @@ include $(top_srcdir)/src/mapi/mapi/sources.mak lib_LTLIBRARIES = libglapi.la libglapi_la_SOURCES = $(MAPI_GLAPI_FILES) +libglapi_la_LDFLAGS = -no-undefined include $(GLAPI)/gen/glapi_gen.mk glapi_mapi_tmp.h : $(GLAPI)/gen/gl_and_es_API.xml $(glapi_gen_mapi_deps) |