allow hardour to build even when --exports-hidden is used with waf configure
authorPaul Davis <paul@linuxaudiosystems.com>
Sat, 1 Mar 2014 21:17:58 +0000 (16:17 -0500)
committerPaul Davis <paul@linuxaudiosystems.com>
Sat, 1 Mar 2014 21:17:58 +0000 (16:17 -0500)
headless/wscript

index d0f9b99ecd05171188b82ebd4bb93e9d838658e1..a80774602db691dc80bf5271a3a937ef035d0e0c 100644 (file)
@@ -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 = ['.']