Blame configure

cde03b
#!/bin/sh
cde03b
1f4fb3
set -eu
1f4fb3
ff655e
trap config_failure 1 2 EXIT
ff655e
cde03b
usage()
cde03b
{
af3780
	cat "$mb_project_dir"/config.usage
e271dd
2728dc
	if [ _$mb_use_custom_cfgdefs = _yes ]; then
e271dd
		printf '\n\n%s%s\n' \
e271dd
			" ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^" \
e271dd
			"^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^"
e271dd
e271dd
		printf '%s%s\n' \
e271dd
			"| Listed above are configure's common switches " \
e271dd
			"and environment variables.     |"
e271dd
e271dd
		printf '%s%s\n' \
e271dd
			"| Found below are project-specific variables " \
e271dd
			"and other customization options. |"
e271dd
e271dd
		printf '%s%s\n\n\n' \
e271dd
			" ___________________________________________" \
e271dd
			"__________________________________"
e271dd
e271dd
		cat "$mb_project_dir"/project/config/cfgdefs.usage
e271dd
	fi
e271dd
e271dd
	exit 0
cde03b
}
cde03b
cde03b
error_msg()
cde03b
{
db5ea8
	echo "$@" >&2
cde03b
}
cde03b
7289b4
warning_msg()
7289b4
{
7289b4
	echo "$@" >&2
7289b4
}
7289b4
cde03b
cde03b
init_vars()
cde03b
{
63b5a5
	mb_project_dir=$(cd "$(dirname $0)" ; pwd)
24ef76
	mb_pwd=$(pwd)
cde03b
823a96
	mb_custom_cfgdefs_args=''
823a96
	mb_custom_cfgdefs_space=''
823a96
6afb06
	sfrt_impl_dir=$mb_project_dir/sofort
6afb06
	sfrt_config_dir=$sfrt_impl_dir/config
6afb06
	sfrt_core_dir=$sfrt_impl_dir/core
6afb06
	sfrt_config_vars=$sfrt_config_dir/config.vars
6afb06
	sfrt_flag_vars=$sfrt_config_dir/flag.vars
6afb06
	sfrt_cfgdefs_in=$sfrt_config_dir/cfgdefs.in
6afb06
6afb06
	mb_make_vars=$(cat $sfrt_config_vars \
5d5382
		| grep -v -e '^#' -e '^$' | tr '[:lower:]' '[:upper:]')
da830f
6afb06
	mb_impl_vars=$(cat $sfrt_config_vars \
5d5382
		| grep -v -e '^#' -e '^$' | sed 's/^/mb_/g')
5d5382
6afb06
	mb_proj_vars=$(cat $sfrt_config_vars \
5d5382
		| grep -v -e '^#' -e '^$' | sed 's/^/mb_default_/g')
5d5382
6afb06
	mb_flag_vars=$(cat $sfrt_flag_vars \
5d5382
		| grep -v -e '^#' -e '^$')
5d5382
5d5382
	mb_vars="$mb_make_vars $mb_impl_vars $mb_proj_vars $mb_flag_vars"
5d5382
5d5382
	for mb_var in $mb_vars ; do
da830f
		mb_expr=$mb_var='${'$mb_var':-}'
da830f
		eval "$mb_expr"
da830f
	done
da830f
b8199b
	# ccenv
b8199b
	. $mb_project_dir/sofort/ccenv/ccenv.sh
b8199b
a92929
	if ! [ -L ./ccenv ]; then
b8199b
		if [ -d ./ccenv ]; then
b8199b
			rm -f ./ccenv/host.mk
b8199b
			rm -f ./ccenv/native.mk
b8199b
			rmdir ./ccenv
b8199b
		fi
b8199b
	fi
b8199b
b8199b
	# config.project
3a8a92
	if [ -z "$mb_config" ]; then
da372a
		. $mb_project_dir/config.project
cde03b
	else
da372a
		. "$mb_config"
cde03b
	fi
cde03b
aadacb
	# project-specific config definitions
2728dc
	if [ _$mb_use_custom_cfgdefs = _yes ]; then
6afb06
		cat $sfrt_cfgdefs_in > cfgdefs.mk
6b9097
	else
6b9097
		printf '%s %s\n\n' \
6b9097
				'# this project does not include' \
6b9097
				'a custom config step.'           \
6b9097
			> cfgdefs.mk
6afb06
		cat $sfrt_cfgdefs_in >> cfgdefs.mk
690555
690555
		if [ -f $mb_project_dir/project/cfgdefs.in ]; then
690555
			cat $mb_project_dir/project/cfgdefs.in >> cfgdefs.mk
690555
		fi
aadacb
	fi
aadacb
aadacb
	# user build-time overrides
6b9097
	touch usrdefs.mk
aadacb
ee3e67
	# project
ee3e67
	mb_nickname=$NICKNAME
f7b445
	mb_source_dir=$SOURCE_DIR
ee3e67
cde03b
	# dirs
cde03b
	mb_prefix=$PREFIX
17f6d3
	mb_exec_prefix=$EXEC_PREFIX
cde03b
	mb_bindir=$BINDIR
a6f38d
	mb_sbindir=$SBINDIR
cde03b
	mb_libdir=$LIBDIR
cde03b
	mb_includedir=$INCLUDEDIR
7f5702
	mb_oldincludedir=$OLDINCLUDEDIR
cde03b
	mb_mandir=$MANDIR
cde03b
	mb_docdir=$DOCDIR
cde03b
	mb_libexecdir=$LIBEXECDIR
cde03b
7f5702
	mb_sysconfdir=$SYSCONFDIR
7f5702
	mb_sharedstatedir=$SHAREDSTATEDIR
7f5702
	mb_localstatedir=$LOCALSTATEDIR
7f5702
	mb_runstatedir=$RUNSTATEDIR
7f5702
	mb_datarootdir=$DATAROOTDIR
7f5702
	mb_datadir=$DATADIR
7f5702
	mb_infodir=$INFODIR
7f5702
	mb_localedir=$LOCALEDIR
7f5702
	mb_htmldir=$HTMLDIR
7f5702
	mb_dvidir=$DVIDIR
7f5702
	mb_pdfdir=$PDFDIR
7f5702
	mb_psdir=$PSDIR
7f5702
cde03b
cde03b
	# build
cde03b
	mb_build=$BUILD
cde03b
	mb_host=$HOST
7e1d96
	mb_cchost=$CCHOST
a18dc4
	mb_cfghost=$CFGHOST
cde03b
	mb_target=$TARGET
cde03b
	mb_arch=$ARCH
d015ab
	mb_compiler=$COMPILER
e692ec
	mb_toolchain=$TOOLCHAIN
cde03b
	mb_sysroot=$SYSROOT
cde03b
	mb_cross_compile=$CROSS_COMPILE
cde03b
	mb_shell=$SHELL
cde03b
cde03b
	# switches
cde03b
	mb_cflags=$CFLAGS
cde03b
	mb_cflags_debug=$CFLAGS_DEBUG
cde03b
	mb_cflags_common=$CFLAGS_COMMON
cde03b
	mb_cflags_cmdline=$CFLAGS_CMDLINE
cde03b
	mb_cflags_config=$CFLAGS_CONFIG
cde03b
	mb_cflags_sysroot=$CFLAGS_SYSROOT
5de097
	mb_cflags_os=$CFLAGS_OS
5de097
	mb_cflags_site=$CFLAGS_SITE
cde03b
	mb_cflags_path=$CFLAGS_PATH
bec9ab
	mb_cflags_strict=$CFLAGS_STRICT
a5d617
	mb_cflags_util=$CFLAGS_UTIL
9f6e4d
	mb_cflags_last=$CFLAGS_LAST
9f6e4d
	mb_cflags_once=$CFLAGS_ONCE
cde03b
cde03b
	mb_ldflags=$LDFLAGS
cde03b
	mb_ldflags_debug=$LDFLAGS_DEBUG
cde03b
	mb_ldflags_common=$LDFLAGS_COMMON
cde03b
	mb_ldflags_cmdline=$LDFLAGS_CMDLINE
cde03b
	mb_ldflags_config=$LDFLAGS_CONFIG
cde03b
	mb_ldflags_sysroot=$LDFLAGS_SYSROOT
cde03b
	mb_ldflags_path=$LDFLAGS_PATH
bec9ab
	mb_ldflags_strict=$LDFLAGS_STRICT
a5d617
	mb_ldflags_util=$LDFLAGS_UTIL
9f6e4d
	mb_ldflags_last=$LDFLAGS_LAST
9f6e4d
	mb_ldflags_once=$LDFLAGS_ONCE
cde03b
cde03b
	mb_pe_subsystem=$PE_SUBSYSTEM
cde03b
	mb_pe_image_base=$PE_IMAGE_BASE
cde03b
cde03b
	# overrides
cde03b
	mb_user_cc=$CC
cde03b
	mb_user_cpp=$CPP
cde03b
	mb_user_cxx=$CXX
b8199b
b8199b
	mb_native_cc=$NATIVE_CC
b8199b
	mb_native_cpp=$NATIVE_CPP
b8199b
	mb_native_cxx=$NATIVE_CXX
b8199b
b8199b
	mb_native_host=$NATIVE_HOST
b8199b
	mb_native_cfghost=$NATIVE_CFGHOST
b8199b
	mb_native_cflags=$NATIVE_CFLAGS
b8199b
	mb_native_ldflags=$NATIVE_LDFLAGS
ef8273
ef8273
	mb_native_pe_subsystem=$NATIVE_PE_SUBSYSTEM
ef8273
	mb_native_pe_image_base=$NATIVE_PE_IMAGE_BASE
cde03b
}
cde03b
cde03b
cde03b
verify_build_directory()
cde03b
{
3a8a92
	if [ "$mb_project_dir" = "$mb_pwd" ]; then
2728dc
		if [ _$mb_require_out_of_tree = _yes ]; then
cde03b
			error_msg "$mb_package: out-of-tree builds are required."
cde03b
			error_msg "please invoke configure again from a clean build directory."
da372a
			exit 1
cde03b
		else
cde03b
			mb_project_dir='.'
cde03b
		fi
cde03b
	fi
ff655e
ff655e
	rm -f Makefile Makefile.host Makefile.tmp Makefile.failed
cde03b
}
cde03b
cde03b
f7b445
verify_source_directory()
f7b445
{
f7b445
	if [ -z "$mb_source_dir" ]; then
2728dc
		if [ _$mb_require_source_dir = _yes ]; then
f7b445
			error_msg "$mb_package: specifying an external source directory is required."
f7b445
			error_msg "you can set the source directory either via --source-dir=<path>,"
f7b445
			error_msg "or by setting the SOURCE_DIR variable."
da372a
			exit 1
f7b445
		fi
f7b445
	fi
f7b445
}
f7b445
f7b445
cde03b
common_defaults()
cde03b
{
f7b445
	# git
f7b445
	if [ -n "$mb_source_dir" ]; then
f7b445
		if [ -d "$mb_source_dir/.git" ]; then
2994e2
			mb_git_reference_index="\$(SOURCE_DIR)/.git/index"
f7b445
		fi
f7b445
	elif [ -d "$mb_project_dir/.git" ]; then
2994e2
		mb_git_reference_index="\$(PROJECT_DIR)/.git/index"
f7b445
	fi
f7b445
ee3e67
	# project
ee3e67
	[ -z "$mb_nickname" ] 		&& mb_nickname=$mb_package
f7b445
	[ -z "$mb_source_dir" ] 	&& mb_source_dir=$mb_project_dir
67ced2
	[ -z "$mb_avoid_version" ] 	&& mb_avoid_version='no'
ee3e67
b9138e
	# pkgconfig
b9138e
	[ -z "$mb_pkgname" ]		&& mb_pkgname="$mb_default_pkgname"
b9138e
	[ -z "$mb_pkgdesc" ]		&& mb_pkgdesc="$mb_default_pkgdesc"
b9138e
	[ -z "$mb_pkgusrc" ]		&& mb_pkgusrc="$mb_default_pkgusrc"
b9138e
	[ -z "$mb_pkgrepo" ]		&& mb_pkgrepo="$mb_default_pkgrepo"
b9138e
	[ -z "$mb_pkgpsrc" ]		&& mb_pkgpsrc="$mb_default_pkgpsrc"
b9138e
	[ -z "$mb_pkgdurl" ]		&& mb_pkgdurl="$mb_default_pkgdurl"
b9138e
	[ -z "$mb_pkgdefs" ]		&& mb_pkgdefs="$mb_default_pkgdefs"
b9138e
	[ -z "$mb_pkglibs" ]		&& mb_pkglibs="$mb_default_pkglibs"
b9138e
cde03b
	# dirs
3d4f90
	[ -z "$mb_prefix" ] 		&& [ -z "$mb_prefix_set" ] \
3d4f90
					&& mb_prefix='/usr/local'
3d4f90
3d4f90
	[ -z "$mb_exec_prefix" ] 	&& [ -z "$mb_exec_prefix_set" ]	\
3d4f90
					&& mb_exec_prefix=$mb_prefix
3d4f90
92911d
	[ -z "$mb_bindir" ] 		&& [ -z "$mb_bindir_set" ] \
92911d
					&& [ -z "$mb_bindir_basename" ] \
92911d
					&& mb_bindir=$mb_exec_prefix/bin
92911d
92911d
	[ -z "$mb_bindir" ] 		&& [ -z "$mb_bindir_set" ] \
92911d
					&& mb_bindir=$mb_exec_prefix/$mb_bindir_basename
92911d
a6f38d
	[ -z "$mb_sbindir" ] 		&& mb_sbindir=$mb_exec_prefix/sbin
86ddc0
	[ -z "$mb_libdir" ] 		&& mb_libdir=$mb_exec_prefix/lib
86ddc0
	[ -z "$mb_includedir" ]		&& mb_includedir=$mb_prefix/include
7f5702
	[ -z "$mb_oldincludedir" ]	&& mb_oldincludedir=$mb_prefix/include
86ddc0
	[ -z "$mb_datarootdir" ] 	&& mb_datarootdir=$mb_prefix/share
86ddc0
	[ -z "$mb_mandir" ] 		&& mb_mandir=$mb_datarootdir/man
86ddc0
	[ -z "$mb_docdir" ] 		&& mb_docdir=$mb_datarootdir/doc
86ddc0
	[ -z "$mb_libexecdir" ]		&& mb_libexecdir=$mb_exec_prefix/libexec
cde03b
7f5702
	[ -z "$mb_sysconfdir" ] 	&& mb_sysconfdir=$mb_exec_prefix/etc
7f5702
	[ -z "$mb_sharedstatedir" ] 	&& mb_sharedstatedir=$mb_prefix/com
7f5702
	[ -z "$mb_localstatedir" ] 	&& mb_localstatedir=$mb_prefix/var
7f5702
	[ -z "$mb_runstatedir" ] 	&& mb_runstatedir=$mb_localstatedir/run
7f5702
	[ -z "$mb_datarootdir" ] 	&& mb_datarootdir=$mb_prefix/share
7f5702
	[ -z "$mb_datadir" ] 		&& mb_datadir=$mb_datarootdir
7f5702
	[ -z "$mb_infodir" ] 		&& mb_infodir=$mb_datarootdir/info
7f5702
	[ -z "$mb_localedir" ] 		&& mb_localedir=$mb_datarootdir/locale
7f5702
	[ -z "$mb_htmldir" ] 		&& mb_htmldir=$mb_docdir
7f5702
	[ -z "$mb_dvidir" ] 		&& mb_dvidir=$mb_docdir
7f5702
	[ -z "$mb_pdfdir" ] 		&& mb_pdfdir=$mb_docdir
7f5702
	[ -z "$mb_psdir" ] 		&& mb_psdir=$mb_docdir
7f5702
cde03b
	# switches
cde03b
	[ -z "$mb_cflags_debug" ]	&& mb_cflags_debug=$mb_default_cflags_debug
cde03b
	[ -z "$mb_cflags_common" ]	&& mb_cflags_common=$mb_default_cflags_common
cde03b
	[ -z "$mb_cflags_cmdline" ]	&& mb_cflags_cmdline=$mb_default_cflags_cmdline
cde03b
	[ -z "$mb_cflags_config" ]	&& mb_cflags_config=$mb_default_cflags_config
cde03b
	[ -z "$mb_cflags_sysroot" ]	&& mb_cflags_sysroot=$mb_default_cflags_sysroot
5de097
	[ -z "$mb_cflags_os" ]		&& mb_cflags_os=$mb_default_cflags_os
5de097
	[ -z "$mb_cflags_site" ]	&& mb_cflags_site=$mb_default_cflags_site
cde03b
	[ -z "$mb_cflags_path" ]	&& mb_cflags_path=$mb_default_cflags_path
bec9ab
	[ -z "$mb_cflags_strict" ]	&& mb_cflags_strict=$mb_default_cflags_strict
a5d617
	[ -z "$mb_cflags_util" ]	&& mb_cflags_util=$mb_default_cflags_util
9f6e4d
	[ -z "$mb_cflags_last" ]	&& mb_cflags_last=$mb_default_cflags_last
9f6e4d
	[ -z "$mb_cflags_once" ]	&& mb_cflags_once=$mb_default_cflags_once
cde03b
cde03b
	[ -z "$mb_ldflags_debug" ]	&& mb_ldflags_debug=$mb_default_ldflags_debug
cde03b
	[ -z "$mb_ldflags_common" ]	&& mb_ldflags_common=$mb_default_ldflags_common
cde03b
	[ -z "$mb_ldflags_cmdline" ]	&& mb_ldflags_cmdline=$mb_default_ldflags_cmdline
cde03b
	[ -z "$mb_ldflags_config" ]	&& mb_ldflags_config=$mb_default_ldflags_config
cde03b
	[ -z "$mb_ldflags_sysroot" ]	&& mb_ldflags_sysroot=$mb_default_ldflags_sysroot
cde03b
	[ -z "$mb_ldflags_path" ]	&& mb_ldflags_path=$mb_default_ldflags_path
bec9ab
	[ -z "$mb_ldflags_strict" ]	&& mb_ldflags_strict=$mb_default_ldflags_strict
a5d617
	[ -z "$mb_ldflags_util" ]	&& mb_ldflags_util=$mb_default_ldflags_util
9f6e4d
	[ -z "$mb_ldflags_last" ]	&& mb_ldflags_last=$mb_default_ldflags_last
9f6e4d
	[ -z "$mb_ldflags_once" ]	&& mb_ldflags_once=$mb_default_ldflags_once
cde03b
d184a6
	# config
d184a6
	[ -z "$mb_all_static" ]		&& mb_all_static='no'
d184a6
	[ -z "$mb_all_shared" ]		&& mb_all_shared='no'
4a9807
	[ -z "$mb_disable_frontend" ]	&& mb_disable_frontend='no'
d184a6
	[ -z "$mb_disable_static" ]	&& mb_disable_static='no'
d184a6
	[ -z "$mb_disable_shared" ]	&& mb_disable_shared='no'
d184a6
cde03b
	# host/target
cde03b
	[ -z "$mb_host" ] 		&& mb_host=$mb_target
cde03b
	[ -z "$mb_target" ] 		&& mb_target=$mb_host
cde03b
cde03b
	# sysroot
3a8a92
	if [ -n "$mb_sysroot" ]; then
3a8a92
		if [ -z "$mb_cflags_sysroot" ]; then
cde03b
			mb_cflags_sysroot="--sysroot=$mb_sysroot"
cde03b
		fi
cde03b
3a8a92
		if [ -z "$mb_ldflags_sysroot" ]; then
0b95dc
			mb_ldflags_sysroot="--sysroot=$mb_sysroot"
cde03b
		fi
cde03b
	fi
cde03b
cde03b
	# debug
2728dc
	if [ _$mb_debug = _yes ]; then
3a8a92
		if [ -z "$mb_cflags_debug" ]; then
cde03b
			mb_cflags_debug='-g3 -O0'
cde03b
		fi
cde03b
	fi
722923
d53f69
	# shell
d53f69
	if [ -z "$mb_shell" ]; then
d53f69
		mb_shell='/bin/sh'
d53f69
	fi
d53f69
722923
	# inherited cflags & ldflags
722923
	mb_cflags_cmdline="$mb_cflags_cmdline $mb_cflags"
722923
	mb_ldflags_cmdline="$mb_ldflags_cmdline $mb_ldflags"
cde03b
}
cde03b
cde03b
598a7f
config_flags()
598a7f
{
598a7f
	mb_ldflags_tmp=" $mb_ldflags "
24ef76
	mb_ldflags_libs=$(echo "$mb_ldflags_tmp" | sed 's/ -static / /g')
598a7f
598a7f
	if [ "$mb_ldflags_tmp" != "$mb_ldflags_libs" ]; then
598a7f
		mb_ldflags="$mb_ldflags_libs"
598a7f
		mb_ldflags_util="$mb_ldflags_util -static"
598a7f
	fi
bec9ab
bec9ab
	# ccstrict
2728dc
	if [ _$mb_ccstrict = _yes ]; then
bec9ab
		mb_cflags_strict='-Wall -Werror -Wextra -Wundef'
bec9ab
	fi
bec9ab
bec9ab
	# ldstrict
2728dc
	if [ _$mb_ldstrict = _yes ]; then
bec9ab
		mb_ldflags_strict='-Wl,--no-undefined'
bec9ab
	fi
598a7f
}
598a7f
598a7f
cde03b
config_copy()
cde03b
{
6afb06
	mb_vars=$(cut -d'=' -f1 $sfrt_config_vars \
5d5382
			| grep -v '^#')
5d5382
5d5382
	mb_sed_substs=" \
5d5382
		$(for __var in $mb_vars; do                  \
5d5382
			printf '%s"$%s"%s' "-e 's^@$__var@^'" \
5d5382
				"mb_$__var" "'^g' ";           \
5d5382
		done)"
5d5382
5d5382
	eval sed $mb_sed_substs \
5d5382
		$mb_project_dir/Makefile.in    \
5d5382
			| sed -e 's/[ \t]*$//g' \
5d5382
			> $mb_pwd/Makefile.tmp
b8199b
}
7e1d96
6d1fc0
b8199b
config_ccenv()
b8199b
{
b8199b
	mkdir -p ./ccenv
b8199b
	touch ./ccenv/host.mk
b8199b
	touch ./ccenv/native.mk
e271dd
b8199b
	ccenv_set_host_variables
b8199b
	ccenv_set_native_variables
c65d32
c65d32
	config_copy
b8199b
}
e271dd
e271dd
config_custom()
e271dd
{
2728dc
	if [ _$mb_use_custom_cfgdefs = _yes ]; then
823a96
		eval . $mb_project_dir/project/config/cfgdefs.sh \
823a96
			"$mb_custom_cfgdefs_args"
e271dd
		config_copy
e271dd
	fi
7e1d96
2728dc
	if [ _$mb_use_custom_usrdefs = _yes ]; then
e271dd
		. $mb_project_dir/project/usrdefs.sh
e271dd
	fi
e271dd
}
e271dd
e271dd
e271dd
config_cfghost()
e271dd
{
a18dc4
	if [ -z "$mb_cfghost" ]; then
a18dc4
		mb_cfghost=$mb_cchost
a18dc4
	fi
a18dc4
a18dc4
	sed		-e 's^@cchost@^'"$mb_cchost"'^g'     \
a18dc4
			-e 's^@cfghost@^'"$mb_cfghost"'^g'   \
da372a
		$mb_pwd/Makefile.tmp > $mb_pwd/Makefile.host
7e1d96
da372a
	rm  $mb_pwd/Makefile.tmp
da372a
	mv  $mb_pwd/Makefile.host $mb_pwd/Makefile
cde03b
}
cde03b
cde03b
cde03b
config_host()
cde03b
{
e9d505
	make -s host.tag && return 0
cde03b
cde03b
	error_msg "configure was able to generate a Makefile for the selected host,"
d015ab
	error_msg "however the host-targeting compiler was found to be missing"
cde03b
	error_msg "at least one of the required headers or features."
cde03b
	exit 2
cde03b
}
cde03b
cde03b
cde03b
config_status()
cde03b
{
cde03b
	printf "\n\n"
cde03b
	make .display
cde03b
	printf "\nconfiguration completed successfully.\n\n"
cde03b
}
cde03b
ff655e
ff655e
config_failure()
ff655e
{
ff655e
	if [ -f Makefile ]; then
ff655e
		mb_error='failed to use the generated Makefile.'
ff655e
		printf '\n%s: error: %s\n' "${0}" "$mb_error" >&2
ff655e
		mv Makefile Makefile.failed
ff655e
	fi
ff655e
ff655e
	exit 2
ff655e
}
ff655e
ff655e
ff655e
config_success()
ff655e
{
ff655e
	trap '' EXIT
ff655e
	exit 0
ff655e
}
ff655e
ff655e
cde03b
# one: init
cde03b
init_vars
cde03b
verify_build_directory
cde03b
cde03b
cde03b
# two: args
cde03b
for arg ; do
cde03b
	case "$arg" in
