minor tweak to OS X linkflags, to remove suppression of undefined symbol warnings

git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@10143 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2011-09-27 14:54:23 +00:00
parent a57b429dc9
commit d6e0be5245
1 changed files with 1 additions and 1 deletions

View File

@ -310,7 +310,7 @@ if ardour['COREAUDIO']:
if env['CONFIG_ARCH'] == 'apple':
# this next line avoids issues with circular dependencies between libardour and libardour_cp.
#
ardour.Append(LINKFLAGS='-undefined suppress -flat_namespace')
ardour.Append(LINKFLAGS='-undefined dynamic_lookup -flat_namespace')
ardour = conf.Finish ()