2002-05-22 21:32:49 +00:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# Wrapper script to run Wine and Winelib apps from inside the source tree
|
|
|
|
#
|
|
|
|
# Copyright (C) 2002 Alexandre Julliard
|
|
|
|
#
|
|
|
|
# This library is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU Lesser General Public
|
|
|
|
# License as published by the Free Software Foundation; either
|
|
|
|
# version 2.1 of the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This library is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
# Lesser General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Lesser General Public
|
|
|
|
# License along with this library; if not, write to the Free Software
|
2006-05-18 12:49:52 +00:00
|
|
|
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2002-05-22 21:32:49 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
# first determine the directory that contains the app itself
|
|
|
|
|
|
|
|
appdir=""
|
2011-05-10 11:26:28 +00:00
|
|
|
name=$0
|
|
|
|
|
2002-05-22 21:32:49 +00:00
|
|
|
case "$0" in
|
|
|
|
*/*)
|
|
|
|
# $0 contains a path, use it
|
|
|
|
appdir=`dirname "$0"`
|
2011-05-10 11:26:28 +00:00
|
|
|
name=`basename "$0"`
|
2002-05-22 21:32:49 +00:00
|
|
|
;;
|
|
|
|
*)
|
|
|
|
# no directory in $0, search in PATH
|
|
|
|
saved_ifs=$IFS
|
|
|
|
IFS=:
|
|
|
|
for d in $PATH
|
|
|
|
do
|
|
|
|
IFS=$saved_ifs
|
2011-05-10 11:26:28 +00:00
|
|
|
if [ -x "$d/$name" ]
|
2002-05-22 21:32:49 +00:00
|
|
|
then
|
|
|
|
appdir="$d"
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2011-05-10 11:26:28 +00:00
|
|
|
# now find the top-level directory of the build tree
|
2002-05-22 21:32:49 +00:00
|
|
|
|
|
|
|
if [ -x "$appdir/server/wineserver" ]
|
|
|
|
then topdir="$appdir"
|
|
|
|
elif [ -x "$appdir/../server/wineserver" ]
|
|
|
|
then topdir="$appdir/.."
|
|
|
|
elif [ -x "$appdir/../../server/wineserver" ]
|
|
|
|
then topdir="$appdir/../.."
|
|
|
|
elif [ -x "$appdir/../../../server/wineserver" ]
|
|
|
|
then topdir="$appdir/../../.."
|
|
|
|
else
|
2011-05-10 11:26:28 +00:00
|
|
|
echo "$name: could not locate the Wine build tree"
|
2002-05-22 21:32:49 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# setup the environment
|
|
|
|
|
|
|
|
topdir=`cd "$topdir" && pwd`
|
|
|
|
|
2005-11-30 18:45:28 +00:00
|
|
|
if [ "`uname -s`" = "Darwin" ]
|
2002-05-22 21:32:49 +00:00
|
|
|
then
|
2005-11-30 18:45:28 +00:00
|
|
|
if [ -n "$DYLD_LIBRARY_PATH" ]
|
|
|
|
then
|
2021-08-23 06:30:11 +00:00
|
|
|
DYLD_LIBRARY_PATH="$topdir/libs/wine:$topdir/dlls/ntdll:$DYLD_LIBRARY_PATH"
|
2005-11-30 18:45:28 +00:00
|
|
|
else
|
2021-08-23 06:30:11 +00:00
|
|
|
DYLD_LIBRARY_PATH="$topdir/libs/wine:$topdir/dlls/ntdll"
|
2005-11-30 18:45:28 +00:00
|
|
|
fi
|
|
|
|
export DYLD_LIBRARY_PATH
|
2002-05-22 21:32:49 +00:00
|
|
|
else
|
2005-11-30 18:45:28 +00:00
|
|
|
if [ -n "$LD_LIBRARY_PATH" ]
|
|
|
|
then
|
2006-07-11 19:32:52 +00:00
|
|
|
LD_LIBRARY_PATH="$topdir/libs/wine:$LD_LIBRARY_PATH"
|
2005-11-30 18:45:28 +00:00
|
|
|
else
|
2006-07-11 19:32:52 +00:00
|
|
|
LD_LIBRARY_PATH="$topdir/libs/wine"
|
2005-11-30 18:45:28 +00:00
|
|
|
fi
|
|
|
|
export LD_LIBRARY_PATH
|
2002-05-22 21:32:49 +00:00
|
|
|
fi
|
2005-11-30 18:45:28 +00:00
|
|
|
|
2011-05-10 11:26:28 +00:00
|
|
|
if [ -x "$topdir/loader/$name" ]
|
|
|
|
then WINELOADER="$topdir/loader/$name"
|
|
|
|
elif [ -x "$topdir/loader/wine" ]
|
2010-03-29 15:53:30 +00:00
|
|
|
then WINELOADER="$topdir/loader/wine"
|
2014-09-02 14:52:37 +00:00
|
|
|
elif [ -x "$topdir/loader/wine64" ]
|
|
|
|
then WINELOADER="$topdir/loader/wine64"
|
2010-03-29 15:53:30 +00:00
|
|
|
else
|
2011-05-10 11:26:28 +00:00
|
|
|
echo "$name: could not find the Wine loader in $topdir"
|
2010-03-29 15:53:30 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
2006-03-31 15:39:37 +00:00
|
|
|
export WINELOADER
|
2002-05-22 21:32:49 +00:00
|
|
|
|
2002-05-28 22:48:17 +00:00
|
|
|
# any local settings ?
|
|
|
|
if [ -f "$topdir/.winewrapper" ]
|
|
|
|
then
|
|
|
|
. $topdir/.winewrapper
|
|
|
|
fi
|
|
|
|
|
2002-05-22 21:32:49 +00:00
|
|
|
# and run the application
|
|
|
|
|
2010-03-29 15:53:30 +00:00
|
|
|
exec "$WINELOADER" "$@"
|