diff options
author | Max Kellermann <max@musicpd.org> | 2018-01-05 10:33:53 +0100 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2018-01-05 10:33:53 +0100 |
commit | 49678a0893380cdc2405221fe31d32651ccafa9d (patch) | |
tree | 8a1102c77d71f1d42ae26d4a3b5184e590a64f09 /python/build/libs.py | |
parent | d667b5b48cff7f053ba0d7bf5811a77f66cedeb1 (diff) |
python/build/libs.py: suppress "visibility default" in libopus build
Diffstat (limited to 'python/build/libs.py')
-rw-r--r-- | python/build/libs.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/python/build/libs.py b/python/build/libs.py index 305bd7636..50f963d13 100644 --- a/python/build/libs.py +++ b/python/build/libs.py @@ -30,6 +30,9 @@ opus = AutotoolsProject( [ '--disable-shared', '--enable-static', ], + + # suppress "visibility default" from opus_defines.h + cppflags='-DOPUS_EXPORT=', ) flac = AutotoolsProject( |