From 952aeea4e92f7636e1590124ca6833e542f59d07 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Sat, 1 Mar 2014 16:17:58 -0500 Subject: [PATCH] allow hardour to build even when --exports-hidden is used with waf configure --- headless/wscript | 2 ++ 1 file changed, 2 insertions(+) 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 = ['.']