-
Notifications
You must be signed in to change notification settings - Fork 11
/
configure.ac
72 lines (58 loc) · 2.05 KB
/
configure.ac
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
AC_INIT(module-init-tools,3.16)
AC_CANONICAL_SYSTEM
AX_ENABLE_BUILDDIR([build])
# Use -no-portability since we're never going to use module-init-tools on
# non-Linux systems and it's reasonable to expect GNU-compatibility here.
AM_INIT_AUTOMAKE([-Wno-portability])
# If zlib is required, libz must be linked static, modprobe is in
# /sbin, libz is in /usr/lib and may not be available when it is run.
AC_ARG_ENABLE(zlib,
[ --enable-zlib Handle gzipped modules],
[if test "$enableval" = "yes"; then
AC_DEFINE(CONFIG_USE_ZLIB)
zlib_flags="-Wl,-Bstatic -lz -Wl,-Bdynamic"
fi])
AC_ARG_ENABLE(zlib-dynamic,
[ --enable-zlib-dynamic Handle gzipped modules, zlib will be linked
dynamically. Note that libz must be installed
in /lib for this to work.],
[if test "$enableval" = "yes"; then
AC_DEFINE(CONFIG_USE_ZLIB)
zlib_flags="-lz"
fi])
AC_PROG_CC
AC_PROG_RANLIB
AC_CHECK_PROGS(DOCBOOKTOMAN, docbook-to-man docbook2man, [no],)
if test x"$DOCBOOKTOMAN" = xno
then
AC_MSG_WARN([docbook2man not found])
# fail with a meaningfull error if $DOCBOOKTOMAN called by the makefile
DOCBOOKTOMAN=docbook2man
fi
# Delay adding the zlib_flags until after AC_PROG_CC, so we can distinguish
# between a broken cc and a working cc but missing libz.a.
LDADD="$LDADD $zlib_flags"
AC_SUBST(LDADD)
case $target in
*-*-linux*) ;;
*) AC_MSG_ERROR([Linux only, dude!]);;
esac
# Thanks to Martin Pool
if test x"$GCC" = xyes
then
CFLAGS="$CFLAGS -Wunused -Wall"
AC_MSG_NOTICE([Adding gcc options: $CFLAGS])
fi
AC_ARG_ENABLE(static-utils,
AS_HELP_STRING([--disable-static-utils], [Do not build static utils]),
[],[enable_static_utils=yes])
AM_CONDITIONAL(BUILD_STATIC_UTILS, test "$enable_static_utils" = "yes")
AC_ARG_WITH(moddir,
[ --with-moddir=path Give the path for system modules directory.]
[ [ Defaults to /lib/modules ]],
[if test ! -z "$withval"; then
MODULE_DIR="\\\"$withval/\\\""
CFLAGS="$CFLAGS -DMODULE_DIR=$MODULE_DIR"
fi])
AC_SUBST(MODULE_DIR)
AC_OUTPUT([Makefile])