b8199b
		--help)
b8199b
			usage
b8199b
			;;
b8199b
		--help=ccenv)
b8199b
			ccenv_usage
b8199b
			;;
b8199b
b8199b
		# ccenv
b8199b
		--cross-compile=*)
b8199b
			mb_cross_compile=${arg#*=}
b8199b
			;;
b8199b
		--compiler=*)
b8199b
			mb_compiler=${arg#*=}
b8199b
			;;
b8199b
		--toolchain=*)
b8199b
			mb_toolchain=${arg#*=}
b8199b
			;;
b8199b
		--zealous)
b8199b
			mb_agnostic=yes
b8199b
			mb_zealous=
b8199b
			;;
b8199b
		--zealous=*)
b8199b
			mb_zealous=${arg#*=}
b8199b
			;;
b8199b
		--ccenv=*)
b8199b
			mb_ccenv=${arg#*=}
cde03b
			;;
cde03b
cde03b
		# dirs
cde03b
		--prefix=*)
3d4f90
			mb_prefix_set=yes
cde03b
			mb_prefix=${arg#*=}
cde03b
			;;
17f6d3
		--exec-prefix=*)
3d4f90
			mb_exec_prefix_set=yes
17f6d3
			mb_exec_prefix=${arg#*=}
17f6d3
			;;
cde03b
		--bindir=*)
