diff --git a/configure b/configure index 7b5c02f96a..b4cc901d2c 100755 --- a/configure +++ b/configure @@ -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}" ;