]> git.ipfire.org Git - thirdparty/kmod.git/blame - configure.ac
kmod 26
[thirdparty/kmod.git] / configure.ac
CommitLineData
481ad145 1AC_PREREQ(2.64)
cb48c9b2 2AC_INIT([kmod],
58133a96 3 [26],
e17cc3af 4 [linux-modules@vger.kernel.org],
cb48c9b2 5 [kmod],
bb05bc8a 6 [http://git.kernel.org/?p=utils/kernel/kmod/kmod.git])
586fc304
LDM
7
8AC_CONFIG_SRCDIR([libkmod/libkmod.c])
481ad145
LDM
9AC_CONFIG_MACRO_DIR([m4])
10AC_CONFIG_HEADERS(config.h)
ecd40ee4 11AC_CONFIG_AUX_DIR([build-aux])
481ad145 12
ecd40ee4
LDM
13AC_USE_SYSTEM_EXTENSIONS
14AC_SYS_LARGEFILE
ecd40ee4 15AC_PREFIX_DEFAULT([/usr])
f5cc26c7 16AM_MAINTAINER_MODE([enable])
481ad145
LDM
17AM_INIT_AUTOMAKE([check-news foreign 1.11 silent-rules tar-pax no-dist-gzip dist-xz subdir-objects color-tests parallel-tests])
18AM_SILENT_RULES([yes])
19LT_INIT([disable-static pic-only])
da6c0d2f 20DOLT
ecd40ee4 21
fae77516
LDM
22AS_IF([test "x$enable_static" = "xyes"], [AC_MSG_ERROR([--enable-static is not supported by kmod])])
23AS_IF([test "x$enable_largefile" = "xno"], [AC_MSG_ERROR([--disable-largefile is not supported by kmod])])
b7016153 24
3ef7208e
LDM
25#####################################################################
26# Program checks and configurations
27#####################################################################
28
9faa7b37
KS
29AC_PROG_SED
30AC_PROG_MKDIR_P
481ad145 31AC_PROG_LN_S
7b3a74fc 32PKG_PROG_PKG_CONFIG
bccb4b25 33AC_PATH_PROG([XSLTPROC], [xsltproc])
8d9c7e37 34AC_PATH_PROG([MKOSI], [mkosi])
3d8226ed 35
481ad145 36AC_PROG_CC_C99
3ef7208e
LDM
37
38#####################################################################
39# Function and structure checks
40#####################################################################
41
d005aeb7 42AC_CHECK_FUNCS_ONCE(__xstat)
41a51c2a 43AC_CHECK_FUNCS_ONCE([__secure_getenv secure_getenv])
55112d19 44AC_CHECK_FUNCS_ONCE([finit_module])
d005aeb7 45
e6307200
LDM
46CC_CHECK_FUNC_BUILTIN([__builtin_clz])
47CC_CHECK_FUNC_BUILTIN([__builtin_types_compatible_p])
aac5f451
LDM
48CC_CHECK_FUNC_BUILTIN([__builtin_uaddl_overflow], [ ], [ ])
49CC_CHECK_FUNC_BUILTIN([__builtin_uaddll_overflow], [ ], [ ])
e6307200 50
3ef7208e
LDM
51# dietlibc doesn't have st.st_mtim struct member
52AC_CHECK_MEMBERS([struct stat.st_mtim], [], [], [#include <sys/stat.h>])
53
04c0956e
LDM
54# musl 1.0 and bionic 4.4 don't have strndupa
55AC_CHECK_DECLS_ONCE([strndupa])
56
9b34db1a
RM
57# RHEL 5 and older do not have be32toh
58AC_CHECK_DECLS_ONCE([be32toh])
59
144d1826
KC
60# Check kernel headers
61AC_CHECK_HEADERS_ONCE([linux/module.h])
62
dc8ed09f
TP
63AC_MSG_CHECKING([whether _Static_assert() is supported])
64AC_COMPILE_IFELSE(
65 [AC_LANG_SOURCE([[_Static_assert(1, "Test");]])],
66 [AC_DEFINE([HAVE_STATIC_ASSERT], [1], [Define if _Static_assert() is available])
67 AC_MSG_RESULT([yes])],
68 [AC_MSG_RESULT([no])])
3ef7208e 69
16a62c7a
LDM
70AC_MSG_CHECKING([whether _Noreturn is supported])
71AC_COMPILE_IFELSE(
72 [AC_LANG_SOURCE([[_Noreturn int foo(void) { exit(0); }]])],
73 [AC_DEFINE([HAVE_NORETURN], [1], [Define if _Noreturn is available])
74 AC_MSG_RESULT([yes])],
75 [AC_MSG_RESULT([no])])
76
77
3ef7208e
LDM
78#####################################################################
79# --with-
80#####################################################################
81
e79bf83b
KS
82AC_ARG_WITH([rootlibdir],
83 AS_HELP_STRING([--with-rootlibdir=DIR], [rootfs directory to install shared libraries]),
84 [], [with_rootlibdir=$libdir])
85AC_SUBST([rootlibdir], [$with_rootlibdir])
86
b182f8fb
JE
87AC_ARG_WITH([xz],
88 AS_HELP_STRING([--with-xz], [handle Xz-compressed modules @<:@default=disabled@:>@]),
89 [], [with_xz=no])
90AS_IF([test "x$with_xz" != "xno"], [
91 PKG_CHECK_MODULES([liblzma], [liblzma >= 4.99])
92 AC_DEFINE([ENABLE_XZ], [1], [Enable Xz for modules.])
93], [
94 AC_MSG_NOTICE([Xz support not requested])
95])
4671e03e 96CC_FEATURE_APPEND([with_features], [with_xz], [XZ])
b182f8fb 97
5a51a357
JE
98AC_ARG_WITH([zlib],
99 AS_HELP_STRING([--with-zlib], [handle gzipped modules @<:@default=disabled@:>@]),
100 [], [with_zlib=no])
101AS_IF([test "x$with_zlib" != "xno"], [
7b3a74fc
JE
102 PKG_CHECK_MODULES([zlib], [zlib])
103 AC_DEFINE([ENABLE_ZLIB], [1], [Enable zlib for modules.])
cfb908bf
LDM
104], [
105 AC_MSG_NOTICE([zlib support not requested])
cfb908bf 106])
4671e03e 107CC_FEATURE_APPEND([with_features], [with_zlib], [ZLIB])
3d8226ed 108
391b4714
YK
109AC_ARG_WITH([openssl],
110 AS_HELP_STRING([--with-openssl], [handle PKCS7 signatures @<:@default=disabled@:>@]),
111 [], [with_openssl=no])
112AS_IF([test "x$with_openssl" != "xno"], [
a3b5428c 113 PKG_CHECK_MODULES([openssl], [openssl >= 1.1.0])
391b4714
YK
114 AC_DEFINE([ENABLE_OPENSSL], [1], [Enable openssl for modinfo.])
115], [
116 AC_MSG_NOTICE([openssl support not requested])
117])
118CC_FEATURE_APPEND([with_features], [with_openssl], [OPENSSL])
119
80cf2c8f
LDM
120AC_ARG_WITH([bashcompletiondir],
121 AS_HELP_STRING([--with-bashcompletiondir=DIR], [Bash completions directory]),
122 [],
123 [AS_IF([$($PKG_CONFIG --exists bash-completion)], [
124 with_bashcompletiondir=$($PKG_CONFIG --variable=completionsdir bash-completion)
125 ] , [
126 with_bashcompletiondir=${datadir}/bash-completion/completions
127 ])])
128AC_SUBST([bashcompletiondir], [$with_bashcompletiondir])
3ef7208e
LDM
129
130#####################################################################
131# --enable-
132#####################################################################
133
013e8550
LDM
134AC_ARG_ENABLE([experimental],
135 AS_HELP_STRING([--enable-experimental], [enable experimental tools and features. Do not enable it unless you know what you are doing. @<:@default=disabled@:>@]),
136 [], enable_experimental=no)
137AM_CONDITIONAL([BUILD_EXPERIMENTAL], [test "x$enable_experimental" = "xyes"])
138AS_IF([test "x$enable_experimental" = "xyes"], [
139 AC_DEFINE(ENABLE_EXPERIMENTAL, [1], [Experimental features.])
140])
4671e03e 141CC_FEATURE_APPEND([with_features], [enable_experimental], [EXPERIMENTAL])
013e8550 142
3ef7208e
LDM
143AC_ARG_ENABLE([tools],
144 AS_HELP_STRING([--disable-tools], [disable building tools that provide same functionality as module-init-tools @<:@default=enabled@:>@]),
145 [], enable_tools=yes)
146AM_CONDITIONAL([BUILD_TOOLS], [test "x$enable_tools" = "xyes"])
147
8631552d
CW
148AC_ARG_ENABLE([manpages],
149 AS_HELP_STRING([--disable-manpages], [disable manpages @<:@default=enabled@:>@]),
150 [], enable_manpages=yes)
151AM_CONDITIONAL([BUILD_MANPAGES], [test "x$enable_manpages" = "xyes"])
152
23603f1f
LDM
153AC_ARG_ENABLE([test-modules],
154 AS_HELP_STRING([--disable-test-modules], [disable building test modules during make check: cached modules will be used @<:@default=enabled@:>@]),
155 [], enable_test_modules=yes)
156AM_CONDITIONAL([BUILD_MODULES], [test "x$enable_test_modules" = "xyes"])
157
3ef7208e
LDM
158AC_ARG_ENABLE([logging],
159 AS_HELP_STRING([--disable-logging], [disable system logging @<:@default=enabled@:>@]),
160 [], enable_logging=yes)
161AS_IF([test "x$enable_logging" = "xyes"], [
162 AC_DEFINE(ENABLE_LOGGING, [1], [System logging.])
163])
164
ecd40ee4
LDM
165AC_ARG_ENABLE([debug],
166 AS_HELP_STRING([--enable-debug], [enable debug messages @<:@default=disabled@:>@]),
167 [], [enable_debug=no])
168AS_IF([test "x$enable_debug" = "xyes"], [
169 AC_DEFINE(ENABLE_DEBUG, [1], [Debug messages.])
170])
171
3a33a7a5
LDM
172AC_ARG_ENABLE([python],
173 AS_HELP_STRING([--enable-python], [enable Python libkmod bindings @<:@default=disabled@:>@]),
174 [], [enable_python=no])
175AS_IF([test "x$enable_python" = "xyes"], [
176 AM_PATH_PYTHON(,,[:])
177 AC_PATH_PROG([CYTHON], [cython], [:])
178
179 PKG_CHECK_MODULES([PYTHON], [python-${PYTHON_VERSION}],
180 [have_python=yes],
181 [PKG_CHECK_MODULES([PYTHON], [python],
182 [have_python=yes],
183 [have_python=no])])
184
185 AS_IF([test "x$have_python" = xno],
186 [AC_MSG_ERROR([*** python support requested but libraries not found])])
187])
188AM_CONDITIONAL([BUILD_PYTHON], [test "x$enable_python" = "xyes"])
189
e9b0d1b4
LDM
190AC_ARG_ENABLE([coverage],
191 AS_HELP_STRING([--enable-coverage], [enable test coverage @<:@default=disabled@:>@]),
192 [], [enable_coverage=no])
193AS_IF([test "x$enable_coverage" = "xyes"], [
194 AC_CHECK_PROG(have_coverage, [lcov], [yes], [no])
195 AS_IF([test "x$have_coverage" = xno],[
196 AC_MSG_ERROR([*** lcov support requested but the program was not found])
197 ], [
198 lcov_version_major="`lcov --version | cut -d ' ' -f 4 | cut -d '.' -f 1`"
199 lcov_version_minor="`lcov --version | cut -d ' ' -f 4 | cut -d '.' -f 2`"
200 AS_IF([test "$lcov_version_major" -lt 1 -o "$lcov_version_minor" -lt 10], [
201 AC_MSG_ERROR([*** lcov version is too old. 1.10 required])
202 ], [
203 have_coverage=yes
204 CC_CHECK_FLAGS_APPEND([with_coverage_cflags], [CFLAGS], [\
205 -fprofile-arcs \
206 -ftest-coverage])
207 ])
208 ])
209])
210AM_CONDITIONAL([ENABLE_COVERAGE], [test "x$enable_coverage" = "xyes"])
211
3ef7208e
LDM
212m4_ifdef([GTK_DOC_CHECK], [
213GTK_DOC_CHECK([1.14],[--flavour no-tmpl-flat])
214], [
215AM_CONDITIONAL([ENABLE_GTK_DOC], false)])
216
217
218#####################################################################
219# Default CFLAGS and LDFLAGS
220#####################################################################
6068aaae 221
e48f3765
LDM
222CC_CHECK_FLAGS_APPEND(with_cflags, [CFLAGS], [\
223 -pipe \
224 -DANOTHER_BRICK_IN_THE \
225 -Wall \
226 -W \
227 -Wextra \
228 -Wno-inline \
229 -Wvla \
230 -Wundef \
231 -Wformat=2 \
232 -Wlogical-op \
233 -Wsign-compare \
234 -Wformat-security \
235 -Wmissing-include-dirs \
236 -Wformat-nonliteral \
237 -Wold-style-definition \
238 -Wpointer-arith \
239 -Winit-self \
240 -Wdeclaration-after-statement \
241 -Wfloat-equal \
242 -Wmissing-prototypes \
243 -Wstrict-prototypes \
244 -Wredundant-decls \
245 -Wmissing-declarations \
246 -Wmissing-noreturn \
247 -Wshadow \
248 -Wendif-labels \
db62153e 249 -Wstrict-aliasing=3 \
e48f3765
LDM
250 -Wwrite-strings \
251 -Wno-long-long \
252 -Wno-overlength-strings \
253 -Wno-unused-parameter \
254 -Wno-missing-field-initializers \
255 -Wno-unused-result \
256 -Wnested-externs \
257 -Wchar-subscripts \
258 -Wtype-limits \
259 -Wuninitialized \
260 -fno-common \
261 -fdiagnostics-show-option \
262 -fvisibility=hidden \
263 -ffunction-sections \
264 -fdata-sections])
27bcc911 265AC_SUBST([OUR_CFLAGS], "$with_cflags $with_coverage_cflags")
e48f3765 266
c677bf2c 267
e48f3765
LDM
268CC_CHECK_FLAGS_APPEND([with_ldflags], [LDFLAGS], [ \
269 -Wl,--as-needed \
a5f799af 270 -Wl,--no-undefined \
e48f3765 271 -Wl,--gc-sections])
84aaaedf 272AC_SUBST([OUR_LDFLAGS], $with_ldflags)
3ef7208e 273
4671e03e
LDM
274AC_DEFINE_UNQUOTED(KMOD_FEATURES, ["$with_features"], [Features in this build])
275
3ef7208e
LDM
276#####################################################################
277# Generate files from *.in
278#####################################################################
279
ecd40ee4
LDM
280AC_CONFIG_FILES([
281 Makefile
904b57d0 282 man/Makefile
646b83b8
LDM
283 libkmod/docs/Makefile
284 libkmod/docs/version.xml
ecd40ee4
LDM
285])
286
3ef7208e
LDM
287
288#####################################################################
646b83b8 289
ecd40ee4
LDM
290AC_OUTPUT
291AC_MSG_RESULT([
292 $PACKAGE $VERSION
80cf2c8f 293 =======
ecd40ee4
LDM
294
295 prefix: ${prefix}
296 sysconfdir: ${sysconfdir}
297 libdir: ${libdir}
e79bf83b 298 rootlibdir: ${rootlibdir}
ecd40ee4 299 includedir: ${includedir}
7c41c2dd 300 bindir: ${bindir}
80cf2c8f 301 Bash completions dir: ${with_bashcompletiondir}
ecd40ee4
LDM
302
303 compiler: ${CC}
e48f3765
LDM
304 cflags: ${with_cflags} ${CFLAGS}
305 ldflags: ${with_ldflags} ${LDFLAGS}
ecd40ee4 306
013e8550 307 experimental features: ${enable_experimental}
7c41c2dd 308 tools: ${enable_tools}
3a33a7a5 309 python bindings: ${enable_python}
ecd40ee4 310 logging: ${enable_logging}
b182f8fb 311 compression: xz=${with_xz} zlib=${with_zlib}
ecd40ee4 312 debug: ${enable_debug}
e9b0d1b4 313 coverage: ${enable_coverage}
646b83b8 314 doc: ${enable_gtk_doc}
382de85c 315 man: ${enable_manpages}
23603f1f 316 test-modules: ${enable_test_modules}
4671e03e
LDM
317
318 features: ${with_features}
ecd40ee4 319])