6 echo >&2 "$0: error: $@"
15 ( eval [ "\"\${$1+set}\"" = "set" ] )
20 Usage: $0 [OPTION]... [VAR=VALUE]...
22 This script creates necessary configuration files to build/install.
24 To assign environment variables (e.g., CC, CFLAGS...), specify them as
25 VAR=VALUE. See below for descriptions of some of the useful variables.
27 Defaults for the options are specified in brackets.
30 -h, --help display this help and exit
31 --prefix=[path] base path [/usr/local]
32 --bindir=DIR user executables [PREFIX/bin]
33 --sbindir=DIR system admin executables [PREFIX/sbin]
34 --libdir=DIR object code libraries [PREFIX/lib]
35 --scriptdir=DIR script type plugins [LIBDIR/vlock/scripts]
36 --moduledir=DIR module type plugins [LIBDIR/vlock/modules]
37 --mandir=DIR man documentation [PREFIX/share/man]
40 --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no)
41 --enable-FEATURE[=ARG] include FEATURE [ARG=yes]
42 --enable-plugins enable plugin support [enabled]
43 --enable-pam enable PAM authentication [enabled]
44 --enable-shadow enable shadow authentication [disabled]
45 --enable-root-password enable unlogging with root password [enabled]
46 --enable-debug enable debugging
48 Additional configuration:
49 --with-scripts=SCRIPTS enable the named scripts []
50 --with-modules=MODULES enable the named modules [<architecture depedent>]
52 Some influential environment variables:
54 CFLAGS C compiler flags
55 LDFLAGS linker flags, e.g. -L<lib dir> if you have libraries in a
56 nonstandard directory <lib dir>
58 Use these variables to override the choices made by \`configure' or to help
59 it to find libraries and programs with nonstandard names/locations.
61 Report bugs to <frank-vlock@benkstein.net>.
75 ENABLE_ROOT_PASSWORD
="$2"
78 if [ "$2" = "yes" ] ; then
79 if [ -n "$auth_method" ] && [ "$auth_method" != "$1" ] ; then
80 fatal_error
"pam and shadow authentication are mutually exclusive"
84 fatal_error
"cannot disable authentication"
88 if [ "$2" = "yes" ] ; then
89 CFLAGS
="${DEBUG_CFLAGS}"
91 CFLAGS
="${DEFAULT_CFLAGS}"
95 fatal_error
"invalid feature name: $1"
101 local feature opt optarg
103 while [ $# -gt 0 ] ; do
104 if ! opt
=`expr "x$1" : 'x\([^=]*\)=.*'` ; then
108 if ! optarg
=`expr "x$1" : 'x[^=]*=\(.*\)'` ; then
114 feature
=`expr "x$1" : 'x--disable-\(.*\)'`
115 enable_feature
"$feature" no
119 feature
=`expr "x$1" : 'x--enable-\(.*\)=no'`
120 enable_feature
"$feature" no
124 feature
=`expr "x$1" : 'x--enable-\(.*\)=yes'`
125 enable_feature
"$feature" yes
129 feature
=`expr "x$1" : 'x--enable-\(.*\)'`
130 enable_feature
"$feature" yes
136 set -- "$opt" "$optarg" "$@"
140 shift 2 || fatal_error
"$1 argument missing"
144 shift 2 || fatal_error
"$1 argument missing"
148 shift 2 || fatal_error
"$1 argument missing"
152 shift 2 || fatal_error
"$1 argument missing"
156 shift 2 || fatal_error
"$1 argument missing"
160 shift 2 || fatal_error
"$1 argument missing"
164 shift 2 || fatal_error
"$1 argument missing"
168 shift 2 || fatal_error
"$1 argument missing"
172 shift 2 || fatal_error
"$1 argument missing"
175 set_variable
"$1" "$2"
176 shift 2 || fatal_error
"$1 value missing"
187 error
"unrecognized option: $1"
188 echo >&2 "Try \`$0 --help' for more information."
192 error
"invalid argument: $1"
193 echo >&2 "Try \`$0 --help' for more information."
201 # architecture independent defaults
203 BINDIR
="\$(PREFIX)/bin"
204 SBINDIR
="\$(PREFIX)/sbin"
205 LIBDIR
="\$(PREFIX)/lib"
206 MANDIR
="\$(PREFIX)/share/man"
207 SCRIPTDIR
="\$(LIBDIR)/vlock/scripts"
208 MODULEDIR
="\$(LIBDIR)/vlock/modules"
211 DEFAULT_CFLAGS
="-O2 -Wall -W -pedantic -std=gnu99"
212 DEBUG_CFLAGS
="-O0 -g -Wall -W -pedantic -std=gnu99"
213 CFLAGS
="${DEFAULT_CFLAGS}"
217 ENABLE_ROOT_PASSWORD
="yes"
222 VLOCK_MODULE_MODE
="0750"
224 BOURNE_SHELL
="/bin/sh"
226 # architecture dependent defaults
229 for make in make gmake
; do
230 if $make -f /dev
/null
-q -v 2>/dev
/null |
head -n 1 |
grep -q "GNU Make" ; then
236 ROOT_GROUP
=`getent group | awk -F: '$3 == 0 { print $1 ; exit }'`
240 PAM_LIBS
='-ldl -lpam'
243 MODULES
="all.so new.so nosysrq.so"
246 PAM_LIBS
='-ldl -lpam'
249 MODULES
="all.so new.so"
255 MODULES
="all.so new.so"
263 if [ -z "$MAKE" ] ; then
264 error
"GNU make not found"
265 echo >&2 "Set MAKE environment variable to specify alternative."
269 tmpdir
=`mktemp -d -t vlock-configure.XXXXXX`
271 $MAKE -rR -f config.mk
-p -q .
2>/dev
/null |
awk > "$tmpdir/config.mk" '
272 /^# makefile .from .config\.mk., line/ { p=1; next }
274 p==1 && $1 != "MAKEFILE_LIST" && /^[[:alpha:]_]+ :?= .*/ { print }
279 variable_name
=`expr "x${line}" : 'x\([[[:alpha:]_]\{1,\}\) :\{0,1\}='`
280 if variable_value
=`expr "x${line}" : 'x[[:alpha:]_]\{1,\} :\{0,1\}= \(.*\)'` ; then
281 set_variable
"$variable_name" "$variable_value"
283 set_variable
"$variable_name" ""
285 done < "$tmpdir/config.mk"
300 scriptdir: $SCRIPTDIR
301 moduledir: $MODULEDIR
304 enable plugins: $ENABLE_PLUGINS
305 root-password: $ENABLE_ROOT_PASSWORD
306 auth-method: $AUTH_METHOD
312 operating system: $OS
315 compiler flags: $CFLAGS
318 crypt lib: $CRYPT_LIB
320 installation configuration:
321 root group: $ROOT_GROUP
322 vlock group: $VLOCK_GROUP
327 cat > config.mk
<<EOF
328 # automatically generated by $0 on $(date)
330 ### configuration options ###
332 # authentification method (pam or shadow)
333 AUTH_METHOD = ${AUTH_METHOD}
334 # also prompt for the root password in adition to the user's
335 ENABLE_ROOT_PASSWORD = ${ENABLE_ROOT_PASSWORD}
336 # enable plugins for vlock-main
337 ENABLE_PLUGINS = ${ENABLE_PLUGINS}
338 # which plugins should be build
340 # which scripts should be installed
344 ROOT_GROUP = ${ROOT_GROUP}
346 # group to install vlock-main with
347 VLOCK_GROUP = ${VLOCK_GROUP}
348 # mode to install privileged plugins with
349 VLOCK_MODULE_MODE = ${VLOCK_MODULE_MODE}
353 # installation prefix
361 # path where modules will be located
362 MODULEDIR = ${MODULEDIR}
363 # path where scripts will be located
364 SCRIPTDIR = ${SCRIPTDIR}
368 # shell to run vlock.sh with (only bash is known to work)
369 BOURNE_SHELL = ${BOURNE_SHELL}
379 ### compiler and linker settings ###
385 # linker flags needed for dlopen and friends
387 # linker flags needed for crypt
388 CRYPT_LIB = ${CRYPT_LIB}
389 # linker flags needed for pam
390 PAM_LIBS = ${PAM_LIBS}
401 if [ "$verbose" -ge 1 ] ; then