From c2269f421bd5d45731b90ad9d1c2cbe67a12a461 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Thu, 18 Oct 2007 01:34:17 +0000 Subject: [PATCH] fix compile/test flags for OS X git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@2560 d708f5d6-7413-0410-9779-e7cbd77b26cf --- SConstruct | 2 ++ 1 file changed, 2 insertions(+) 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)