2dd86b93a6
Adjusted PATH, LIBRARY_PATH, and the paths built into the runtime loader to included the /boot/common tree. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@23974 a95241bf-73f2-0310-859d-f6bbb57e9c96
70 lines
1.9 KiB
Plaintext
70 lines
1.9 KiB
Plaintext
#
|
|
# First we set up a bunch of environment variables that we want everyone
|
|
# to inherit
|
|
#
|
|
|
|
export HOME=/boot/home
|
|
export SHELL=/bin/sh
|
|
export USER=baron
|
|
export GROUP=users
|
|
|
|
BUILDHOME=/boot/develop
|
|
|
|
case `uname -m` in
|
|
BePC|Intel|unknown)
|
|
BE_HOST_CPU=x86
|
|
BETOOLS="$BUILDHOME/tools/gnupro/bin"
|
|
;;
|
|
BeMac|BeBox)
|
|
BE_HOST_CPU=ppc
|
|
BETOOLS="$BUILDHOME/bin"
|
|
;;
|
|
*)
|
|
BE_HOST_CPU=unknown
|
|
BETOOLS="$BUILDHOME/bin"
|
|
esac
|
|
|
|
BELIBRARIES="$BUILDHOME/lib/$BE_HOST_CPU"
|
|
BH=$BUILDHOME/headers
|
|
BEINCLUDES="$BH;$BH/be;$BH/be/precompiled;$BH/be/bone;$BH/posix;$BH/cpp;$BH/be/app;$BH/be/device;$BH/be/interface;$BH/be/media;$BH/be/midi;$BH/be/midi2;$BH/be/net;$BH/be/kernel;$BH/be/storage;$BH/be/support;$BH/be/game;$BH/be/opengl;$BH/be/drivers;$BH/gnu;$BH/be/mail;$BH/be/translation;$BH/be/devel;$BH/be/add-ons/graphics;$BH/be/be_apps/Deskbar;$BH/be/be_apps/NetPositive;$BH/be/be_apps/Tracker"
|
|
|
|
export BUILDHOME
|
|
export BETOOLS
|
|
export BELIBRARIES
|
|
export BEINCLUDES
|
|
export BE_HOST_CPU
|
|
|
|
# for the "cc" and "ld" shell scripts
|
|
|
|
export BE_C_COMPILER=gcc
|
|
export BE_CPLUS_COMPILER="g++"
|
|
export BE_LINKER=ld
|
|
export BE_DEFAULT_C_FLAGS=""
|
|
export BE_DEFAULT_CPLUS_FLAGS=""
|
|
|
|
if [ "$SAFEMODE" != "yes" ]
|
|
then
|
|
export PATH=.:$HOME/config/bin:/boot/common/bin:/bin:/boot/apps:/boot/preferences:/boot/beos/apps:/boot/beos/preferences:$BETOOLS
|
|
export LIBRARY_PATH="%A/lib:$HOME/config/lib:/boot/common/lib:/boot/beos/system/lib"
|
|
export ADDON_PATH="%A/add-ons:$HOME/config/add-ons:/boot/beos/system/add-ons"
|
|
else
|
|
export PATH=.:/boot/common/bin:/bin:/boot/apps:/boot/preferences:/boot/beos/apps:/boot/beos/preferences:$BETOOLS
|
|
export LIBRARY_PATH="%A/lib:/boot/common/lib:/boot/beos/system/lib"
|
|
export ADDON_PATH="%A/add-ons:/boot/beos/system/add-ons"
|
|
fi
|
|
|
|
# media kit
|
|
if [ -f $HOME/config/settings/use_old_audio ]
|
|
then
|
|
export USE_OLD_AUDIO=true
|
|
fi
|
|
|
|
if [ "$SAFEMODE" != "yes" ]
|
|
then
|
|
if [ -f $HOME/config/boot/UserSetupEnvironment ]
|
|
then
|
|
. $HOME/config/boot/UserSetupEnvironment
|
|
fi
|
|
fi
|
|
|