summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2007-10-18 01:34:17 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2007-10-18 01:34:17 +0000
commitc2269f421bd5d45731b90ad9d1c2cbe67a12a461 (patch)
tree6b99215c9ffd0fe9f15fe354f68fd891d2a11298 /SConstruct
parentc837a3eb4e4413836de17df3aed2767fc38e87cc (diff)
fix compile/test flags for OS X
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@2560 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct2
1 files changed, 2 insertions, 0 deletions
diff --git a/SConstruct b/SConstruct
index c84d0aa754..be008c5c24 100644
--- a/SConstruct
+++ b/SConstruct
@@ -716,7 +716,9 @@ def prep_libcheck(topenv, libinfo):
# All libraries needed should be built against this location
if topenv['GTKOSX']:
libinfo.Append(CPPPATH="/opt/gtk/include", LIBPATH="/opt/gtk/lib")
+ libinfo.Append(CXXFLAGS="-I/opt/gtk/include", LINKFLAGS="-L/opt/gtk/lib")
libinfo.Append(CPPPATH="/opt/local/include", LIBPATH="/opt/local/lib")
+ libinfo.Append(CXXFLAGS="-I/opt/local/include", LINKFLAGS="-L/opt/local/lib")
prep_libcheck(env, env)