2011-11-21 21:35:15 +07:00
|
|
|
AC_PREREQ(2.60)
|
2011-12-13 01:41:38 +07:00
|
|
|
AC_INIT([kmod],
|
2012-02-07 05:34:33 +07:00
|
|
|
[5],
|
2011-12-16 13:11:25 +07:00
|
|
|
[linux-modules@vger.kernel.org],
|
2011-12-13 01:41:38 +07:00
|
|
|
[kmod],
|
|
|
|
[http://git.profusion.mobi/cgit.cgi/kmod.git/])
|
2011-11-21 23:35:35 +07:00
|
|
|
|
|
|
|
AC_CONFIG_SRCDIR([libkmod/libkmod.c])
|
2011-11-21 21:35:15 +07:00
|
|
|
AC_CONFIG_AUX_DIR([build-aux])
|
2011-12-20 22:28:27 +07:00
|
|
|
AM_INIT_AUTOMAKE([check-news foreign 1.11 silent-rules
|
2012-01-25 05:59:54 +07:00
|
|
|
tar-pax no-dist-gzip dist-xz subdir-objects color-tests])
|
2011-11-21 21:35:15 +07:00
|
|
|
AC_PROG_CC_STDC
|
|
|
|
AC_USE_SYSTEM_EXTENSIONS
|
|
|
|
AC_SYS_LARGEFILE
|
|
|
|
AC_CONFIG_MACRO_DIR([m4])
|
2011-12-15 00:56:10 +07:00
|
|
|
m4_ifndef([AM_SILENT_RULES], [m4_define([AM_SILENT_RULES],[])])
|
2011-11-21 21:35:15 +07:00
|
|
|
AM_SILENT_RULES([yes])
|
|
|
|
LT_INIT([disable-static pic-only])
|
|
|
|
AC_PREFIX_DEFAULT([/usr])
|
|
|
|
|
2011-11-23 02:46:19 +07:00
|
|
|
AC_PROG_CC
|
|
|
|
AC_PROG_CC_C99
|
|
|
|
AC_C_TYPEOF
|
|
|
|
AM_PROG_CC_C_O
|
|
|
|
AC_PROG_GCC_TRADITIONAL
|
2011-12-18 10:25:06 +07:00
|
|
|
AC_C_BIGENDIAN
|
2011-11-23 02:46:19 +07:00
|
|
|
|
2011-12-21 20:48:07 +07:00
|
|
|
AC_PROG_SED
|
|
|
|
AC_PROG_MKDIR_P
|
2012-01-12 20:48:21 +07:00
|
|
|
AC_PATH_PROG([XSLTPROC], [xsltproc])
|
2011-12-24 10:45:22 +07:00
|
|
|
PKG_PROG_PKG_CONFIG
|
2011-12-17 01:08:53 +07:00
|
|
|
|
2012-02-09 05:29:52 +07:00
|
|
|
AC_CHECK_FUNCS_ONCE(__xstat)
|
|
|
|
|
2011-12-20 23:58:05 +07:00
|
|
|
AC_ARG_WITH([rootprefix],
|
|
|
|
AS_HELP_STRING([--with-rootprefix=DIR], [rootfs directory prefix for config files and kernel modules]),
|
2011-12-21 01:52:21 +07:00
|
|
|
[], [with_rootprefix=""])
|
2011-12-20 23:58:05 +07:00
|
|
|
AC_SUBST([rootprefix], [$with_rootprefix])
|
|
|
|
|
2011-12-22 21:40:24 +07: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-11 07:19:41 +07: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"])
|
|
|
|
|
2011-11-21 21:35:15 +07: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-12-24 20:58:30 +07: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])
|
|
|
|
])
|
|
|
|
|
2011-12-24 10:45:42 +07: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 10:45:22 +07:00
|
|
|
PKG_CHECK_MODULES([zlib], [zlib])
|
|
|
|
AC_DEFINE([ENABLE_ZLIB], [1], [Enable zlib for modules.])
|
2011-12-23 21:03:19 +07:00
|
|
|
], [
|
|
|
|
AC_MSG_NOTICE([zlib support not requested])
|
|
|
|
])
|
2011-12-17 01:08:53 +07:00
|
|
|
|
2011-11-21 21:35:15 +07: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.])
|
|
|
|
])
|
|
|
|
|
2012-01-17 21:10:42 +07:00
|
|
|
# dietlibc doesn't have st.st_mtim struct member
|
|
|
|
AC_CHECK_MEMBERS([struct stat.st_mtim], [], [], [#include <sys/stat.h>])
|
|
|
|
|
2011-12-11 07:26:40 +07:00
|
|
|
CC_CHECK_CFLAGS_APPEND([ \
|
2011-12-12 22:39:07 +07:00
|
|
|
-pipe \
|
2011-12-22 12:50:54 +07:00
|
|
|
-DANOTHER_BRICK_IN_THE \
|
2011-12-12 22:39:07 +07:00
|
|
|
-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 \
|
|
|
|
-Wstrict-aliasing=2 \
|
|
|
|
-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 \
|
|
|
|
-Wl,--as-needed \
|
|
|
|
-Wl,--gc-sections])
|
2011-12-11 07:26:40 +07:00
|
|
|
|
2011-11-21 21:35:15 +07:00
|
|
|
AC_CONFIG_HEADERS(config.h)
|
|
|
|
AC_CONFIG_FILES([
|
|
|
|
Makefile
|
2012-01-12 20:48:21 +07:00
|
|
|
man/Makefile
|
2012-01-09 13:20:55 +07:00
|
|
|
libkmod/docs/Makefile
|
|
|
|
libkmod/docs/version.xml
|
2011-11-21 21:35:15 +07:00
|
|
|
])
|
|
|
|
|
2012-01-10 21:55:13 +07:00
|
|
|
m4_ifdef([GTK_DOC_CHECK], [
|
2012-01-09 13:20:55 +07:00
|
|
|
GTK_DOC_CHECK([1.14],[--flavour no-tmpl-flat])
|
2012-01-10 21:55:13 +07:00
|
|
|
], [
|
|
|
|
AM_CONDITIONAL([ENABLE_GTK_DOC], false)])
|
2012-01-09 13:20:55 +07:00
|
|
|
|
2011-11-21 21:35:15 +07:00
|
|
|
AC_OUTPUT
|
|
|
|
AC_MSG_RESULT([
|
|
|
|
$PACKAGE $VERSION
|
2012-01-09 22:00:28 +07:00
|
|
|
======
|
2011-11-21 21:35:15 +07:00
|
|
|
|
|
|
|
prefix: ${prefix}
|
2011-12-20 23:58:05 +07:00
|
|
|
rootprefix: ${rootprefix}
|
2011-11-21 21:35:15 +07:00
|
|
|
sysconfdir: ${sysconfdir}
|
|
|
|
libdir: ${libdir}
|
2011-12-22 21:40:24 +07:00
|
|
|
rootlibdir: ${rootlibdir}
|
2011-11-21 21:35:15 +07:00
|
|
|
includedir: ${includedir}
|
2011-12-12 22:39:07 +07:00
|
|
|
bindir: ${bindir}
|
2011-11-21 21:35:15 +07:00
|
|
|
|
|
|
|
compiler: ${CC}
|
|
|
|
cflags: ${CFLAGS}
|
|
|
|
ldflags: ${LDFLAGS}
|
|
|
|
|
2011-12-12 22:39:07 +07:00
|
|
|
tools: ${enable_tools}
|
2011-11-21 21:35:15 +07:00
|
|
|
logging: ${enable_logging}
|
2011-12-24 20:58:30 +07:00
|
|
|
compression: xz=${with_xz} zlib=${with_zlib}
|
2011-11-21 21:35:15 +07:00
|
|
|
debug: ${enable_debug}
|
2012-01-09 13:20:55 +07:00
|
|
|
doc: ${enable_gtk_doc}
|
2011-11-21 21:35:15 +07:00
|
|
|
])
|