]> git.ipfire.org Git - thirdparty/kmod.git/blame - configure.ac
kmod 19
[thirdparty/kmod.git] / configure.ac
CommitLineData
ecd40ee4 1AC_PREREQ(2.60)
cb48c9b2 2AC_INIT([kmod],
f9e2167b 3 [19],
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])
ecd40ee4 9AC_CONFIG_AUX_DIR([build-aux])
a597c8bb 10AM_INIT_AUTOMAKE([check-news foreign 1.11 silent-rules
8edd5bb2 11 tar-pax no-dist-gzip dist-xz subdir-objects color-tests parallel-tests])
ecd40ee4
LDM
12AC_PROG_CC_STDC
13AC_USE_SYSTEM_EXTENSIONS
14AC_SYS_LARGEFILE
15AC_CONFIG_MACRO_DIR([m4])
fe8bf3b0 16m4_ifndef([AM_SILENT_RULES], [m4_define([AM_SILENT_RULES],[])])
ecd40ee4
LDM
17AM_SILENT_RULES([yes])
18LT_INIT([disable-static pic-only])
19AC_PREFIX_DEFAULT([/usr])
f5cc26c7 20AM_MAINTAINER_MODE([enable])
ecd40ee4 21
b7016153
LDM
22AS_IF([test "x$enable_static" = "xyes"],
23 [AC_MSG_ERROR([--enable-static is not supported by kmod])])
24
25
3ef7208e
LDM
26#####################################################################
27# Program checks and configurations
28#####################################################################
29
648a842b
LDM
30AC_PROG_CC
31AC_PROG_CC_C99
648a842b
LDM
32AM_PROG_CC_C_O
33AC_PROG_GCC_TRADITIONAL
708624a4 34AC_C_BIGENDIAN
648a842b 35
9faa7b37
KS
36AC_PROG_SED
37AC_PROG_MKDIR_P
7b3a74fc 38PKG_PROG_PKG_CONFIG
bccb4b25 39AC_PATH_PROG([XSLTPROC], [xsltproc])
3d8226ed 40
3ef7208e
LDM
41
42#####################################################################
43# Function and structure checks
44#####################################################################
45
d005aeb7 46AC_CHECK_FUNCS_ONCE(__xstat)
41a51c2a 47AC_CHECK_FUNCS_ONCE([__secure_getenv secure_getenv])
55112d19 48AC_CHECK_FUNCS_ONCE([finit_module])
d005aeb7 49
3ef7208e
LDM
50# dietlibc doesn't have st.st_mtim struct member
51AC_CHECK_MEMBERS([struct stat.st_mtim], [], [], [#include <sys/stat.h>])
52
04c0956e
LDM
53# musl 1.0 and bionic 4.4 don't have strndupa
54AC_CHECK_DECLS_ONCE([strndupa])
55
9b34db1a
RM
56# RHEL 5 and older do not have be32toh
57AC_CHECK_DECLS_ONCE([be32toh])
58
144d1826
KC
59# Check kernel headers
60AC_CHECK_HEADERS_ONCE([linux/module.h])
61
dc8ed09f
TP
62AC_MSG_CHECKING([whether _Static_assert() is supported])
63AC_COMPILE_IFELSE(
64 [AC_LANG_SOURCE([[_Static_assert(1, "Test");]])],
65 [AC_DEFINE([HAVE_STATIC_ASSERT], [1], [Define if _Static_assert() is available])
66 AC_MSG_RESULT([yes])],
67 [AC_MSG_RESULT([no])])
3ef7208e
LDM
68
69#####################################################################
70# --with-
71#####################################################################
72
e79bf83b
KS
73AC_ARG_WITH([rootlibdir],
74 AS_HELP_STRING([--with-rootlibdir=DIR], [rootfs directory to install shared libraries]),
75 [], [with_rootlibdir=$libdir])
76AC_SUBST([rootlibdir], [$with_rootlibdir])
77
b182f8fb
JE
78AC_ARG_WITH([xz],
79 AS_HELP_STRING([--with-xz], [handle Xz-compressed modules @<:@default=disabled@:>@]),
80 [], [with_xz=no])
81AS_IF([test "x$with_xz" != "xno"], [
82 PKG_CHECK_MODULES([liblzma], [liblzma >= 4.99])
83 AC_DEFINE([ENABLE_XZ], [1], [Enable Xz for modules.])
84], [
85 AC_MSG_NOTICE([Xz support not requested])
86])
87
5a51a357
JE
88AC_ARG_WITH([zlib],
89 AS_HELP_STRING([--with-zlib], [handle gzipped modules @<:@default=disabled@:>@]),
90 [], [with_zlib=no])
91AS_IF([test "x$with_zlib" != "xno"], [
7b3a74fc
JE
92 PKG_CHECK_MODULES([zlib], [zlib])
93 AC_DEFINE([ENABLE_ZLIB], [1], [Enable zlib for modules.])
cfb908bf
LDM
94], [
95 AC_MSG_NOTICE([zlib support not requested])
cfb908bf 96])
3d8226ed 97
80cf2c8f
LDM
98AC_ARG_WITH([bashcompletiondir],
99 AS_HELP_STRING([--with-bashcompletiondir=DIR], [Bash completions directory]),
100 [],
101 [AS_IF([$($PKG_CONFIG --exists bash-completion)], [
102 with_bashcompletiondir=$($PKG_CONFIG --variable=completionsdir bash-completion)
103 ] , [
104 with_bashcompletiondir=${datadir}/bash-completion/completions
105 ])])
106AC_SUBST([bashcompletiondir], [$with_bashcompletiondir])
3ef7208e
LDM
107
108#####################################################################
109# --enable-
110#####################################################################
111
112AC_ARG_ENABLE([tools],
113 AS_HELP_STRING([--disable-tools], [disable building tools that provide same functionality as module-init-tools @<:@default=enabled@:>@]),
114 [], enable_tools=yes)
115AM_CONDITIONAL([BUILD_TOOLS], [test "x$enable_tools" = "xyes"])
116
8631552d
CW
117AC_ARG_ENABLE([manpages],
118 AS_HELP_STRING([--disable-manpages], [disable manpages @<:@default=enabled@:>@]),
119 [], enable_manpages=yes)
120AM_CONDITIONAL([BUILD_MANPAGES], [test "x$enable_manpages" = "xyes"])
121
3ef7208e
LDM
122AC_ARG_ENABLE([logging],
123 AS_HELP_STRING([--disable-logging], [disable system logging @<:@default=enabled@:>@]),
124 [], enable_logging=yes)
125AS_IF([test "x$enable_logging" = "xyes"], [
126 AC_DEFINE(ENABLE_LOGGING, [1], [System logging.])
127])
128
ecd40ee4
LDM
129AC_ARG_ENABLE([debug],
130 AS_HELP_STRING([--enable-debug], [enable debug messages @<:@default=disabled@:>@]),
131 [], [enable_debug=no])
132AS_IF([test "x$enable_debug" = "xyes"], [
133 AC_DEFINE(ENABLE_DEBUG, [1], [Debug messages.])
134])
135
3a33a7a5
LDM
136AC_ARG_ENABLE([python],
137 AS_HELP_STRING([--enable-python], [enable Python libkmod bindings @<:@default=disabled@:>@]),
138 [], [enable_python=no])
139AS_IF([test "x$enable_python" = "xyes"], [
140 AM_PATH_PYTHON(,,[:])
141 AC_PATH_PROG([CYTHON], [cython], [:])
142
143 PKG_CHECK_MODULES([PYTHON], [python-${PYTHON_VERSION}],
144 [have_python=yes],
145 [PKG_CHECK_MODULES([PYTHON], [python],
146 [have_python=yes],
147 [have_python=no])])
148
149 AS_IF([test "x$have_python" = xno],
150 [AC_MSG_ERROR([*** python support requested but libraries not found])])
151])
152AM_CONDITIONAL([BUILD_PYTHON], [test "x$enable_python" = "xyes"])
153
3ef7208e
LDM
154m4_ifdef([GTK_DOC_CHECK], [
155GTK_DOC_CHECK([1.14],[--flavour no-tmpl-flat])
156], [
157AM_CONDITIONAL([ENABLE_GTK_DOC], false)])
158
159
160#####################################################################
161# Default CFLAGS and LDFLAGS
162#####################################################################
6068aaae 163
e48f3765
LDM
164CC_CHECK_FLAGS_APPEND(with_cflags, [CFLAGS], [\
165 -pipe \
166 -DANOTHER_BRICK_IN_THE \
167 -Wall \
168 -W \
169 -Wextra \
170 -Wno-inline \
171 -Wvla \
172 -Wundef \
173 -Wformat=2 \
174 -Wlogical-op \
175 -Wsign-compare \
176 -Wformat-security \
177 -Wmissing-include-dirs \
178 -Wformat-nonliteral \
179 -Wold-style-definition \
180 -Wpointer-arith \
181 -Winit-self \
182 -Wdeclaration-after-statement \
183 -Wfloat-equal \
184 -Wmissing-prototypes \
185 -Wstrict-prototypes \
186 -Wredundant-decls \
187 -Wmissing-declarations \
188 -Wmissing-noreturn \
189 -Wshadow \
190 -Wendif-labels \
db62153e 191 -Wstrict-aliasing=3 \
e48f3765
LDM
192 -Wwrite-strings \
193 -Wno-long-long \
194 -Wno-overlength-strings \
195 -Wno-unused-parameter \
196 -Wno-missing-field-initializers \
197 -Wno-unused-result \
198 -Wnested-externs \
199 -Wchar-subscripts \
200 -Wtype-limits \
201 -Wuninitialized \
202 -fno-common \
203 -fdiagnostics-show-option \
b3e0a075 204 -fdiagnostics-color=auto \
e48f3765
LDM
205 -fvisibility=hidden \
206 -ffunction-sections \
207 -fdata-sections])
208AC_SUBST([WARNINGFLAGS], $with_cflags)
209
210
211CC_CHECK_FLAGS_APPEND([with_ldflags], [LDFLAGS], [ \
212 -Wl,--as-needed \
213 -Wl,--gc-sections])
214AC_SUBST([GCLDFLAGS], $with_ldflags)
3ef7208e
LDM
215
216#####################################################################
217# Generate files from *.in
218#####################################################################
219
ecd40ee4
LDM
220AC_CONFIG_HEADERS(config.h)
221AC_CONFIG_FILES([
222 Makefile
904b57d0 223 man/Makefile
646b83b8
LDM
224 libkmod/docs/Makefile
225 libkmod/docs/version.xml
ecd40ee4
LDM
226])
227
3ef7208e
LDM
228
229#####################################################################
646b83b8 230
ecd40ee4
LDM
231AC_OUTPUT
232AC_MSG_RESULT([
233 $PACKAGE $VERSION
80cf2c8f 234 =======
ecd40ee4
LDM
235
236 prefix: ${prefix}
237 sysconfdir: ${sysconfdir}
238 libdir: ${libdir}
e79bf83b 239 rootlibdir: ${rootlibdir}
ecd40ee4 240 includedir: ${includedir}
7c41c2dd 241 bindir: ${bindir}
80cf2c8f 242 Bash completions dir: ${with_bashcompletiondir}
ecd40ee4
LDM
243
244 compiler: ${CC}
e48f3765
LDM
245 cflags: ${with_cflags} ${CFLAGS}
246 ldflags: ${with_ldflags} ${LDFLAGS}
ecd40ee4 247
7c41c2dd 248 tools: ${enable_tools}
3a33a7a5 249 python bindings: ${enable_python}
ecd40ee4 250 logging: ${enable_logging}
b182f8fb 251 compression: xz=${with_xz} zlib=${with_zlib}
ecd40ee4 252 debug: ${enable_debug}
646b83b8 253 doc: ${enable_gtk_doc}
382de85c 254 man: ${enable_manpages}
ecd40ee4 255])