blob: 3be31982bdd00f576b6218b99a995f02f58f3baf [file] [log] [blame]
Lucas De Marchiecd40ee2011-11-21 12:35:15 -02001AC_PREREQ(2.60)
Lucas De Marchicb48c9b2011-12-12 16:41:38 -02002AC_INIT([kmod],
Lucas De Marchif9e21672014-11-16 10:24:50 -02003 [19],
Lucas De Marchie17cc3a2011-12-16 04:11:25 -02004 [linux-modules@vger.kernel.org],
Lucas De Marchicb48c9b2011-12-12 16:41:38 -02005 [kmod],
Lucas De Marchibb05bc82012-02-24 01:58:20 -02006 [http://git.kernel.org/?p=utils/kernel/kmod/kmod.git])
Lucas De Marchi586fc302011-11-21 14:35:35 -02007
8AC_CONFIG_SRCDIR([libkmod/libkmod.c])
Lucas De Marchiecd40ee2011-11-21 12:35:15 -02009AC_CONFIG_AUX_DIR([build-aux])
Jan Engelhardta597c8b2011-12-20 16:28:27 +010010AM_INIT_AUTOMAKE([check-news foreign 1.11 silent-rules
Lucas De Marchi8edd5bb2013-04-09 11:59:33 -030011 tar-pax no-dist-gzip dist-xz subdir-objects color-tests parallel-tests])
Lucas De Marchiecd40ee2011-11-21 12:35:15 -020012AC_PROG_CC_STDC
13AC_USE_SYSTEM_EXTENSIONS
14AC_SYS_LARGEFILE
15AC_CONFIG_MACRO_DIR([m4])
Luis Felipe Strano Moraesfe8bf3b2011-12-14 15:56:10 -020016m4_ifndef([AM_SILENT_RULES], [m4_define([AM_SILENT_RULES],[])])
Lucas De Marchiecd40ee2011-11-21 12:35:15 -020017AM_SILENT_RULES([yes])
18LT_INIT([disable-static pic-only])
19AC_PREFIX_DEFAULT([/usr])
Anders Olofssonf5cc26c2013-11-10 23:41:25 -020020AM_MAINTAINER_MODE([enable])
Lucas De Marchiecd40ee2011-11-21 12:35:15 -020021
Lucas De Marchib7016152013-06-06 11:43:19 -030022AS_IF([test "x$enable_static" = "xyes"],
23 [AC_MSG_ERROR([--enable-static is not supported by kmod])])
24
25
Lucas De Marchi3ef72082012-03-17 10:26:32 -030026#####################################################################
27# Program checks and configurations
28#####################################################################
29
Lucas De Marchi648a8422011-11-22 17:46:19 -020030AC_PROG_CC
31AC_PROG_CC_C99
Lucas De Marchi648a8422011-11-22 17:46:19 -020032AM_PROG_CC_C_O
33AC_PROG_GCC_TRADITIONAL
Gustavo Sverzut Barbieri708624a2011-12-18 01:25:06 -020034AC_C_BIGENDIAN
Lucas De Marchi648a8422011-11-22 17:46:19 -020035
Kay Sievers9faa7b32011-12-21 11:48:07 -020036AC_PROG_SED
37AC_PROG_MKDIR_P
Jan Engelhardt7b3a74f2011-12-24 04:45:22 +010038PKG_PROG_PKG_CONFIG
Lucas De Marchibccb4b22014-02-24 10:52:58 -030039AC_PATH_PROG([XSLTPROC], [xsltproc])
Gustavo Sverzut Barbieri3d8226e2011-12-16 16:08:53 -020040
Lucas De Marchi3ef72082012-03-17 10:26:32 -030041
42#####################################################################
43# Function and structure checks
44#####################################################################
45
Lucas De Marchid005aeb2012-02-08 20:29:52 -020046AC_CHECK_FUNCS_ONCE(__xstat)
Cristian Rodríguez41a51c22013-02-11 15:07:52 -030047AC_CHECK_FUNCS_ONCE([__secure_getenv secure_getenv])
Lucas De Marchi55112d12013-04-09 04:16:57 -030048AC_CHECK_FUNCS_ONCE([finit_module])
Lucas De Marchid005aeb2012-02-08 20:29:52 -020049
Lucas De Marchi3ef72082012-03-17 10:26:32 -030050# dietlibc doesn't have st.st_mtim struct member
51AC_CHECK_MEMBERS([struct stat.st_mtim], [], [], [#include <sys/stat.h>])
52
Lucas De Marchi04c09562014-04-04 08:19:00 -030053# musl 1.0 and bionic 4.4 don't have strndupa
54AC_CHECK_DECLS_ONCE([strndupa])
55
Randy MacLeod9b34db12014-09-29 21:18:04 +020056# RHEL 5 and older do not have be32toh
57AC_CHECK_DECLS_ONCE([be32toh])
58
Kees Cook144d1822013-02-18 12:02:32 -080059# Check kernel headers
60AC_CHECK_HEADERS_ONCE([linux/module.h])
61
Thomas Petazzonidc8ed092013-09-06 15:27:04 +020062AC_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])])
Lucas De Marchi3ef72082012-03-17 10:26:32 -030068
69#####################################################################
70# --with-
71#####################################################################
72
Kay Sieverse79bf832011-12-22 15:40:24 +010073AC_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
Jan Engelhardtb182f8f2011-12-24 14:58:30 +010078AC_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
Jan Engelhardt5a51a352011-12-24 04:45:42 +010088AC_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"], [
Jan Engelhardt7b3a74f2011-12-24 04:45:22 +010092 PKG_CHECK_MODULES([zlib], [zlib])
93 AC_DEFINE([ENABLE_ZLIB], [1], [Enable zlib for modules.])
Lucas De Marchicfb908b2011-12-23 12:03:19 -020094], [
95 AC_MSG_NOTICE([zlib support not requested])
Lucas De Marchicfb908b2011-12-23 12:03:19 -020096])
Gustavo Sverzut Barbieri3d8226e2011-12-16 16:08:53 -020097
Lucas De Marchi80cf2c82013-07-30 03:47:19 -030098AC_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])
Lucas De Marchi3ef72082012-03-17 10:26:32 -0300107
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
Colin Walters86315522012-07-30 12:27:10 -0400117AC_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
Lucas De Marchi3ef72082012-03-17 10:26:32 -0300122AC_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
Lucas De Marchiecd40ee2011-11-21 12:35:15 -0200129AC_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
Lucas De Marchi3a33a7a2014-03-24 08:27:19 -0300136AC_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
Lucas De Marchi3ef72082012-03-17 10:26:32 -0300154m4_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#####################################################################
Lucas De Marchi6068aaa2012-01-17 12:10:42 -0200163
Lucas De Marchie48f3762012-03-17 15:12:44 -0300164CC_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 \
Lucas De Marchidb621532014-03-24 23:50:24 -0300191 -Wstrict-aliasing=3 \
Lucas De Marchie48f3762012-03-17 15:12:44 -0300192 -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 \
204 -fvisibility=hidden \
205 -ffunction-sections \
206 -fdata-sections])
Lucas De Marchi84aaaed2015-01-02 16:32:03 -0200207AC_SUBST([OUR_CFLAGS], $with_cflags)
Randy Witt1701b1b2012-03-16 01:01:18 -0400208
Gustavo Sverzut Barbieri822ce232011-12-10 22:26:40 -0200209
Lucas De Marchie48f3762012-03-17 15:12:44 -0300210CC_CHECK_FLAGS_APPEND([with_ldflags], [LDFLAGS], [ \
211 -Wl,--as-needed \
212 -Wl,--gc-sections])
Lucas De Marchi84aaaed2015-01-02 16:32:03 -0200213AC_SUBST([OUR_LDFLAGS], $with_ldflags)
Lucas De Marchi3ef72082012-03-17 10:26:32 -0300214
215#####################################################################
216# Generate files from *.in
217#####################################################################
218
Lucas De Marchiecd40ee2011-11-21 12:35:15 -0200219AC_CONFIG_HEADERS(config.h)
220AC_CONFIG_FILES([
221 Makefile
Lucas De Marchi904b57d2012-01-12 11:48:21 -0200222 man/Makefile
Lucas De Marchi646b83b2012-01-09 04:20:55 -0200223 libkmod/docs/Makefile
224 libkmod/docs/version.xml
Lucas De Marchiecd40ee2011-11-21 12:35:15 -0200225])
226
Lucas De Marchi3ef72082012-03-17 10:26:32 -0300227
228#####################################################################
Lucas De Marchi646b83b2012-01-09 04:20:55 -0200229
Lucas De Marchiecd40ee2011-11-21 12:35:15 -0200230AC_OUTPUT
231AC_MSG_RESULT([
232 $PACKAGE $VERSION
Lucas De Marchi80cf2c82013-07-30 03:47:19 -0300233 =======
Lucas De Marchiecd40ee2011-11-21 12:35:15 -0200234
235 prefix: ${prefix}
236 sysconfdir: ${sysconfdir}
237 libdir: ${libdir}
Kay Sieverse79bf832011-12-22 15:40:24 +0100238 rootlibdir: ${rootlibdir}
Lucas De Marchiecd40ee2011-11-21 12:35:15 -0200239 includedir: ${includedir}
Lucas De Marchi7c41c2d2011-12-12 13:39:07 -0200240 bindir: ${bindir}
Lucas De Marchi80cf2c82013-07-30 03:47:19 -0300241 Bash completions dir: ${with_bashcompletiondir}
Lucas De Marchiecd40ee2011-11-21 12:35:15 -0200242
243 compiler: ${CC}
Lucas De Marchie48f3762012-03-17 15:12:44 -0300244 cflags: ${with_cflags} ${CFLAGS}
245 ldflags: ${with_ldflags} ${LDFLAGS}
Lucas De Marchiecd40ee2011-11-21 12:35:15 -0200246
Lucas De Marchi7c41c2d2011-12-12 13:39:07 -0200247 tools: ${enable_tools}
Lucas De Marchi3a33a7a2014-03-24 08:27:19 -0300248 python bindings: ${enable_python}
Lucas De Marchiecd40ee2011-11-21 12:35:15 -0200249 logging: ${enable_logging}
Jan Engelhardtb182f8f2011-12-24 14:58:30 +0100250 compression: xz=${with_xz} zlib=${with_zlib}
Lucas De Marchiecd40ee2011-11-21 12:35:15 -0200251 debug: ${enable_debug}
Lucas De Marchi646b83b2012-01-09 04:20:55 -0200252 doc: ${enable_gtk_doc}
Lucas De Marchi382de852012-07-31 09:51:48 -0300253 man: ${enable_manpages}
Lucas De Marchiecd40ee2011-11-21 12:35:15 -0200254])