From 6378f63233063bd56e60922a142ecc8342d5c164 Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Wed, 4 Nov 2009 04:00:14 +0000 Subject: added one more pass to catch dylibs that depend on dylibs svn path=/trunk/; revision=12721 --- packages/darwin_app/embed-MacOSX-dependencies.sh | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'packages/darwin_app/embed-MacOSX-dependencies.sh') diff --git a/packages/darwin_app/embed-MacOSX-dependencies.sh b/packages/darwin_app/embed-MacOSX-dependencies.sh index 7ee90f62..c560e10f 100755 --- a/packages/darwin_app/embed-MacOSX-dependencies.sh +++ b/packages/darwin_app/embed-MacOSX-dependencies.sh @@ -38,6 +38,7 @@ for pd_darwin in `find $PD_APP_CONTENTS -name '*.pd_darwin'`; do fi done +# check for .so plugins used by libquicktime and others for so in $PD_APP_LIB/*/*.so; do LIBS=`otool -L $so | sed -n 's|.*/sw/lib/\(.*\.dylib\).*|\1|p'` if [ "x$LIBS" != "x" ]; then @@ -77,3 +78,24 @@ for dylib in $PD_APP_LIB/*.dylib; do fi done +# run it one more time to catch dylibs that depend on dylibs +for dylib in $PD_APP_LIB/*.dylib; do + LIBS=`otool -L $dylib | sed -n 's|.*/sw/lib/\(.*\.dylib\).*|\1|p'` + if [ "x$LIBS" != "x" ]; then + echo "`echo $dylib | sed 's|.*/\(.*\.dylib\)|\1|'` is using:" + for lib in $LIBS; do + echo -e "\t$lib" + new_lib=`echo $lib | sed 's|.*/\(.*\.dylib\)|\1|'` + if [ -e $PD_APP_LIB/$new_lib ]; then + echo "$PD_APP_LIB/$new_lib already exists, skipping copy." + else + install -vp /sw/lib/$lib $PD_APP_LIB + fi + # @executable_path starts from Contents/Resources/bin/pd + install_name_tool -id @executable_path/../../$LIB_DIR/$new_lib $PD_APP_LIB/$new_lib + install_name_tool -change /sw/lib/$lib @executable_path/../../$LIB_DIR/$new_lib $dylib + done + echo " " + fi +done + -- cgit v1.2.1