From: Emil Velikov Date: Sat, 5 Apr 2014 17:03:05 +0000 (+0100) Subject: targets/egl-static: freshen up the version script X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7b7944ee1cedeaf13867974eb8f217690726c245;p=mesa.git targets/egl-static: freshen up the version script Namely drop the version/name tag of the exported symbol, and rename the filename to egl.sym. v2: Rebase on top of the LD_NO_UNDEFINED changes. Signed-off-by: Emil Velikov --- diff --git a/src/gallium/targets/egl-static/Makefile.am b/src/gallium/targets/egl-static/Makefile.am index 221cb712d70..1aa5d37b7f0 100644 --- a/src/gallium/targets/egl-static/Makefile.am +++ b/src/gallium/targets/egl-static/Makefile.am @@ -48,9 +48,9 @@ AM_LDFLAGS = \ -module \ -no-undefined \ -avoid-version \ + -Wl,--version-script=$(top_srcdir)/src/gallium/targets/egl-static/egl.sym $(GC_SECTIONS) \ - $(LD_NO_UNDEFINED) \ - -Wl,--version-script=$(top_srcdir)/src/gallium/targets/egl-static/egl.link + $(LD_NO_UNDEFINED) egldir = $(EGL_DRIVER_INSTALL_DIR) egl_LTLIBRARIES = egl_gallium.la diff --git a/src/gallium/targets/egl-static/egl.link b/src/gallium/targets/egl-static/egl.link deleted file mode 100644 index 5be917fdcde..00000000000 --- a/src/gallium/targets/egl-static/egl.link +++ /dev/null @@ -1,3 +0,0 @@ -VERSION { - global: _eglMain; local: *; -}; diff --git a/src/gallium/targets/egl-static/egl.sym b/src/gallium/targets/egl-static/egl.sym new file mode 100644 index 00000000000..3fe7d670e6d --- /dev/null +++ b/src/gallium/targets/egl-static/egl.sym @@ -0,0 +1,6 @@ +{ + global: + _eglMain; + local: + *; +};