yate/run.in
paulc d32c220960 Directory reorder #3
git-svn-id: http://voip.null.ro/svn/yate@1476 acf43c95-373e-0410-b603-e72c3f656dc1
2007-11-15 23:06:36 +00:00

49 lines
805 B
Bash

#! /bin/sh
# Script to run Yate from the build directory, optionally under gdb or valgrind
yate="./yate"
set_conf="-c ./conf.d"
set_mods="-m ./modules"
set_share="-e ./share"
if [ "$1" = "--executable" ]; then
shift
yate="$1"
shift
fi
if [ "$1" = "--there" ]; then
shift
cd `dirname "$0"`
fi
if [ "$1" = "--gdb" ]; then
shift
yate="gdb --args $yate"
fi
if [ "$1" = "--core" ]; then
shift
yate="gdb $yate core*"
set_conf=""
set_mods=""
fi
if [ "$1" = "--valgrind" ]; then
shift
yate="valgrind $1 $yate"
shift
fi
for opt in $@; do
case "$opt" in
-c)
set_conf=
;;
-m)
set_mods=
;;
-e)
set_share=
;;
esac
done
LD_LIBRARY_PATH=.@H323_RUN@:$LD_LIBRARY_PATH exec $yate $set_conf $set_mods $set_share "$@"