summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2008-02-06 01:46:53 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2008-02-06 01:46:53 +0000
commit359e69ab882975da1b95f21e5ba876461aceea40 (patch)
tree918b532519e0280189527da0c3c2d9635e7c7649 /tools
parentc2ac101a10a2f87b1d01f3906ed7ef76214a7fa6 (diff)
get arrow keys to appear in the mac menu; add/change high level command to osx_build script; update ardour-sae.menus
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@3014 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'tools')
-rwxr-xr-xtools/osx_packaging/osx_build14
1 files changed, 13 insertions, 1 deletions
diff --git a/tools/osx_packaging/osx_build b/tools/osx_packaging/osx_build
index f08e02bb42..d860e486ae 100755
--- a/tools/osx_packaging/osx_build
+++ b/tools/osx_packaging/osx_build
@@ -13,7 +13,19 @@ PRINT_SYSDEPS=
while [ $# -gt 0 ] ; do
echo "arg = $1"
case $1 in
- --sae) SAE=1 ; shift ;;
+
+ #
+ # top level build targets
+ #
+
+ --sae) SAE=1 ; WITH_JACK=1; WITH_LADSPA=1; STRIP= ; shift ;;
+ --public) SAE= ; WITH_JACK=; WITH_LADSPA=1; STRIP= ; shift ;;
+ --allinone) SAE= ; WITH_JACK=1; WITH_LADSPA=1; STRIP= ; shift ;;
+
+ #
+ # specific build flags
+ #
+
--nojack) WITH_JACK= ; shift ;;
--noladspa) WITH_LADSPA= ; shift ;;
--nostrip) STRIP= ; shift ;;