92911d
			mb_bindir_set=yes
cde03b
			mb_bindir=${arg#*=}
cde03b
			;;
a6f38d
		--sbindir=*)
a6f38d
			mb_sbindir=${arg#*=}
a6f38d
			;;
cde03b
		--libdir=*)
cde03b
			mb_libdir=${arg#*=}
cde03b
			;;
cde03b
		--includedir=*)
cde03b
			mb_includedir=${arg#*=}
cde03b
			;;
7f5702
		--oldincludedir=*)
7f5702
			mb_oldincludedir=${arg#*=}
7f5702
			;;
cde03b
		--mandir=*)
cde03b
			mb_mandir=${arg#*=}
cde03b
			;;
cde03b
		--libexecdir=*)
cde03b
			mb_libexecdir=${arg#*=}
cde03b
			;;
cde03b
cde03b
7f5702
		--sysconfdir=*)
7f5702
			mb_sysconfdir=${arg#*=}
7f5702
			;;
7f5702
		--sharedstatedir=*)
7f5702
			mb_sharedstatedir=${arg#*=}
7f5702
			;;
7f5702
		--localstatedir=*)
7f5702
			mb_localstatedir=${arg#*=}
7f5702
			;;
7f5702
		--runstatedir=*)
7f5702
			mb_runstatedir=${arg#*=}
7f5702
			;;
7f5702
		--datarootdir=*)
