diff options
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/Automake.inc | 17 | ||||
-rw-r--r-- | src/gallium/targets/egl-static/Makefile.am | 1 |
2 files changed, 9 insertions, 9 deletions
diff --git a/src/gallium/Automake.inc b/src/gallium/Automake.inc index a8981fb11d5..f36d93da403 100644 --- a/src/gallium/Automake.inc +++ b/src/gallium/Automake.inc @@ -54,25 +54,24 @@ GALLIUM_VIDEO_CFLAGS = \ DRI_VERSION_SCRIPT ?= $(top_srcdir)/src/gallium/state_trackers/dri/dri.link GALLIUM_DRI_LINKER_FLAGS = \ + -shared \ -module \ -avoid-version \ - -Wl,--version-script=$(DRI_VERSION_SCRIPT) \ - -shared \ - -no-undefined + -Wl,--version-script=$(DRI_VERSION_SCRIPT) GALLIUM_VDPAU_LINKER_FLAGS = \ + -shared \ -module \ + -no-undefined \ -version-number $(VDPAU_MAJOR):$(VDPAU_MINOR) \ - -export-symbols-regex $(VDPAU_EXPORTS) \ - -shared \ - -no-undefined + -export-symbols-regex $(VDPAU_EXPORTS) GALLIUM_XVMC_LINKER_FLAGS = \ + -shared \ -module \ + -no-undefined \ -version-number $(XVMC_MAJOR):$(XVMC_MINOR) \ - -shared \ - -export-symbols-regex '^XvMC' \ - -no-undefined + -export-symbols-regex '^XvMC' GALLIUM_OMX_LINKER_FLAGS = \ -shared \ diff --git a/src/gallium/targets/egl-static/Makefile.am b/src/gallium/targets/egl-static/Makefile.am index b492496a743..55eb3baaa06 100644 --- a/src/gallium/targets/egl-static/Makefile.am +++ b/src/gallium/targets/egl-static/Makefile.am @@ -46,6 +46,7 @@ AM_CPPFLAGS = \ AM_LDFLAGS = \ -module \ + -no-undefined \ -avoid-version \ -Wl,--no-undefined \ -Wl,--version-script=$(top_srcdir)/src/gallium/targets/egl-static/egl.link |