2011-03-30 18:03:56 +04:00
AC_INIT([udev], [168], [linux-hotplug@vger.kernel.org])
2008-07-30 03:45:23 +04:00
AC_PREREQ(2.60)
2010-03-11 16:05:42 +03:00
AM_INIT_AUTOMAKE([check-news foreign 1.10 dist-bzip2 subdir-objects])
2009-06-20 05:57:26 +04:00
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
2008-07-30 03:45:23 +04:00
AC_DISABLE_STATIC
2009-02-26 16:17:04 +03:00
AC_USE_SYSTEM_EXTENSIONS
2008-07-30 03:45:23 +04:00
AC_SYS_LARGEFILE
2009-02-26 16:11:43 +03:00
AC_CONFIG_MACRO_DIR([m4])
2009-08-09 00:51:18 +04:00
LT_INIT
2009-06-17 13:56:52 +04:00
AC_PROG_AWK
2009-06-15 15:22:21 +04:00
GTK_DOC_CHECK(1.10)
2008-12-29 08:20:17 +03:00
AC_PREFIX_DEFAULT([/usr])
2008-07-30 03:45:23 +04:00
AC_PATH_PROG([XSLTPROC], [xsltproc])
2010-12-15 10:57:46 +03:00
AC_SEARCH_LIBS([clock_gettime], [rt], [], [AC_MSG_ERROR([POSIX RT library not found])])
2009-06-17 04:25:07 +04:00
AC_ARG_WITH([rootlibdir],
AS_HELP_STRING([--with-rootlibdir=DIR], [rootfs directory to install shared libraries]),
[], [with_rootlibdir=$libdir])
2009-07-06 01:56:24 +04:00
AC_SUBST([rootlib_execdir], [$with_rootlibdir])
2008-07-30 03:45:23 +04:00
2009-06-17 04:25:07 +04:00
AC_ARG_WITH([selinux],
2009-06-14 19:53:15 +04:00
AS_HELP_STRING([--with-selinux], [enable SELinux support]),
2009-06-17 04:25:07 +04:00
[], [with_selinux=no])
2008-07-30 03:45:23 +04:00
if test "x$with_selinux" = xyes; then
LIBS_save=$LIBS
AC_CHECK_LIB(selinux, getprevcon,
[],
AC_MSG_ERROR([SELinux selected but libselinux not found]))
LIBS=$LIBS_save
2008-12-16 18:17:53 +03:00
SELINUX_LIBS="-lselinux -lsepol"
2009-06-14 19:53:15 +04:00
AC_DEFINE(WITH_SELINUX, [1] ,[SELinux support.])
2008-07-30 03:45:23 +04:00
fi
AC_SUBST([SELINUX_LIBS])
2009-06-14 19:53:15 +04:00
AM_CONDITIONAL(WITH_SELINUX, [test "x$with_selinux" = xyes])
2008-07-30 03:45:23 +04:00
2009-06-17 04:25:07 +04:00
AC_ARG_ENABLE([debug],
2009-06-14 19:53:15 +04:00
AS_HELP_STRING([--enable-debug], [enable debug messages]),
2009-06-17 04:25:07 +04:00
[], [enable_debug=no])
2008-07-30 03:45:23 +04:00
if test "x$enable_debug" = "xyes"; then
2009-06-14 19:53:15 +04:00
AC_DEFINE(ENABLE_DEBUG, [1], [Debug messages.])
2008-07-30 03:45:23 +04:00
fi
2009-06-17 04:25:07 +04:00
AC_ARG_ENABLE([logging],
2009-06-14 19:53:15 +04:00
AS_HELP_STRING([--disable-logging], [disable system logging]),
2008-07-30 03:45:23 +04:00
[], enable_logging=yes)
2009-06-14 19:53:15 +04:00
if test "x$enable_logging" = "xyes"; then
AC_DEFINE(ENABLE_LOGGING, [1], [System logging.])
2008-07-30 03:45:23 +04:00
fi
2010-04-24 23:38:37 +04:00
AC_ARG_WITH(firmware-path,
AS_HELP_STRING([--with-firmware-path=DIR[[[:DIR[...]]]]],
[Firmware search path (default=/lib/firmware/updates:/lib/firmware)]),
2010-06-25 12:30:55 +04:00
[], [with_firmware_path="/lib/firmware/updates:/lib/firmware"])
2010-04-24 23:38:37 +04:00
OLD_IFS=$IFS
IFS=:
2011-04-29 16:27:11 +04:00
for i in $with_firmware_path; do
2010-04-24 23:38:37 +04:00
if test "x${FIRMWARE_PATH}" = "x"; then
FIRMWARE_PATH="\\\"${i}/\\\""
else
FIRMWARE_PATH="${FIRMWARE_PATH}, \\\"${i}/\\\""
fi
done
IFS=$OLD_IFS
AC_SUBST([FIRMWARE_PATH], [$FIRMWARE_PATH])
2010-06-25 12:30:55 +04:00
AC_ARG_WITH([systemdsystemunitdir],
AS_HELP_STRING([--with-systemdsystemunitdir=DIR], [Directory for systemd service files]),
[], [with_systemdsystemunitdir=$($PKG_CONFIG --variable=systemdsystemunitdir systemd)])
2010-08-27 06:10:03 +04:00
if test "x$with_systemdsystemunitdir" != xno; then
2011-04-29 16:27:11 +04:00
AC_SUBST([systemdsystemunitdir], [$with_systemdsystemunitdir])
2010-08-27 06:10:03 +04:00
fi
AM_CONDITIONAL(WITH_SYSTEMD, [test -n "$with_systemdsystemunitdir" -a "x$with_systemdsystemunitdir" != xno ])
2010-06-25 12:30:55 +04:00
2011-04-29 16:27:11 +04:00
# ------------------------------------------------------------------------------
# rule_generator - persistent network and optical device rule generator
# ------------------------------------------------------------------------------
AC_ARG_ENABLE([hwdb],
AS_HELP_STRING([--disable-rule_generator], [disable persistent network, cdrom support]),
[], [enable_rule_generator=yes])
AM_CONDITIONAL([ENABLE_RULE_GENERATOR], [test "x$enable_rule_genarator" = xyes])
2009-06-16 22:57:28 +04:00
2011-04-29 16:27:11 +04:00
# ------------------------------------------------------------------------------
# usb/pci-db - read vendor/device string database
# ------------------------------------------------------------------------------
AC_ARG_ENABLE([hwdb],
AS_HELP_STRING([--disable-hwdb], [disable hardware database support]),
[], [enable_hwdb=yes])
if test "x$enable_hwdb" = xyes; then
2010-06-02 19:35:44 +04:00
if test "x$cross_compiling" = "xno" ; then
AC_CHECK_FILES([/usr/share/pci.ids], [pciids=/usr/share/pci.ids])
AC_CHECK_FILES([/usr/share/hwdata/pci.ids], [pciids=/usr/share/hwdata/pci.ids])
AC_CHECK_FILES([/usr/share/misc/pci.ids], [pciids=/usr/share/misc/pci.ids])
fi
2011-04-29 16:27:11 +04:00
PKG_CHECK_MODULES(USBUTILS, usbutils >= 0.82)
AC_SUBST([USB_DATABASE], [$($PKG_CONFIG --variable=usbids usbutils)])
2009-06-16 22:57:28 +04:00
AC_ARG_WITH(pci-ids-path,
2010-06-02 19:35:44 +04:00
[AS_HELP_STRING([--with-pci-ids-path=DIR], [Path to pci.ids file])],
2009-06-16 22:57:28 +04:00
[PCI_DATABASE=${withval}],
[if test -n "$pciids" ; then
PCI_DATABASE="$pciids"
else
AC_MSG_ERROR([pci.ids not found, try --with-pci-ids-path=])
fi])
2010-06-02 19:35:44 +04:00
AC_MSG_CHECKING([for PCI database location])
AC_MSG_RESULT([$PCI_DATABASE])
2009-06-16 22:57:28 +04:00
AC_SUBST(PCI_DATABASE)
2011-04-29 16:27:11 +04:00
fi
AM_CONDITIONAL([ENABLE_HWDB], [test "x$enable_hwdb" = xyes])
2010-01-25 10:22:47 +03:00
2011-04-29 16:27:11 +04:00
# ------------------------------------------------------------------------------
# udev_acl - apply ACLs for users with local forground sessions
# ------------------------------------------------------------------------------
AC_ARG_ENABLE([udev_acl],
AS_HELP_STRING([--disable-udev_acl], [disable local user acl permissions support]),
[], [enable_udev_acl=yes])
if test "x$enable_udev_acl" = xyes; then
AC_CHECK_LIB([acl], [acl_init], [:], AC_MSG_ERROR([libacl not found]))
AC_CHECK_HEADER([acl/libacl.h], [:], AC_MSG_ERROR([libacl header not found]))
PKG_CHECK_MODULES([GLIB], [glib-2.0 >= 2.22.0 gobject-2.0 >= 2.22.0])
AC_SUBST([GLIB_CFLAGS])
AC_SUBST([GLIB_LIBS])
2009-06-16 19:43:12 +04:00
fi
2011-04-29 16:27:11 +04:00
AM_CONDITIONAL([ENABLE_UDEV_ACL], [test "x$enable_udev_acl" = xyes])
# ------------------------------------------------------------------------------
# GUdev - libudev gobject interface
# ------------------------------------------------------------------------------
AC_ARG_ENABLE([gudev],
AS_HELP_STRING([--disable-gudev], [disable Gobject libudev support]),
[], [enable_gudev=yes])
if test "x$enable_gudev" = xyes; then
PKG_CHECK_MODULES([GLIB], [glib-2.0 >= 2.22.0 gobject-2.0 >= 2.22.0])
AC_SUBST([GLIB_CFLAGS])
AC_SUBST([GLIB_LIBS])
2009-06-16 19:43:12 +04:00
2009-06-16 19:52:15 +04:00
PKG_CHECK_MODULES([INTROSPECTION], [gobject-introspection-1.0 >= 0.6.2])
AC_SUBST([G_IR_SCANNER], [$($PKG_CONFIG --variable=g_ir_scanner gobject-introspection-1.0)])
AC_SUBST([G_IR_COMPILER], [$($PKG_CONFIG --variable=g_ir_compiler gobject-introspection-1.0)])
AC_SUBST([G_IR_GENERATE], [$($PKG_CONFIG --variable=g_ir_generate gobject-introspection-1.0)])
2010-01-07 19:16:23 +03:00
AC_SUBST([GIRDIR], [$($PKG_CONFIG --define-variable=datadir=${datadir} --variable=girdir gobject-introspection-1.0)])
2009-11-10 08:31:13 +03:00
AC_SUBST([GIRTYPELIBDIR], [$($PKG_CONFIG --define-variable=libdir=${libdir} --variable=typelibdir gobject-introspection-1.0)])
2009-06-16 19:52:15 +04:00
fi
2011-04-29 16:27:11 +04:00
AM_CONDITIONAL([ENABLE_GUDEV], [test "x$enable_gudev" = xyes])
# ------------------------------------------------------------------------------
# keymap - map custom hardware's multimedia keys
# ------------------------------------------------------------------------------
AC_ARG_ENABLE([keymap],
AS_HELP_STRING([--disable-keymap], [disable keymap fixup support]),
[], [enable_keymap=yes])
if test "x$enable_keymap" = xyes; then
AC_PATH_PROG([GPERF], [gperf])
if test -z "$GPERF"; then
AC_MSG_ERROR([gperf is needed])
fi
AC_CHECK_HEADER([linux/input.h], [:], AC_MSG_ERROR([kernel headers not found]))
AC_SUBST([INCLUDE_PREFIX], [$(echo '#include <linux/input.h>' | eval $ac_cpp -E - | sed -n '/linux\/input.h/ {s:.*"\(.*\)/linux/input.h".*:\1:; p; q}')])
fi
AM_CONDITIONAL([ENABLE_KEYMAP], [test "x$enable_keymap" = xyes])
# ------------------------------------------------------------------------------
# create_floppy_devices - historical floppy kernel device nodes (/dev/fd0h1440, ...)
# ------------------------------------------------------------------------------
AC_ARG_ENABLE([floppy],
AS_HELP_STRING([--enable-floppy], [enable legacy floppy support]),
[], [enable_floppy=no])
AM_CONDITIONAL([ENABLE_FLOPPY], [test "x$enable_floppy" = xyes])
# ------------------------------------------------------------------------------
# edd_id - create /dev/disk/by-id/edd-* links for BIOS EDD data
# ------------------------------------------------------------------------------
AC_ARG_ENABLE([edd],
AS_HELP_STRING([--enable-edd], [enable disk edd support]),
[], [enable_edd=no])
AM_CONDITIONAL([ENABLE_EDD], [test "x$enable_edd" = xyes])
# ------------------------------------------------------------------------------
# mobile-action-modeswitch - switch Mobile Action cables into serial mode
# ------------------------------------------------------------------------------
AC_ARG_ENABLE([ACTION_MODESWITCH],
AS_HELP_STRING([--enable-action_modeswitch], [enable action modeswitch support]),
[], [enable_action_modeswitch=no])
if test "x$enable_action_modeswitch" = xyes; then
PKG_CHECK_MODULES(LIBUSB, libusb >= 0.1.12)
AC_SUBST(LIBUSB_CFLAGS)
AC_SUBST(LIBUSB_LIBS)
fi
AM_CONDITIONAL([ENABLE_ACTION_MODESWITCH], [test "x$enable_action_modeswitch" = xyes])
2009-06-16 19:52:15 +04:00
2008-07-30 03:45:23 +04:00
AC_CONFIG_HEADERS(config.h)
AC_CONFIG_FILES([
Makefile
2010-06-25 12:30:55 +04:00
udev/udev.pc
init/udev.service
2011-03-23 18:40:23 +03:00
init/udev-trigger.service
2010-06-25 12:30:55 +04:00
init/udev-settle.service
2009-06-08 23:36:06 +04:00
libudev/libudev.pc
2009-06-15 15:22:21 +04:00
libudev/docs/Makefile
libudev/docs/version.xml
2009-06-16 19:52:15 +04:00
extras/gudev/gudev-1.0.pc
extras/gudev/docs/Makefile
extras/gudev/docs/version.xml
2008-07-30 03:45:23 +04:00
])
2009-05-01 07:09:51 +04:00
AC_OUTPUT
AC_MSG_RESULT([
2008-07-30 03:45:23 +04:00
udev $VERSION
========
prefix: ${prefix}
2009-06-17 04:25:07 +04:00
sysconfdir: ${sysconfdir}
sbindir: ${sbindir}
2009-06-16 19:52:15 +04:00
libdir: ${libdir}
2009-07-06 01:56:24 +04:00
rootlibdir: ${rootlib_execdir}
2009-06-17 04:25:07 +04:00
libexecdir: ${libexecdir}
2008-07-30 03:45:23 +04:00
datarootdir: ${datarootdir}
mandir: ${mandir}
includedir: ${includedir}
2010-01-25 10:22:47 +03:00
include_prefix: ${INCLUDE_PREFIX}
2010-06-25 12:30:55 +04:00
systemdsystemunitdir: ${systemdsystemunitdir}
2008-07-30 03:45:23 +04:00
logging: ${enable_logging}
debug: ${enable_debug}
selinux: ${with_selinux}
compiler: ${CC}
cflags: ${CFLAGS}
ldflags: ${LDFLAGS}
2011-04-29 16:27:11 +04:00
rule_generator: ${enable_rule_generator}
hwdb: ${enable_hwdb}
udev_acl: ${enable_udev_acl}
gudev: ${enable_gudev}
keymap: ${enable_keymap}
floppy: ${enable_floppy}
edd: ${enable_edd}
action_modeswitch: ${enable_action_modeswitch}
2009-06-16 19:43:12 +04:00
2009-06-16 22:57:28 +04:00
usb.ids: ${USB_DATABASE}
pci.ids: ${PCI_DATABASE}
2010-04-16 09:38:32 +04:00
firmware path: ${FIRMWARE_PATH}
2009-06-16 22:57:28 +04:00
2008-07-30 03:45:23 +04:00
xsltproc: ${XSLTPROC}
2009-06-17 13:56:52 +04:00
gperf: ${GPERF}
2009-05-01 07:09:51 +04:00
])