7f5702
			mb_datarootdir=${arg#*=}
7f5702
			;;
7f5702
		--datadir=*)
7f5702
			mb_datadir=${arg#*=}
7f5702
			;;
7f5702
		--infodir=*)
7f5702
			mb_infodir=${arg#*=}
7f5702
			;;
7f5702
		--localedir=*)
7f5702
			mb_localedir=${arg#*=}
7f5702
			;;
7f5702
		--htmldir=*)
7f5702
			mb_htmldir=${arg#*=}
7f5702
			;;
7f5702
		--dvidir=*)
7f5702
			mb_dvidir=${arg#*=}
7f5702
			;;
7f5702
		--pdfdir=*)
7f5702
			mb_pdfdir=${arg#*=}
7f5702
			;;
7f5702
		--psdir=*)
7f5702
			mb_psdir=${arg#*=}
7f5702
			;;
7f5702
7f5702
cde03b
		# build
cde03b
		--build=*)
cde03b
			mb_build=${arg#*=}
cde03b
			;;
cde03b
		--host=*)
cde03b
			mb_host=${arg#*=}
cde03b
			;;
7e1d96
		--cchost=*)
7e1d96
			mb_cchost=${arg#*=}
7e1d96
			;;
a18dc4
		--cfghost=*)
a18dc4
			mb_cfghost=${arg#*=}
a18dc4
			;;
cde03b
		--target=*)
cde03b
			mb_target=${arg#*=}
cde03b
			;;
cde03b
		--arch=*)
cde03b
			mb_arch=${arg#*=}
cde03b
			;;
cde03b
		--sysroot=*)
cde03b
			mb_sysroot=${arg#*=}
cde03b
			;;
cde03b
		--shell=*)
cde03b
			mb_shell=${arg#*=}
cde03b
			;;
cde03b
		--debug)
2728dc
			mb_debug=yes
cde03b
			;;
ee3e67
d184a6
		# config
d184a6
		--all-static)
2728dc
			mb_all_static=yes
d184a6
			;;
d184a6
		--all-shared)
2728dc
			mb_all_shared=yes
d184a6
			;;
4a9807
		--disable-frontend)
2728dc
			mb_disable_frontend=yes
4a9807
			;;
4a9807
		--disable-app)
2728dc
			mb_disable_frontend=yes
4a9807
			;;
4a9807
		--enable-frontend)
4a9807
			mb_disable_frontend='no'
4a9807
			;;
4a9807
		--enable-app)
4a9807
			mb_disable_frontend='no'
4a9807
			;;
d184a6
		--disable-static)
2728dc
			mb_disable_static=yes
d184a6
			;;
d184a6
		--disable-shared)
2728dc
			mb_disable_shared=yes
