summaryrefslogtreecommitdiff
path: root/headless
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2014-03-01 16:17:58 -0500
committerPaul Davis <paul@linuxaudiosystems.com>2014-03-01 16:17:58 -0500
commit952aeea4e92f7636e1590124ca6833e542f59d07 (patch)
treee703b175d84d72876d253d774154906b2f63f86c /headless
parentc626e83a647048f59c58dcfd79182004b75e392c (diff)
allow hardour to build even when --exports-hidden is used with waf configure
Diffstat (limited to 'headless')
-rw-r--r--headless/wscript2
1 files changed, 2 insertions, 0 deletions
diff --git a/headless/wscript b/headless/wscript
index d0f9b99ecd..a80774602d 100644
--- a/headless/wscript
+++ b/headless/wscript
@@ -35,6 +35,8 @@ def build(bld):
# just the normal executable version of the GTK GUI
obj = bld (features = 'cxx c cxxprogram')
+ # this program does not do the whole hidden symbols thing
+ obj.cxxflags = [ '-fvisibility=default' ]
obj.source = hardour_sources
obj.target = 'hardour-' + bld.env['VERSION']
obj.includes = ['.']