diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2007-06-13 02:26:32 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2007-06-13 02:26:32 +0000 |
commit | b7c6412a7952ba39d8ec634a0984461216b3d459 (patch) | |
tree | 4c4bc9f5358bd1bb1f419e6e7a9a905e86fc650c | |
parent | e07535da125ba20473d0dfeaef57d8c9b4d8c755 (diff) |
fixed the embedding of libquicktime plugins, I think I actually got it working now
svn path=/trunk/; revision=7768
-rwxr-xr-x | packages/darwin_app/embed-MacOSX-dependencies.sh | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/packages/darwin_app/embed-MacOSX-dependencies.sh b/packages/darwin_app/embed-MacOSX-dependencies.sh index f520fb24..7ee90f62 100755 --- a/packages/darwin_app/embed-MacOSX-dependencies.sh +++ b/packages/darwin_app/embed-MacOSX-dependencies.sh @@ -38,6 +38,25 @@ for pd_darwin in `find $PD_APP_CONTENTS -name '*.pd_darwin'`; do fi done +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 + 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 -change /sw/lib/$lib @executable_path/../../$LIB_DIR/$new_lib $so + done + echo " " + fi +done + 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 |