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 <emil.l.velikov@gmail.com>
This commit is contained in:
Emil Velikov 2014-04-05 18:03:05 +01:00
parent 4eaa3c9b60
commit 7b7944ee1c
3 changed files with 8 additions and 5 deletions

View File

@ -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

View File

@ -1,3 +0,0 @@
VERSION {
global: _eglMain; local: *;
};

View File

@ -0,0 +1,6 @@
{
global:
_eglMain;
local:
*;
};