summaryrefslogtreecommitdiff
path: root/build/src/buildenv-common
diff options
context:
space:
mode:
Diffstat (limited to 'build/src/buildenv-common')
-rw-r--r--build/src/buildenv-common57
1 files changed, 0 insertions, 57 deletions
diff --git a/build/src/buildenv-common b/build/src/buildenv-common
deleted file mode 100644
index 47125c960a1e..000000000000
--- a/build/src/buildenv-common
+++ /dev/null
@@ -1,57 +0,0 @@
-# Common build environment setup that is supposed to be called from every
-# project
-#
-# The following env. variables have to be setup before sourcing this:
-# ooo_prefix, buildsolverdir
-
-buildenv_usage() {
- cat <<EOT
-source buildenv - Source this file to get the environment to be able to build OOo
-
--h|--help This help
--i|--install Set also the variables needed for installation
-EOT
- # we cannot just exit here, exits the shell
-}
-
-# get the command line params
-
-buildenv_build="1"
-buildenv_install=""
-while [ "$1" != "" ] ; do
- case "$1" in
- -h|--help) buildenv_usage ; buildenv_build="" ;;
- -i|--install) buildenv_install="1" ;;
- esac
- shift
-done
-
-# more to define
-
-solenvdir="$ooo_prefix/solenv"
-solverdir="$ooo_prefix/solver"
-
-# setting the build environment
-
-if [ "$buildenv_build" = "1" ] ; then
- export FORCE_SOLVER="$solverdir"
- export FORCE_SOLARENV="$solenvdir"
-
- . "$solverdir"/Linux*Env.Set.sh
-
- export SOLARLIB="$SOLARLIB -L$buildsolverdir/$UPD/$INPATH/lib"
- export SOLARINC="$SOLARINC -I$buildsolverdir/$UPD/$INPATH/inc -I$buildsolverdir/$UPD/$INPATH/inc/external"
- export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$buildsolverdir/$UPD/$INPATH/lib"
- export PATH="$PATH:$buildsolverdir/$UPD/$INPATH/bin"
- export CLASSPATH="$CLASSPATH:$buildsolverdir/$UPD/$INPATH/bin"
- export BUILDSOLVER="$buildsolverdir"
-fi
-
-# install-related bits
-
-if [ "$buildenv_build,$buildenv_install" = "1,1" ] ; then
- export BUILD=$(grep '^BUILD' "$solenvdir"/inc/minor.mk | head -n 1 | sed 's/^[^=]*=//')
- export LAST_MINOR=$(grep '^LAST_MINOR' "$solenvdir"/inc/minor.mk | head -n 1 | sed 's/^[^=]*=//')
- export LOCAL_OUT="$BUILDSOLVER/$UPD/$INPATH"
- export LOCAL_COMMON_OUT="$solverdir/$UPD/$INPATH"
-fi