summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2011-09-27 15:21:54 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2011-09-27 15:21:54 +0000
commitc5aa0779c187352a29c74dd8607910d51fcfcf83 (patch)
tree0c9075f421d4114d2b992d46523af3720bd5712e
parentd6e0be52459a28f0d9cfe3fa21b5099f43711f7d (diff)
fix up osx build script to work for both new and old GTK stacks (pixbufloader issues)
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@10144 d708f5d6-7413-0410-9779-e7cbd77b26cf
-rwxr-xr-xtools/osx_packaging/osx_build26
1 files changed, 24 insertions, 2 deletions
diff --git a/tools/osx_packaging/osx_build b/tools/osx_packaging/osx_build
index 94257ef6fd..de49ab0737 100755
--- a/tools/osx_packaging/osx_build
+++ b/tools/osx_packaging/osx_build
@@ -4,6 +4,28 @@
GTKQUARTZ_ROOT=$HOME/gtk/inst
+if pkg-config --modversion gtk+-2.0 | grep -s 2.22 ; then
+ # older GTK
+ GDKPIXBUF_LOADERS=$GTKQUARTZ_ROOT/lib/gtk-2.0/2.10.0/loaders
+ echo
+ echo
+ echo "*****************************************************"
+ echo "You are building with the OLD GTK stack. I hope that is ok"
+ echo "*****************************************************"
+ echo
+ echo
+else
+ # newer GTK
+ GDKPIXBUF_LOADERS=$GTKQUARTZ_ROOT/lib/gdk-pixbuf-2.0/2.10.0/loaders
+ echo
+ echo
+ echo "*****************************************************"
+ echo "You are building with the NEW GTK stack. I hope that is ok"
+ echo "*****************************************************"
+ echo
+ echo
+fi
+
SAE=
MIXBUS=
INTERNAL_JACK=1
@@ -249,7 +271,7 @@ cp -R $GTKQUARTZ_ROOT/etc/* $Etc
echo "Copying all Pango modules ..."
cp -R $GTKQUARTZ_ROOT/lib/pango/1.6.0/modules/*.so $Frameworks/modules
echo "Copying all GDK Pixbuf loaders ..."
-cp -R $GTKQUARTZ_ROOT/lib/gdk-pixbuf-2.0/2.10.0/loaders/*.so $Frameworks/modules
+cp -R $GDKPIXBUF_LOADERS/*.so $Frameworks/modules
# charset alias file
cp -R $GTKQUARTZ_ROOT/lib/charset.alias $Resources
@@ -276,7 +298,7 @@ env PANGO_RC_FILE=pangorc $GTKQUARTZ_ROOT/bin/pango-querymodules | sed "s?$GTKQU
rm pangorc
# generate a new GDK pixbufs loaders file
-gdk-pixbuf-query-loaders | sed "s?$GTKQUARTZ_ROOT/lib/gdk-pixbuf-2.0/2.10.0/loaders/?@executable_path/../Frameworks/modules/?" > $Resources/gdk-pixbuf.loaders
+gdk-pixbuf-query-loaders | sed "s?$GDKPIXBUF_LOADERS/?@executable_path/../Frameworks/modules/?" > $Resources/gdk-pixbuf.loaders
# this one is special - we will set GTK_PATH to $Frameworks/clearlooks
cp ../../libs/clearlooks-newer/libclearlooks.dylib $Frameworks