summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2008-02-15 20:37:41 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2008-02-15 20:37:41 +0000
commit6f0f3d70565b908961ab52af66b392cd346501d9 (patch)
tree8dd8e71ee045b7000efe3462f0bc82fd0785cd77 /tools
parent73d0395d823eb285963ed2851bcc5af9da21dcd6 (diff)
fix use of basename; AU automation now working; add gtk event reporter back into SAE bundle; fix up carbon menu handler so that it never causes a nested gtk main loop problem
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@3062 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'tools')
-rwxr-xr-xtools/osx_packaging/osx_build12
1 files changed, 9 insertions, 3 deletions
diff --git a/tools/osx_packaging/osx_build b/tools/osx_packaging/osx_build
index 41d42166a0..5514dfaea8 100755
--- a/tools/osx_packaging/osx_build
+++ b/tools/osx_packaging/osx_build
@@ -115,6 +115,9 @@ cp -R Resources $APPROOT
echo "Copying ardour executable ...."
cp ../../gtk2_ardour/ardour-$version $APPROOT/MacOS/Ardour2
+if test x$SAE != x ; then
+ cp ../../gtk2_ardour/evtest $APPROOT/MacOS/gtkevents
+fi
if test x$STRIP != x ; then
strip $APPROOT/MacOS/Ardour2
fi
@@ -196,9 +199,9 @@ echo
echo "Copying other stuff to Ardour2.app ..."
-cp ../../gtk2_ardour/ardour.bindings $Resources
-cp ../../gtk2_ardour/ardour-sae-ansi.bindings $Resources
-cp ../../gtk2_ardour/ardour-sae-de.bindings $Resources
+cp ../../gtk2_ardour/ergonomic-us.bindings $Resources
+cp ../../gtk2_ardour/mnemonic-us.bindings $Resources
+cp ../../gtk2_ardour/sae-de.bindings $Resources
cp ../../gtk2_ardour/ardour.menus $Resources
cp ../../gtk2_ardour/ardour-sae.menus $Resources
cp ../../ardour_system.rc $Resources
@@ -226,6 +229,9 @@ executables="Ardour2"
if test x$WITH_JACK != x ; then
executables="$executables jackd"
fi
+if test x$SAE != x ; then
+ executables="$executables gtkevents"
+fi
for exe in $executables; do
EXE=$APPROOT/MacOS/$exe