X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Fardour.sh.in;h=407c808a0e9d903f5ca958675905159361651ebe;hb=54fd56de755a44420d906ad660b18c2d671f1057;hp=d7297fd77cd91d891beeed4e3a2373161174dcd4;hpb=897f29e33cf20c1320a34f7e5e888fee634c4378;p=ardour.git diff --git a/gtk2_ardour/ardour.sh.in b/gtk2_ardour/ardour.sh.in index d7297fd77c..407c808a0e 100644 --- a/gtk2_ardour/ardour.sh.in +++ b/gtk2_ardour/ardour.sh.in @@ -1,10 +1,13 @@ #!/bin/sh -export GTK_PATH=@LIBDIR@/ardour3${GTK_PATH:+:$GTK_PATH} +# +# This script runs an installed version of Ardour. It sets a few environment variables +# and does a few checks before exec'ing the real executable. +# -export LD_LIBRARY_PATH=@LIBDIR@/ardour3${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH} -# DYLD_LIBRARY_PATH is for Darwin -export DYLD_LIBRARY_PATH=$LD_LIBRARY_PATH +export GTK_PATH=@CONFDIR@:@LIBDIR@${GTK_PATH:+:$GTK_PATH} + +export LD_LIBRARY_PATH=@LIBDIR@${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH} ## Memlock check @@ -20,9 +23,9 @@ fi ## Glib atomic test -GLIB=$(ldd @LIBDIR@/ardour3/ardour-@VERSION@ 2> /dev/null | grep glib-2.0 | sed 's/.*=> \([^ ]*\) .*/\1/') +GLIB=$(ldd @LIBDIR@/ardour-@VERSION@ 2> /dev/null | grep glib-2.0 | sed 's/.*=> \([^ ]*\)/\1/;s/ .*//') -if [ "$GLIB" = "" ]; then +if ! type nm >/dev/null 2>&1 || [ "$GLIB" = "" ]; then echo "WARNING: Could not check your glib-2.0 for mutex locking atomic operations." echo "" elif [ $(nm -D --radix=dec --defined-only -S $GLIB | grep -w g_atomic_int_add | cut -d ' ' -f 2) -gt 32 ]; then @@ -36,6 +39,30 @@ elif [ $(nm -D --radix=dec --defined-only -S $GLIB | grep -w g_atomic_int_add | echo "" fi -exec @LIBDIR@/ardour3/ardour-@VERSION@ "$@" +# +# Running Ardour requires these 3 variables to be set +# + +export ARDOUR_DATA_PATH=@DATADIR@ +export ARDOUR_CONFIG_PATH=@CONFDIR@ +export ARDOUR_DLL_PATH=@LIBDIR@ + +# +# NSM needs a path to this script +# + +export ARDOUR_SELF="$0" +# +# VAMP has its own lookup path +# + +export VAMP_PATH=@LIBDIR@/vamp${VAMP_PATH:+:$VAMP_PATH} + +if [ $# -gt 0 ] ; then + case $1 in + -g|--gdb) GDB=gdb; shift ;; + esac +fi +exec $GDB @LIBDIR@/ardour-@VERSION@ "$@"