2015-02-26 13:56:04 +08:00
AC_PREREQ(2.64)
2011-12-13 02:41:38 +08:00
AC_INIT([kmod],
2016-07-20 12:38:42 +08:00
[23],
2011-12-16 14:11:25 +08:00
[linux-modules@vger.kernel.org],
2011-12-13 02:41:38 +08:00
[kmod],
2012-02-24 11:58:20 +08:00
[http://git.kernel.org/?p=utils/kernel/kmod/kmod.git])
2011-11-22 00:35:35 +08:00
AC_CONFIG_SRCDIR([libkmod/libkmod.c])
2015-02-26 13:56:04 +08:00
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_HEADERS(config.h)
2011-11-21 22:35:15 +08:00
AC_CONFIG_AUX_DIR([build-aux])
2015-02-26 13:56:04 +08:00
2011-11-21 22:35:15 +08:00
AC_USE_SYSTEM_EXTENSIONS
AC_SYS_LARGEFILE
AC_PREFIX_DEFAULT([/usr])
2013-11-11 09:41:25 +08:00
AM_MAINTAINER_MODE([enable])
2015-02-26 13:56:04 +08:00
AM_INIT_AUTOMAKE([check-news foreign 1.11 silent-rules tar-pax no-dist-gzip dist-xz subdir-objects color-tests parallel-tests])
AM_SILENT_RULES([yes])
LT_INIT([disable-static pic-only])
2015-03-06 00:03:35 +08:00
DOLT
2011-11-21 22:35:15 +08:00
2015-02-28 03:19:44 +08:00
AS_IF([test "x$enable_static" = "xyes"], [AC_MSG_ERROR([--enable-static is not supported by kmod])])
AS_IF([test "x$enable_largefile" = "xno"], [AC_MSG_ERROR([--disable-largefile is not supported by kmod])])
2013-06-06 22:43:19 +08:00
2012-03-17 21:26:32 +08:00
#####################################################################
# Program checks and configurations
#####################################################################
2011-12-21 21:48:07 +08:00
AC_PROG_SED
AC_PROG_MKDIR_P
2015-02-26 13:56:04 +08:00
AC_PROG_LN_S
2011-12-24 11:45:22 +08:00
PKG_PROG_PKG_CONFIG
2014-02-24 21:52:58 +08:00
AC_PATH_PROG([XSLTPROC], [xsltproc])
2011-12-17 02:08:53 +08:00
2015-02-26 13:56:04 +08:00
AC_PROG_CC_C99
2012-03-17 21:26:32 +08:00
#####################################################################
# Function and structure checks
#####################################################################
2012-02-09 06:29:52 +08:00
AC_CHECK_FUNCS_ONCE(__xstat)
2013-02-12 02:07:52 +08:00
AC_CHECK_FUNCS_ONCE([__secure_getenv secure_getenv])
2013-04-09 15:16:57 +08:00
AC_CHECK_FUNCS_ONCE([finit_module])
2012-02-09 06:29:52 +08:00
2015-02-10 10:45:11 +08:00
CC_CHECK_FUNC_BUILTIN([__builtin_clz])
CC_CHECK_FUNC_BUILTIN([__builtin_types_compatible_p])
2015-02-10 20:41:47 +08:00
CC_CHECK_FUNC_BUILTIN([__builtin_uaddl_overflow], [ ], [ ])
CC_CHECK_FUNC_BUILTIN([__builtin_uaddll_overflow], [ ], [ ])
2015-02-10 10:45:11 +08:00
2012-03-17 21:26:32 +08:00
# dietlibc doesn't have st.st_mtim struct member
AC_CHECK_MEMBERS([struct stat.st_mtim], [], [], [#include <sys/stat.h>])
2014-04-04 19:19:00 +08:00
# musl 1.0 and bionic 4.4 don't have strndupa
AC_CHECK_DECLS_ONCE([strndupa])
2014-09-30 03:18:04 +08:00
# RHEL 5 and older do not have be32toh
AC_CHECK_DECLS_ONCE([be32toh])
2013-02-19 04:02:32 +08:00
# Check kernel headers
AC_CHECK_HEADERS_ONCE([linux/module.h])
2013-09-06 21:27:04 +08:00
AC_MSG_CHECKING([whether _Static_assert() is supported])
AC_COMPILE_IFELSE(
[AC_LANG_SOURCE([[_Static_assert(1, "Test");]])],
[AC_DEFINE([HAVE_STATIC_ASSERT], [1], [Define if _Static_assert() is available])
AC_MSG_RESULT([yes])],
[AC_MSG_RESULT([no])])
2012-03-17 21:26:32 +08:00
2015-02-27 00:02:04 +08:00
AC_MSG_CHECKING([whether _Noreturn is supported])
AC_COMPILE_IFELSE(
[AC_LANG_SOURCE([[_Noreturn int foo(void) { exit(0); }]])],
[AC_DEFINE([HAVE_NORETURN], [1], [Define if _Noreturn is available])
AC_MSG_RESULT([yes])],
[AC_MSG_RESULT([no])])
2012-03-17 21:26:32 +08:00
#####################################################################
# --with-
#####################################################################
2011-12-22 22:40:24 +08:00
AC_ARG_WITH([rootlibdir],
AS_HELP_STRING([--with-rootlibdir=DIR], [rootfs directory to install shared libraries]),
[], [with_rootlibdir=$libdir])
AC_SUBST([rootlibdir], [$with_rootlibdir])
2011-12-24 21:58:30 +08:00
AC_ARG_WITH([xz],
AS_HELP_STRING([--with-xz], [handle Xz-compressed modules @<:@default=disabled@:>@]),
[], [with_xz=no])
AS_IF([test "x$with_xz" != "xno"], [
PKG_CHECK_MODULES([liblzma], [liblzma >= 4.99])
AC_DEFINE([ENABLE_XZ], [1], [Enable Xz for modules.])
], [
AC_MSG_NOTICE([Xz support not requested])
])
2015-06-07 13:44:02 +08:00
CC_FEATURE_APPEND([with_features], [with_xz], [XZ])
2011-12-24 21:58:30 +08:00
2011-12-24 11:45:42 +08:00
AC_ARG_WITH([zlib],
AS_HELP_STRING([--with-zlib], [handle gzipped modules @<:@default=disabled@:>@]),
[], [with_zlib=no])
AS_IF([test "x$with_zlib" != "xno"], [
2011-12-24 11:45:22 +08:00
PKG_CHECK_MODULES([zlib], [zlib])
AC_DEFINE([ENABLE_ZLIB], [1], [Enable zlib for modules.])
2011-12-23 22:03:19 +08:00
], [
AC_MSG_NOTICE([zlib support not requested])
])
2015-06-07 13:44:02 +08:00
CC_FEATURE_APPEND([with_features], [with_zlib], [ZLIB])
2011-12-17 02:08:53 +08:00
2013-07-30 14:47:19 +08:00
AC_ARG_WITH([bashcompletiondir],
AS_HELP_STRING([--with-bashcompletiondir=DIR], [Bash completions directory]),
[],
[AS_IF([$($PKG_CONFIG --exists bash-completion)], [
with_bashcompletiondir=$($PKG_CONFIG --variable=completionsdir bash-completion)
] , [
with_bashcompletiondir=${datadir}/bash-completion/completions
])])
AC_SUBST([bashcompletiondir], [$with_bashcompletiondir])
2012-03-17 21:26:32 +08:00
#####################################################################
# --enable-
#####################################################################
2015-06-07 10:26:31 +08:00
AC_ARG_ENABLE([experimental],
AS_HELP_STRING([--enable-experimental], [enable experimental tools and features. Do not enable it unless you know what you are doing. @<:@default=disabled@:>@]),
[], enable_experimental=no)
AM_CONDITIONAL([BUILD_EXPERIMENTAL], [test "x$enable_experimental" = "xyes"])
AS_IF([test "x$enable_experimental" = "xyes"], [
AC_DEFINE(ENABLE_EXPERIMENTAL, [1], [Experimental features.])
])
2015-06-07 13:44:02 +08:00
CC_FEATURE_APPEND([with_features], [enable_experimental], [EXPERIMENTAL])
2015-06-07 10:26:31 +08:00
2012-03-17 21:26:32 +08:00
AC_ARG_ENABLE([tools],
AS_HELP_STRING([--disable-tools], [disable building tools that provide same functionality as module-init-tools @<:@default=enabled@:>@]),
[], enable_tools=yes)
AM_CONDITIONAL([BUILD_TOOLS], [test "x$enable_tools" = "xyes"])
2012-07-31 00:27:10 +08:00
AC_ARG_ENABLE([manpages],
AS_HELP_STRING([--disable-manpages], [disable manpages @<:@default=enabled@:>@]),
[], enable_manpages=yes)
AM_CONDITIONAL([BUILD_MANPAGES], [test "x$enable_manpages" = "xyes"])
2015-06-01 02:38:47 +08:00
AC_ARG_ENABLE([test-modules],
AS_HELP_STRING([--disable-test-modules], [disable building test modules during make check: cached modules will be used @<:@default=enabled@:>@]),
[], enable_test_modules=yes)
AM_CONDITIONAL([BUILD_MODULES], [test "x$enable_test_modules" = "xyes"])
2012-03-17 21:26:32 +08:00
AC_ARG_ENABLE([logging],
AS_HELP_STRING([--disable-logging], [disable system logging @<:@default=enabled@:>@]),
[], enable_logging=yes)
AS_IF([test "x$enable_logging" = "xyes"], [
AC_DEFINE(ENABLE_LOGGING, [1], [System logging.])
])
2011-11-21 22:35:15 +08:00
AC_ARG_ENABLE([debug],
AS_HELP_STRING([--enable-debug], [enable debug messages @<:@default=disabled@:>@]),
[], [enable_debug=no])
AS_IF([test "x$enable_debug" = "xyes"], [
AC_DEFINE(ENABLE_DEBUG, [1], [Debug messages.])
])
2014-03-24 19:27:19 +08:00
AC_ARG_ENABLE([python],
AS_HELP_STRING([--enable-python], [enable Python libkmod bindings @<:@default=disabled@:>@]),
[], [enable_python=no])
AS_IF([test "x$enable_python" = "xyes"], [
AM_PATH_PYTHON(,,[:])
AC_PATH_PROG([CYTHON], [cython], [:])
PKG_CHECK_MODULES([PYTHON], [python-${PYTHON_VERSION}],
[have_python=yes],
[PKG_CHECK_MODULES([PYTHON], [python],
[have_python=yes],
[have_python=no])])
AS_IF([test "x$have_python" = xno],
[AC_MSG_ERROR([*** python support requested but libraries not found])])
])
AM_CONDITIONAL([BUILD_PYTHON], [test "x$enable_python" = "xyes"])
2015-01-08 05:17:15 +08:00
AC_ARG_ENABLE([coverage],
AS_HELP_STRING([--enable-coverage], [enable test coverage @<:@default=disabled@:>@]),
[], [enable_coverage=no])
AS_IF([test "x$enable_coverage" = "xyes"], [
AC_CHECK_PROG(have_coverage, [lcov], [yes], [no])
AS_IF([test "x$have_coverage" = xno],[
AC_MSG_ERROR([*** lcov support requested but the program was not found])
], [
lcov_version_major="`lcov --version | cut -d ' ' -f 4 | cut -d '.' -f 1`"
lcov_version_minor="`lcov --version | cut -d ' ' -f 4 | cut -d '.' -f 2`"
AS_IF([test "$lcov_version_major" -lt 1 -o "$lcov_version_minor" -lt 10], [
AC_MSG_ERROR([*** lcov version is too old. 1.10 required])
], [
have_coverage=yes
CC_CHECK_FLAGS_APPEND([with_coverage_cflags], [CFLAGS], [\
-fprofile-arcs \
-ftest-coverage])
])
])
])
AM_CONDITIONAL([ENABLE_COVERAGE], [test "x$enable_coverage" = "xyes"])
2012-03-17 21:26:32 +08:00
m4_ifdef([GTK_DOC_CHECK], [
GTK_DOC_CHECK([1.14],[--flavour no-tmpl-flat])
], [
AM_CONDITIONAL([ENABLE_GTK_DOC], false)])
#####################################################################
# Default CFLAGS and LDFLAGS
#####################################################################
2012-01-17 22:10:42 +08:00
2012-03-18 02:12:44 +08:00
CC_CHECK_FLAGS_APPEND(with_cflags, [CFLAGS], [\
-pipe \
-DANOTHER_BRICK_IN_THE \
-Wall \
-W \
-Wextra \
-Wno-inline \
-Wvla \
-Wundef \
-Wformat=2 \
-Wlogical-op \
-Wsign-compare \
-Wformat-security \
-Wmissing-include-dirs \
-Wformat-nonliteral \
-Wold-style-definition \
-Wpointer-arith \
-Winit-self \
-Wdeclaration-after-statement \
-Wfloat-equal \
-Wmissing-prototypes \
-Wstrict-prototypes \
-Wredundant-decls \
-Wmissing-declarations \
-Wmissing-noreturn \
-Wshadow \
-Wendif-labels \
2014-03-25 10:50:24 +08:00
-Wstrict-aliasing=3 \
2012-03-18 02:12:44 +08:00
-Wwrite-strings \
-Wno-long-long \
-Wno-overlength-strings \
-Wno-unused-parameter \
-Wno-missing-field-initializers \
-Wno-unused-result \
-Wnested-externs \
-Wchar-subscripts \
-Wtype-limits \
-Wuninitialized \
-fno-common \
-fdiagnostics-show-option \
-fvisibility=hidden \
-ffunction-sections \
-fdata-sections])
2015-01-26 09:28:46 +08:00
AC_SUBST([OUR_CFLAGS], "$with_cflags $with_coverage_cflags")
2012-03-18 02:12:44 +08:00
2015-01-27 05:07:12 +08:00
2012-03-18 02:12:44 +08:00
CC_CHECK_FLAGS_APPEND([with_ldflags], [LDFLAGS], [ \
-Wl,--as-needed \
2015-01-26 09:29:50 +08:00
-Wl,--no-undefined \
2012-03-18 02:12:44 +08:00
-Wl,--gc-sections])
2015-01-03 02:32:03 +08:00
AC_SUBST([OUR_LDFLAGS], $with_ldflags)
2012-03-17 21:26:32 +08:00
2015-06-07 13:44:02 +08:00
AC_DEFINE_UNQUOTED(KMOD_FEATURES, ["$with_features"], [Features in this build])
2012-03-17 21:26:32 +08:00
#####################################################################
# Generate files from *.in
#####################################################################
2011-11-21 22:35:15 +08:00
AC_CONFIG_FILES([
Makefile
2012-01-12 21:48:21 +08:00
man/Makefile
2012-01-09 14:20:55 +08:00
libkmod/docs/Makefile
libkmod/docs/version.xml
2011-11-21 22:35:15 +08:00
])
2012-03-17 21:26:32 +08:00
#####################################################################
2012-01-09 14:20:55 +08:00
2011-11-21 22:35:15 +08:00
AC_OUTPUT
AC_MSG_RESULT([
$PACKAGE $VERSION
2013-07-30 14:47:19 +08:00
=======
2011-11-21 22:35:15 +08:00
prefix: ${prefix}
sysconfdir: ${sysconfdir}
libdir: ${libdir}
2011-12-22 22:40:24 +08:00
rootlibdir: ${rootlibdir}
2011-11-21 22:35:15 +08:00
includedir: ${includedir}
2011-12-12 23:39:07 +08:00
bindir: ${bindir}
2013-07-30 14:47:19 +08:00
Bash completions dir: ${with_bashcompletiondir}
2011-11-21 22:35:15 +08:00
compiler: ${CC}
2012-03-18 02:12:44 +08:00
cflags: ${with_cflags} ${CFLAGS}
ldflags: ${with_ldflags} ${LDFLAGS}
2011-11-21 22:35:15 +08:00
2015-06-07 10:26:31 +08:00
experimental features: ${enable_experimental}
2011-12-12 23:39:07 +08:00
tools: ${enable_tools}
2014-03-24 19:27:19 +08:00
python bindings: ${enable_python}
2011-11-21 22:35:15 +08:00
logging: ${enable_logging}
2011-12-24 21:58:30 +08:00
compression: xz=${with_xz} zlib=${with_zlib}
2011-11-21 22:35:15 +08:00
debug: ${enable_debug}
2015-01-08 05:17:15 +08:00
coverage: ${enable_coverage}
2012-01-09 14:20:55 +08:00
doc: ${enable_gtk_doc}
2012-07-31 20:51:48 +08:00
man: ${enable_manpages}
2015-06-01 02:38:47 +08:00
test-modules: ${enable_test_modules}
2015-06-07 13:44:02 +08:00
features: ${with_features}
2011-11-21 22:35:15 +08:00
])