Add --enable-multiuser configure option for adventurous people.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@23410 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
François Revol 2008-01-11 18:15:55 +00:00
parent fc404a9f7e
commit f1b9c086ca
1 changed files with 4 additions and 0 deletions

4
configure vendored
View File

@ -43,6 +43,7 @@ options:
default -- any other distro (default value).
--help Prints out this help.
--include-gpl-addons Include GPL licensed add-ons.
--enable-multiuser Enable experimental multiuser support.
--target=TARGET Select build target platform. [default=${target}]
valid targets=r5,bone,dano,haiku
--use-gcc-pipe Build with GCC option -pipe. Speeds up the build
@ -218,6 +219,7 @@ haikuCxxHeadersDir=
hostGCCVersion=`gcc -dumpversion`
bochs_debug=0
include_gpl_addons=0
enable_multiuser=0
distroCompatibility=default
target=haiku
use_gcc_pipe=0
@ -263,6 +265,7 @@ while [ $# -gt 0 ] ; do
--cross-tools-prefix) assertparam "$1" $#; crossToolsPrefix=$2; shift 2;;
--help | -h) usage; exit 0;;
--include-gpl-addons) include_gpl_addons=1; shift 1;;
--enable-multiuser) enable_multiuser=1; shift 1;;
--distro-compatibility)
assertparam "$1" $#; distroCompatibility=$2;
case "$distroCompatibility" in
@ -352,6 +355,7 @@ HOST_PLATFORM ?= "${buildPlatform}" ;
BOCHS_DEBUG_HACK ?= "${bochs_debug}" ;
INCLUDE_GPL_ADDONS ?= "${include_gpl_addons}" ;
HAIKU_ENABLE_MULTIUSER ?= "${enable_multiuser}" ;
HAIKU_DISTRO_COMPATIBILITY ?= "${distroCompatibility}" ;
HAIKU_USE_GCC_PIPE ?= "${use_gcc_pipe}" ;
HAIKU_HOST_USE_32BIT ?= "${use_32bit}" ;