diff options
author | Jon TURNEY <[email protected]> | 2012-07-07 22:02:44 +0100 |
---|---|---|
committer | Jon TURNEY <[email protected]> | 2012-07-25 12:39:42 +0100 |
commit | 9f84d645a422a024b01ebcfc654c2909cdca91b5 (patch) | |
tree | 7c4e178b7182f6d5d37392fe6eda2e1cfd5baf2e /src/mesa/drivers/osmesa/Makefile.am | |
parent | 50b13217ba13f569ef851fffcd920e756f255687 (diff) |
drivers/osmesa: Link OSMesa using -no-undefined libtool flag
"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 require that all symbols are resolved when the
library is linked."
Signed-off-by: Jon TURNEY <[email protected]>
Reviewed-by: Matt Turner <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
Reviewed-by: Eric Anholt <[email protected]>
Diffstat (limited to 'src/mesa/drivers/osmesa/Makefile.am')
-rw-r--r-- | src/mesa/drivers/osmesa/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/osmesa/Makefile.am b/src/mesa/drivers/osmesa/Makefile.am index 7c151bf705f..59ee62a7a66 100644 --- a/src/mesa/drivers/osmesa/Makefile.am +++ b/src/mesa/drivers/osmesa/Makefile.am @@ -37,7 +37,7 @@ endif lib@OSMESA_LIB@_la_SOURCES = osmesa.c -lib@OSMESA_LIB@_la_LDFLAGS = -module -version-number @OSMESA_VERSION@ -shared +lib@OSMESA_LIB@_la_LDFLAGS = -module -version-number @OSMESA_VERSION@ -shared -no-undefined lib@OSMESA_LIB@_la_LIBADD = \ $(top_builddir)/src/mesa/libmesa.la \ $(top_builddir)/src/mapi/glapi/libglapi.la |