mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-15 01:46:34 +01:00
osx_build needs to pay attention to jack_coreaudio.so if we're packaging Jack2
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@4851 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
4abb5c972b
commit
8b52a810be
1 changed files with 6 additions and 3 deletions
|
|
@ -157,8 +157,11 @@ if test x$STRIP != x ; then
|
|||
strip $APPROOT/MacOS/Ardour2
|
||||
fi
|
||||
if test x$WITH_JACK != x ; then
|
||||
cp /usr/local/lib/jack/jack_coreaudio.so $Frameworks
|
||||
cp /usr/local/bin/jackd $APPROOT/MacOS
|
||||
if [ -f /usr/local/lib/jack/jack_coreaudio.so ] ; then
|
||||
cp /usr/local/lib/jack/jack_coreaudio.so $Frameworks
|
||||
cp /usr/local/bin/jackd $APPROOT/MacOS
|
||||
JACK_SHARED_OBJECTS="$Frameworks/*.so"
|
||||
fi
|
||||
fi
|
||||
|
||||
# copy locale files
|
||||
|
|
@ -322,7 +325,7 @@ done
|
|||
|
||||
echo "Fixing up library names ..."
|
||||
# now do the same for all the libraries we include
|
||||
for dylib in $Frameworks/*.so $Frameworks/*.dylib $Frameworks/modules/*.so $Surfaces/*.dylib ; do
|
||||
for dylib in $JACK_SHARED_OBJECTS $Frameworks/*.dylib $Frameworks/modules/*.so $Surfaces/*.dylib ; do
|
||||
# skip symlinks
|
||||
if test ! -L $dylib ; then
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue