diff options
author | Emil Velikov <[email protected]> | 2014-02-08 03:56:38 +0000 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2014-02-11 21:36:16 +0000 |
commit | 7ed32c9af948b5f724c88cefe5bb83e195c56f6a (patch) | |
tree | 3008f9cb39358dce13ded84ded634c01c23c7a65 /src | |
parent | eda9a66f7e509261f2b9e24099fd65d43f31f122 (diff) |
omx: use VISIBILITY_CFLAGS to control exported symbols
Initial step of cleaning the exported symbols from targets/omx
- Mark omx_component_library_Setup as public
v2: Keep export-symbols-regex
Signed-off-by: Emil Velikov <[email protected]>
Reviewed-by: Christian König <[email protected]> (v1)
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/state_trackers/omx/Makefile.am | 1 | ||||
-rw-r--r-- | src/gallium/state_trackers/omx/entrypoint.h | 2 | ||||
-rw-r--r-- | src/gallium/targets/r600/omx/Makefile.am | 1 | ||||
-rw-r--r-- | src/gallium/targets/radeonsi/omx/Makefile.am | 1 |
4 files changed, 4 insertions, 1 deletions
diff --git a/src/gallium/state_trackers/omx/Makefile.am b/src/gallium/state_trackers/omx/Makefile.am index 1983248749a..7972d798d6b 100644 --- a/src/gallium/state_trackers/omx/Makefile.am +++ b/src/gallium/state_trackers/omx/Makefile.am @@ -24,6 +24,7 @@ include $(top_srcdir)/src/gallium/Automake.inc AM_CFLAGS = \ $(GALLIUM_CFLAGS) \ + $(VISIBILITY_CFLAGS) \ $(OMX_CFLAGS) noinst_LTLIBRARIES = libomxtracker.la diff --git a/src/gallium/state_trackers/omx/entrypoint.h b/src/gallium/state_trackers/omx/entrypoint.h index af7c33763c2..7625d7a5b03 100644 --- a/src/gallium/state_trackers/omx/entrypoint.h +++ b/src/gallium/state_trackers/omx/entrypoint.h @@ -38,7 +38,7 @@ #include "vl/vl_winsys.h" -extern int omx_component_library_Setup(stLoaderComponentType **stComponents); +PUBLIC extern int omx_component_library_Setup(stLoaderComponentType **stComponents); struct vl_screen *omx_get_screen(void); void omx_put_screen(void); diff --git a/src/gallium/targets/r600/omx/Makefile.am b/src/gallium/targets/r600/omx/Makefile.am index 7660a8d2740..3aef9e19bba 100644 --- a/src/gallium/targets/r600/omx/Makefile.am +++ b/src/gallium/targets/r600/omx/Makefile.am @@ -24,6 +24,7 @@ include $(top_srcdir)/src/gallium/Automake.inc AM_CFLAGS = \ $(GALLIUM_CFLAGS) \ + $(VISIBILITY_CFLAGS) \ $(PTHREAD_CFLAGS) \ $(LIBDRM_CFLAGS) AM_CPPFLAGS = \ diff --git a/src/gallium/targets/radeonsi/omx/Makefile.am b/src/gallium/targets/radeonsi/omx/Makefile.am index a502c659587..0d479122e28 100644 --- a/src/gallium/targets/radeonsi/omx/Makefile.am +++ b/src/gallium/targets/radeonsi/omx/Makefile.am @@ -24,6 +24,7 @@ include $(top_srcdir)/src/gallium/Automake.inc AM_CFLAGS = \ $(GALLIUM_CFLAGS) \ + $(VISIBILITY_CFLAGS) \ $(PTHREAD_CFLAGS) \ $(LIBDRM_CFLAGS) AM_CPPFLAGS = \ |