various fixes to MidiRegionView selection handling, key handling, drawing of ghost...
[ardour2.git] / gtk2_ardour / ardour.sh.in
blob63768e73448f1fb2a0ab5c2f8e5d9251709a78cf
1 #!/bin/sh
3 export GTK_PATH=@INSTALL_PREFIX@/@LIBDIR@/ardour3${GTK_PATH:+:$GTK_PATH}
5 export LD_LIBRARY_PATH=@INSTALL_PREFIX@/@LIBDIR@/ardour3${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}
6 # DYLD_LIBRARY_PATH is for Darwin
7 export DYLD_LIBRARY_PATH=$LD_LIBRARY_PATH
9 ## Memlock check
11 MLOCK_LIMIT=$(ulimit -l)
12 if [ "$MLOCK_LIMIT" != "unlimited" ]; then
13 echo "WARNING: Your system has a limit for maximum amount of locked memory!"
14 echo " This might cause Ardour to run out of memory before your system runs"
15 echo " out of memory. You can view the memory limit with 'ulimit -l', and it"
16 echo " is normally controlled by /etc/security/limits.conf"
17 echo ""
21 ## Glib atomic test
23 GLIB=$(ldd @INSTALL_PREFIX@/@LIBDIR@/ardour3/ardour-@VERSION@ 2> /dev/null | grep glib-2.0 | sed 's/.*=> \([^ ]*\) .*/\1/')
25 if [ "$GLIB" = "" ]; then
26 echo "WARNING: Could not check your glib-2.0 for mutex locking atomic operations."
27 echo ""
28 elif [ $(nm -D --radix=dec --defined-only -S $GLIB | grep -w g_atomic_int_add | cut -d ' ' -f 2) -gt 32 ]; then
29 echo "WARNING: Your system contains a suspect libglib-2.0. Your version might be built"
30 echo " to use mutex locking atomic operations. This is a fallback solution to"
31 echo " a more robust hardware supported atomicity. It might cause reduced "
32 echo " performance and/or deadlocks. Please contact your distribution support"
33 echo " about this issue."
34 echo " Unfortunately this check is not 100% accurate, so this might not be"
35 echo " the case with your system."
36 echo ""
39 exec @INSTALL_PREFIX@/@LIBDIR@/ardour3/ardour-@VERSION@ "$@"