more OS X build fixes - make a symlink to clearlooks .so since GTK doesn't know to search for .dylib on OS X (only relevant for ./ardev style runs, does not affect packaging)

git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@4262 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2008-11-26 08:43:07 +00:00
parent 3667619390
commit 676916c85d

View file

@ -33,7 +33,7 @@ usable_libclearlooks = clearlooks.Install ('engines', libclearlooks)
if env['GTKOSX']:
# GTK looks only for foo.so, not foo.dylib
print ("GTKOSX part");
really_usable_module = clearlooks.Command ('engines/libclearlooks.so', usable_libclearlooks, "cd libs/clearlooks-newer/engines && ln -s libclearlooks.dylib libclearlooks.so", chdir=1)
really_usable_module = clearlooks.Command ('engines/libclearlooks.so', usable_libclearlooks, 'ln -s libclearlooks.dylib libclearlooks.so', chdir=1)
Default (really_usable_module)
else:
print ("non-GTKOSX part");