mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-03 14:08:56 +00:00
meson: don't export symbols by default
Only plugin entry points should be exported. Currently plugins might export more symbols with the meson build, as we don't have the exports regexp there that we pass to libtool.
This commit is contained in:
parent
059420b678
commit
df67c50f67
1 changed files with 5 additions and 0 deletions
|
@ -42,6 +42,11 @@ else
|
||||||
noseh_link_args = []
|
noseh_link_args = []
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
# Symbol visibility
|
||||||
|
if cc.has_argument('-fvisibility=hidden')
|
||||||
|
add_project_arguments('-fvisibility=hidden', language: 'c')
|
||||||
|
endif
|
||||||
|
|
||||||
cdata = configuration_data()
|
cdata = configuration_data()
|
||||||
|
|
||||||
check_headers = [
|
check_headers = [
|
||||||
|
|
Loading…
Reference in a new issue