diff options
author | Emil Velikov <emil.l.velikov@gmail.com> | 2014-05-25 03:23:42 +0100 |
---|---|---|
committer | Emil Velikov <emil.l.velikov@gmail.com> | 2014-05-25 23:21:47 +0100 |
commit | 7a63bd960c33127dbce0e5802a7cda96dc011104 (patch) | |
tree | 6595890103cb4c7fc9e93bdbde9f665042511f65 /src/gallium/targets/osmesa | |
parent | 239df5b654fcc52ba2e35370476cb03193dba04c (diff) |
automake: correctly append the version-script
Turns out that the AC conditional did not include the
the version-scripts as expected. Rather it truncated
the remaining linker flags.
Cc: Jon TURNEY <jon.turney@dronecode.org.uk>
Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
Reviewed-by: Jon TURNEY <jon.turney@dronecode.org.uk>
Diffstat (limited to 'src/gallium/targets/osmesa')
-rw-r--r-- | src/gallium/targets/osmesa/Makefile.am | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/gallium/targets/osmesa/Makefile.am b/src/gallium/targets/osmesa/Makefile.am index 0ec8a2613d..3a554a947e 100644 --- a/src/gallium/targets/osmesa/Makefile.am +++ b/src/gallium/targets/osmesa/Makefile.am @@ -45,10 +45,13 @@ lib@OSMESA_LIB@_la_LDFLAGS = \ -module \ -no-undefined \ -version-number @OSMESA_VERSION@ \ - -Wl,--version-script=$(top_srcdir)/src/gallium/targets/osmesa/osmesa.sym \ $(GC_SECTIONS) \ $(LD_NO_UNDEFINED) +if HAVE_LD_VERSION_SCRIPT +lib@OSMESA_LIB@_la_LDFLAGS += \ + -Wl,--version-script=$(top_srcdir)/src/gallium/targets/osmesa/osmesa.sym +endif if HAVE_SHARED_GLAPI SHARED_GLAPI_LIB = $(top_builddir)/src/mapi/shared-glapi/libglapi.la |