2011-11-21 22:35:15 +08:00
|
|
|
AC_PREREQ(2.60)
|
2011-11-22 00:35:35 +08:00
|
|
|
AC_INIT([libkmod],
|
|
|
|
[0.1],
|
|
|
|
[],
|
|
|
|
[libkmod],
|
|
|
|
[http://git.profusion.mobi/cgit.cgi/lucas/libkmod/])
|
|
|
|
|
|
|
|
AC_CONFIG_SRCDIR([libkmod/libkmod.c])
|
2011-11-21 22:35:15 +08:00
|
|
|
AC_CONFIG_AUX_DIR([build-aux])
|
2011-12-11 08:26:40 +08:00
|
|
|
AM_INIT_AUTOMAKE([check-news foreign 1.11 silent-rules tar-pax dist-bzip2 subdir-objects])
|
2011-11-21 22:35:15 +08:00
|
|
|
AC_PROG_CC_STDC
|
|
|
|
AC_USE_SYSTEM_EXTENSIONS
|
|
|
|
AC_SYS_LARGEFILE
|
|
|
|
AC_CONFIG_MACRO_DIR([m4])
|
|
|
|
AM_SILENT_RULES([yes])
|
|
|
|
LT_INIT([disable-static pic-only])
|
|
|
|
AC_PREFIX_DEFAULT([/usr])
|
|
|
|
|
2011-11-23 03:46:19 +08:00
|
|
|
AC_PROG_CC
|
|
|
|
AC_PROG_CC_C99
|
|
|
|
AC_C_TYPEOF
|
|
|
|
AM_PROG_CC_C_O
|
|
|
|
AC_PROG_GCC_TRADITIONAL
|
|
|
|
|
2011-12-11 08:19:41 +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"])
|
|
|
|
|
2011-11-21 22:35:15 +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.])
|
|
|
|
])
|
|
|
|
|
|
|
|
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.])
|
|
|
|
])
|
|
|
|
|
2011-12-11 08:26:40 +08:00
|
|
|
CC_CHECK_CFLAGS_APPEND([ \
|
2011-12-12 23:39:07 +08:00
|
|
|
-pipe \
|
|
|
|
-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 \
|
|
|
|
-Wcast-align \
|
|
|
|
-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 \
|
|
|
|
-Wp,-D_FORTIFY_SOURCE=2 \
|
|
|
|
-ffast-math \
|
|
|
|
-fno-common \
|
|
|
|
-fdiagnostics-show-option \
|
|
|
|
-fno-strict-aliasing \
|
|
|
|
-fvisibility=hidden \
|
|
|
|
-ffunction-sections \
|
|
|
|
-fdata-sections \
|
|
|
|
-Wl,--as-needed \
|
|
|
|
-Wl,--gc-sections])
|
2011-12-11 08:26:40 +08:00
|
|
|
|
|
|
|
|
2011-11-21 22:35:15 +08:00
|
|
|
AC_CONFIG_HEADERS(config.h)
|
|
|
|
AC_CONFIG_FILES([
|
|
|
|
Makefile
|
2011-11-22 00:35:35 +08:00
|
|
|
libkmod/libkmod.pc
|
2011-11-21 22:35:15 +08:00
|
|
|
])
|
|
|
|
|
|
|
|
AC_OUTPUT
|
|
|
|
AC_MSG_RESULT([
|
|
|
|
$PACKAGE $VERSION
|
|
|
|
========
|
|
|
|
|
|
|
|
prefix: ${prefix}
|
|
|
|
sysconfdir: ${sysconfdir}
|
|
|
|
libdir: ${libdir}
|
|
|
|
includedir: ${includedir}
|
2011-12-12 23:39:07 +08:00
|
|
|
bindir: ${bindir}
|
2011-11-21 22:35:15 +08:00
|
|
|
|
|
|
|
compiler: ${CC}
|
|
|
|
cflags: ${CFLAGS}
|
|
|
|
ldflags: ${LDFLAGS}
|
|
|
|
|
2011-12-12 23:39:07 +08:00
|
|
|
tools: ${enable_tools}
|
2011-11-21 22:35:15 +08:00
|
|
|
logging: ${enable_logging}
|
|
|
|
debug: ${enable_debug}
|
|
|
|
])
|