4 [linux-modules@vger.kernel.org],
6 [http://git.kernel.org/?p=utils/kernel/kmod/kmod.git])
8 AC_CONFIG_SRCDIR([libkmod/libkmod.c])
9 AC_CONFIG_AUX_DIR([build-aux])
10 AM_INIT_AUTOMAKE([check-news foreign 1.11 silent-rules
11 tar-pax no-dist-gzip dist-xz subdir-objects color-tests parallel-tests])
13 AC_USE_SYSTEM_EXTENSIONS
15 AC_CONFIG_MACRO_DIR([m4])
16 m4_ifndef([AM_SILENT_RULES], [m4_define([AM_SILENT_RULES],[])])
17 AM_SILENT_RULES([yes])
18 LT_INIT([disable-static pic-only])
19 AC_PREFIX_DEFAULT([/usr])
20 AM_MAINTAINER_MODE([enable])
22 AS_IF([test "x$enable_static" = "xyes"],
23 [AC_MSG_ERROR([--enable-static is not supported by kmod])])
26 #####################################################################
27 # Program checks and configurations
28 #####################################################################
33 AC_PROG_GCC_TRADITIONAL
41 #####################################################################
42 # Function and structure checks
43 #####################################################################
45 AC_CHECK_FUNCS_ONCE(__xstat)
46 AC_CHECK_FUNCS_ONCE([__secure_getenv secure_getenv])
47 AC_CHECK_FUNCS_ONCE([finit_module])
49 # dietlibc doesn't have st.st_mtim struct member
50 AC_CHECK_MEMBERS([struct stat.st_mtim], [], [], [#include <sys/stat.h>])
52 # Check kernel headers
53 AC_CHECK_HEADERS_ONCE([linux/module.h])
55 AC_MSG_CHECKING([whether _Static_assert() is supported])
57 [AC_LANG_SOURCE([[_Static_assert(1, "Test");]])],
58 [AC_DEFINE([HAVE_STATIC_ASSERT], [1], [Define if _Static_assert() is available])
59 AC_MSG_RESULT([yes])],
60 [AC_MSG_RESULT([no])])
62 #####################################################################
64 #####################################################################
66 AC_ARG_WITH([rootlibdir],
67 AS_HELP_STRING([--with-rootlibdir=DIR], [rootfs directory to install shared libraries]),
68 [], [with_rootlibdir=$libdir])
69 AC_SUBST([rootlibdir], [$with_rootlibdir])
72 AS_HELP_STRING([--with-xz], [handle Xz-compressed modules @<:@default=disabled@:>@]),
74 AS_IF([test "x$with_xz" != "xno"], [
75 PKG_CHECK_MODULES([liblzma], [liblzma >= 4.99])
76 AC_DEFINE([ENABLE_XZ], [1], [Enable Xz for modules.])
78 AC_MSG_NOTICE([Xz support not requested])
82 AS_HELP_STRING([--with-zlib], [handle gzipped modules @<:@default=disabled@:>@]),
84 AS_IF([test "x$with_zlib" != "xno"], [
85 PKG_CHECK_MODULES([zlib], [zlib])
86 AC_DEFINE([ENABLE_ZLIB], [1], [Enable zlib for modules.])
88 AC_MSG_NOTICE([zlib support not requested])
91 AC_ARG_WITH([bashcompletiondir],
92 AS_HELP_STRING([--with-bashcompletiondir=DIR], [Bash completions directory]),
94 [AS_IF([$($PKG_CONFIG --exists bash-completion)], [
95 with_bashcompletiondir=$($PKG_CONFIG --variable=completionsdir bash-completion)
97 with_bashcompletiondir=${datadir}/bash-completion/completions
99 AC_SUBST([bashcompletiondir], [$with_bashcompletiondir])
101 #####################################################################
103 #####################################################################
105 AC_ARG_ENABLE([tools],
106 AS_HELP_STRING([--disable-tools], [disable building tools that provide same functionality as module-init-tools @<:@default=enabled@:>@]),
107 [], enable_tools=yes)
108 AM_CONDITIONAL([BUILD_TOOLS], [test "x$enable_tools" = "xyes"])
110 AC_ARG_ENABLE([manpages],
111 AS_HELP_STRING([--disable-manpages], [disable manpages @<:@default=enabled@:>@]),
112 [], enable_manpages=yes)
113 AM_CONDITIONAL([BUILD_MANPAGES], [test "x$enable_manpages" = "xyes"])
114 AC_PATH_PROG([XSLTPROC], [xsltproc], [no])
115 AS_IF([test "x$XSLTPROC" = "xno" && test "x$enable_manpages" = "xyes"], [
116 AC_MSG_ERROR([xsltproc command not found, try ./configure --disable-manpages])
119 AC_ARG_ENABLE([logging],
120 AS_HELP_STRING([--disable-logging], [disable system logging @<:@default=enabled@:>@]),
121 [], enable_logging=yes)
122 AS_IF([test "x$enable_logging" = "xyes"], [
123 AC_DEFINE(ENABLE_LOGGING, [1], [System logging.])
126 AC_ARG_ENABLE([debug],
127 AS_HELP_STRING([--enable-debug], [enable debug messages @<:@default=disabled@:>@]),
128 [], [enable_debug=no])
129 AS_IF([test "x$enable_debug" = "xyes"], [
130 AC_DEFINE(ENABLE_DEBUG, [1], [Debug messages.])
133 m4_ifdef([GTK_DOC_CHECK], [
134 GTK_DOC_CHECK([1.14],[--flavour no-tmpl-flat])
136 AM_CONDITIONAL([ENABLE_GTK_DOC], false)])
139 #####################################################################
140 # Default CFLAGS and LDFLAGS
141 #####################################################################
143 CC_CHECK_FLAGS_APPEND(with_cflags, [CFLAGS], [\
145 -DANOTHER_BRICK_IN_THE \
156 -Wmissing-include-dirs \
157 -Wformat-nonliteral \
158 -Wold-style-definition \
161 -Wdeclaration-after-statement \
163 -Wmissing-prototypes \
164 -Wstrict-prototypes \
166 -Wmissing-declarations \
170 -Wstrict-aliasing=2 \
173 -Wno-overlength-strings \
174 -Wno-unused-parameter \
175 -Wno-missing-field-initializers \
182 -fdiagnostics-show-option \
183 -fdiagnostics-color=auto \
184 -fvisibility=hidden \
185 -ffunction-sections \
187 AC_SUBST([WARNINGFLAGS], $with_cflags)
190 CC_CHECK_FLAGS_APPEND([with_ldflags], [LDFLAGS], [ \
193 AC_SUBST([GCLDFLAGS], $with_ldflags)
195 #####################################################################
196 # Generate files from *.in
197 #####################################################################
199 AC_CONFIG_HEADERS(config.h)
203 libkmod/docs/Makefile
204 libkmod/docs/version.xml
208 #####################################################################
216 sysconfdir: ${sysconfdir}
218 rootlibdir: ${rootlibdir}
219 includedir: ${includedir}
221 Bash completions dir: ${with_bashcompletiondir}
224 cflags: ${with_cflags} ${CFLAGS}
225 ldflags: ${with_ldflags} ${LDFLAGS}
227 tools: ${enable_tools}
228 logging: ${enable_logging}
229 compression: xz=${with_xz} zlib=${with_zlib}
230 debug: ${enable_debug}
231 doc: ${enable_gtk_doc}
232 man: ${enable_manpages}