d184a6
			;;
d184a6
		--enable-static)
d184a6
			mb_disable_static='no'
d184a6
			;;
d184a6
		--enable-shared)
d184a6
			mb_disable_shared='no'
d184a6
			;;
d184a6
bec9ab
		# convenience
bec9ab
		--strict)
2728dc
			mb_ccstrict=yes
2728dc
			mb_ldstrict=yes
bec9ab
			;;
bec9ab
		--ccstrict)
2728dc
			mb_ccstrict=yes
bec9ab
			;;
bec9ab
		--ldstrict)
2728dc
			mb_ldstrict=yes
bec9ab
			;;
bec9ab
ee3e67
		# project
ee3e67
		--nickname=*)
ee3e67
			mb_nickname=${arg#*=}
ee3e67
			;;
c3b00a
		--program-prefix=*)
c3b00a
			mb_program_prefix=${arg#*=}
c3b00a
			;;
67ced2
		--avoid-version)
2728dc
			mb_avoid_version=yes
67ced2
			;;
f7b445
		--source-dir=*)
f7b445
			mb_source_dir=${arg#*=}
f7b445
			;;
ee3e67
b9138e
		# pkgconfig
b9138e
		--pkgname=*)
b9138e
			mb_pkgname=${arg#*=}
b9138e
			;;
b9138e
b9138e
		--pkgdesc=*)
