From f1b9c086caf6123b566f7072a029262d62e70dd0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Revol?= Date: Fri, 11 Jan 2008 18:15:55 +0000 Subject: [PATCH] Add --enable-multiuser configure option for adventurous people. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@23410 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- configure | 4 ++++ 1 file changed, 4 insertions(+) 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}" ;