src/vlock-main.c: display auth tries after plugin end hook
[vlock.git] / configure
bloba8c6836743cf41a26c27d4de60b5352727cb6e6f
1 #!/bin/sh
3 set -e
5 error() {
6 echo >&2 "$0: error: $@"
9 fatal_error() {
10 error "$@"
11 exit 1
14 is_set() {
15 ( eval [ "\"\${$1+set}\"" = "set" ] )
18 show_usage() {
19 cat <<EOT
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.
29 Main options:
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]
39 Optional Features:
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:
53 CC C compiler command
54 CFLAGS C compiler flags
55 EXTRA_CFLAGS additional C compiler flags (extends default)
56 LDFLAGS linker flags, e.g. -L<lib dir> if you have libraries in a
57 nonstandard directory <lib dir>
58 EXTRA_LDFLAGS additional linker flags (extends default)
59 VLOCK_GROUP group for restricted modules (default: vlock)
60 VLOCK_MODE mode for restricted modules (default: 0750)
62 Use these variables to override the choices made by \`configure' or to help
63 it to find libraries and programs with nonstandard names/locations.
65 Report bugs to <frank-vlock@benkstein.net>.
66 EOT
69 set_variable() {
70 eval "$1"='"$2"'
73 enable_feature() {
74 case "$1" in
75 plugins)
76 ENABLE_PLUGINS="$2"
78 root-password)
79 ENABLE_ROOT_PASSWORD="$2"
81 pam|shadow)
82 if [ "$2" = "yes" ] ; then
83 if [ -n "$auth_method" ] && [ "$auth_method" != "$1" ] ; then
84 fatal_error "pam and shadow authentication are mutually exclusive"
86 AUTH_METHOD="$1"
87 else
88 fatal_error "cannot disable authentication"
91 debug)
92 if [ "$2" = "yes" ] ; then
93 CFLAGS="${DEBUG_CFLAGS}"
94 else
95 CFLAGS="${DEFAULT_CFLAGS}"
99 fatal_error "invalid feature name: $1"
101 esac
104 parse_arguments() {
105 local feature opt optarg
107 while [ $# -gt 0 ] ; do
108 if ! opt=`expr "x$1" : 'x\([^=]*\)=.*'` ; then
109 opt="$1"
112 if ! optarg=`expr "x$1" : 'x[^=]*=\(.*\)'` ; then
113 optarg=""
116 case "$1" in
117 --disable-*)
118 feature=`expr "x$1" : 'x--disable-\(.*\)'`
119 enable_feature "$feature" no
120 shift
122 --enable-*=no)
123 feature=`expr "x$1" : 'x--enable-\(.*\)=no'`
124 enable_feature "$feature" no
125 shift
127 --enable-*=yes)
128 feature=`expr "x$1" : 'x--enable-\(.*\)=yes'`
129 enable_feature "$feature" yes
130 shift
132 --enable-*)
133 feature=`expr "x$1" : 'x--enable-\(.*\)'`
134 enable_feature "$feature" yes
135 shift
137 *=*)
138 shift
139 # unshift
140 set -- "$opt" "$optarg" "$@"
142 --prefix)
143 PREFIX="$2"
144 shift 2 || fatal_error "$1 argument missing"
146 --bindir)
147 BINDIR="$2"
148 shift 2 || fatal_error "$1 argument missing"
150 --sbindir)
151 SBINDIR="$2"
152 shift 2 || fatal_error "$1 argument missing"
154 --libdir)
155 LIBDIR="$2"
156 shift 2 || fatal_error "$1 argument missing"
158 --moduledir)
159 MODULEDIR="$2"
160 shift 2 || fatal_error "$1 argument missing"
162 --scriptdir)
163 SCRIPTDIR="$2"
164 shift 2 || fatal_error "$1 argument missing"
166 --mandir)
167 MANDIR="$2"
168 shift 2 || fatal_error "$1 argument missing"
170 --with-modules)
171 MODULES="$2"
172 shift 2 || fatal_error "$1 argument missing"
174 --with-scripts)
175 SCRIPTS="$2"
176 shift 2 || fatal_error "$1 argument missing"
178 EXTRA_CFLAGS)
179 CFLAGS="${CFLAGS} $2"
180 shift 2 || fatal_error "$1 value missing"
182 EXTRA_LDFLAGS)
183 LDFLAGS="${LDFLAGS} $2"
184 shift 2 || fatal_error "$1 value missing"
186 [A-Z]*)
187 set_variable "$1" "$2"
188 shift 2 || fatal_error "$1 value missing"
190 --quiet)
191 verbose=0
192 shift
194 --help)
195 show_usage
196 exit
198 --*)
199 error "unrecognized option: $1"
200 echo >&2 "Try \`$0 --help' for more information."
201 exit 1
204 error "invalid argument: $1"
205 echo >&2 "Try \`$0 --help' for more information."
206 exit 1
208 esac
209 done
212 set_defaults() {
213 # architecture independent defaults
214 PREFIX="/usr/local"
215 BINDIR="\$(PREFIX)/bin"
216 SBINDIR="\$(PREFIX)/sbin"
217 LIBDIR="\$(PREFIX)/lib"
218 MANDIR="\$(PREFIX)/share/man"
219 SCRIPTDIR="\$(LIBDIR)/vlock/scripts"
220 MODULEDIR="\$(LIBDIR)/vlock/modules"
222 CC=gcc
223 DEFAULT_CFLAGS="-O2 -Wall -W -pedantic -std=gnu99"
224 DEBUG_CFLAGS="-O0 -g -Wall -W -pedantic -std=gnu99"
225 CFLAGS="${DEFAULT_CFLAGS}"
226 LD=ld
227 LDFLAGS=""
228 AUTH_METHOD="pam"
229 ENABLE_ROOT_PASSWORD="yes"
230 ENABLE_PLUGINS="yes"
231 SCRIPTS=""
233 VLOCK_GROUP="vlock"
234 VLOCK_MODULE_MODE="0750"
236 BOURNE_SHELL="/bin/sh"
238 # architecture dependent defaults
239 OS=`uname`
241 for make in make gmake ; do
242 if $make -f /dev/null -q -v 2>/dev/null | head -n 1 | grep -q "GNU Make" ; then
243 MAKE="$make"
244 break
246 done
248 ROOT_GROUP=`getent group | awk -F: '$3 == 0 { print $1 ; exit }'`
250 case "$OS" in
251 Linux)
252 PAM_LIBS='-ldl -lpam'
253 DL_LIB='-ldl'
254 CRYPT_LIB='-lcrypt'
255 MODULES="all.so new.so nosysrq.so"
257 GNU/kFreeBSD)
258 PAM_LIBS='-ldl -lpam'
259 DL_LIB='-ldl'
260 CRYPT_LIB='-lcrypt'
261 MODULES="all.so new.so"
263 FreeBSD)
264 PAM_LIBS='-lpam'
265 DL_LIB=''
266 CRYPT_LIB=''
267 MODULES="all.so new.so"
269 esac
272 parse_config_mk() {
273 local tmpdir
275 if [ -z "$MAKE" ] ; then
276 error "GNU make not found"
277 echo >&2 "Set MAKE environment variable to specify alternative."
278 exit 1
281 tmpdir=`mktemp -d -t vlock-configure.XXXXXX`
283 $MAKE -rR -f config.mk -p -q . 2>/dev/null | awk > "$tmpdir/config.mk" '
284 /^# makefile/ { p=1; next }
285 /^#/ { p=0; next }
286 p==1 && $1 != "MAKEFILE_LIST" && /^[A-Za-z_]+ :?= .*/ { print }
289 while read line
291 variable_name=`expr "x${line}" : 'x\([[[:alpha:]_]\{1,\}\) :\{0,1\}='`
292 if variable_value=`expr "x${line}" : 'x[[:alpha:]_]\{1,\} :\{0,1\}= \(.*\)'` ; then
293 set_variable "$variable_name" "$variable_value"
294 else
295 set_variable "$variable_name" ""
297 done < "$tmpdir/config.mk"
299 rm -rf "$tmpdir"
302 show_summary() {
303 cat <<EOF
304 vlock configuration
306 directories:
307 prefix: $PREFIX
308 bindir: $BINDIR
309 sbindir: $SBINDIR
310 libdir: $LIBDIR
311 mandir: $MANDIR
312 scriptdir: $SCRIPTDIR
313 moduledir: $MODULEDIR
315 features:
316 enable plugins: $ENABLE_PLUGINS
317 root-password: $ENABLE_ROOT_PASSWORD
318 auth-method: $AUTH_METHOD
319 modules: $MODULES
320 scripts: $SCRIPTS
322 build configuration:
324 operating system: $OS
325 gnu make: $MAKE
326 c compiler: $CC
327 compiler flags: $CFLAGS
328 linker flags $LDFLAGS
329 pam libs: $PAM_LIBS
330 dl libs: $DL_LIB
331 crypt lib: $CRYPT_LIB
333 installation configuration:
334 root group: $ROOT_GROUP
335 vlock group: $VLOCK_GROUP
339 create_config_mk() {
340 cat > config.mk <<EOF
341 # automatically generated by $0 on $(date)
343 ### configuration options ###
345 # authentification method (pam or shadow)
346 AUTH_METHOD = ${AUTH_METHOD}
347 # also prompt for the root password in adition to the user's
348 ENABLE_ROOT_PASSWORD = ${ENABLE_ROOT_PASSWORD}
349 # enable plugins for vlock-main
350 ENABLE_PLUGINS = ${ENABLE_PLUGINS}
351 # which plugins should be build
352 MODULES = ${MODULES}
353 # which scripts should be installed
354 SCRIPTS = ${SCRIPTS}
356 # root's group
357 ROOT_GROUP = ${ROOT_GROUP}
359 # group for privileged plugins
360 VLOCK_GROUP = ${VLOCK_GROUP}
361 # mode for privileged plugins
362 VLOCK_MODULE_MODE = ${VLOCK_MODULE_MODE}
364 ### paths ###
366 # installation prefix
367 PREFIX = ${PREFIX}
368 BINDIR = ${BINDIR}
369 SBINDIR = ${SBINDIR}
370 LIBDIR = ${LIBDIR}
371 MANDIR = ${MANDIR}
372 # installation root
373 DESTDIR =
374 # path where modules will be located
375 MODULEDIR = ${MODULEDIR}
376 # path where scripts will be located
377 SCRIPTDIR = ${SCRIPTDIR}
379 ### programs ###
381 # shell to run vlock.sh with (only bash is known to work)
382 BOURNE_SHELL = ${BOURNE_SHELL}
383 # C compiler
384 CC = ${CC}
385 # linker
386 LD = ${LD}
387 # mkdir
388 MKDIR_P = mkdir -p
389 # install
390 INSTALL = install
392 ### compiler and linker settings ###
394 # C compiler flags
395 CFLAGS = ${CFLAGS}
396 # linker flags
397 LDFLAGS = ${LDFLAGS}
398 # linker flags needed for dlopen and friends
399 DL_LIB = ${DL_LIB}
400 # linker flags needed for crypt
401 CRYPT_LIB = ${CRYPT_LIB}
402 # linker flags needed for pam
403 PAM_LIBS = ${PAM_LIBS}
407 main() {
408 verbose=1
410 set_defaults
411 parse_config_mk
412 parse_arguments "$@"
414 if [ "$verbose" -ge 1 ] ; then
415 show_summary
418 create_config_mk
421 main "$@"