b9138e
			mb_pkgdesc=${arg#*=}
b9138e
			;;
b9138e
b9138e
		--pkgusrc=*)
b9138e
			mb_pkgusrc=${arg#*=}
b9138e
			;;
b9138e
b9138e
		--pkgrepo=*)
b9138e
			mb_pkgrepo=${arg#*=}
b9138e
			;;
b9138e
b9138e
		--pkgpsrc=*)
b9138e
			mb_pkgpsrc=${arg#*=}
b9138e
			;;
b9138e
b9138e
		--pkgdurl=*)
b9138e
			mb_pkgdurl=${arg#*=}
b9138e
			;;
b9138e
b9138e
		--pkgdefs=*)
b9138e
			mb_pkgdefs=${arg#*=}
b9138e
			;;
b9138e
b9138e
		--pkglibs=*)
b9138e
			mb_pkglibs=${arg#*=}
b9138e
			;;
b9138e
6efc00
		# compatibility
6efc00
		--enable-dependency-tracking)
6efc00
			;;
6efc00
		--disable-dependency-tracking)
6efc00
			;;
6efc00
cde03b
		*)
2728dc
			if [ _$mb_use_custom_cfgdefs = _yes ]; then
823a96
				mb_escaped_arg=\'$(printf '%s\n' "$arg" | sed -e "s/'/'\\\\''/g")\'
823a96
				mb_escaped_arg="$mb_custom_cfgdefs_space$mb_escaped_arg"
823a96
				mb_custom_cfgdefs_args="$mb_custom_cfgdefs_args$mb_escaped_arg"
823a96
				mb_custom_cfgdefs_space=' '
e271dd
			else
e271dd
				error_msg ${arg#}: "unsupported config argument."
e271dd
				exit 2
e271dd
			fi
cde03b
			;;
cde03b
	esac
cde03b
done
cde03b
cde03b
cde03b
f7b445
# three: validation
f7b445
verify_source_directory
f7b445
c3b00a
if ! [ -z "$mb_program_prefix" ]; then
c3b00a
	error_msg "--program-prefix is not yet fully support (must be null)."
c3b00a
fi
c3b00a
f7b445
f7b445
f7b445
# four: defaults
cde03b
common_defaults
cde03b
cde03b
f7b445
# five: config
598a7f
config_flags
cde03b
config_copy
b8199b
config_ccenv
e271dd
config_custom
e271dd
config_cfghost
cde03b
config_host
cde03b
config_status
cde03b
cde03b
cde03b
# all done
ff655e
config_success