]> git.ozlabs.org Git - petitboot/blobdiff - configure.ac.in
discover/yaboot: Fix boot option state
[petitboot] / configure.ac.in
index 0121579b508bb4ba406bdf669f648624773c453b..acfab28b787fa64171d37ae50235abc11729b157 100644 (file)
@@ -31,6 +31,11 @@ LT_INIT
 AC_CHECK_HEADERS([stdarg.h])
 AC_CHECK_HEADERS([varargs.h])
 
+AC_CHECK_LIB([udev], [udev_new],
+       [],
+       [AC_MSG_FAILURE([The libudev development library is required by petitboot.  Try installing the package libudev-dev or libudev-devel.])]
+)
+
 dnl Checking for va_copy availability
 AC_MSG_CHECKING([for va_copy])
 AC_TRY_LINK([#include <stdarg.h>
@@ -180,13 +185,12 @@ DEFINE_HOST_PROG(MOUNT, mount, [/bin/mount])
 DEFINE_HOST_PROG(SHUTDOWN, shutdown, [/sbin/shutdown])
 DEFINE_HOST_PROG(SFTP, sftp, [/usr/bin/sftp])
 DEFINE_HOST_PROG(TFTP, tftp, [/usr/bin/tftp])
-DEFINE_HOST_PROG(UDEVADM, udevadm, [/sbin/udevadm])
 DEFINE_HOST_PROG(UMOUNT, umount, [/bin/umount])
 DEFINE_HOST_PROG(WGET, wget, [/usr/bin/wget])
 
 default_cflags="--std=gnu99 -g \
        -Wall -W -Wunused -Wstrict-prototypes -Wmissing-prototypes \
-       -Wmissing-declarations -Wredundant-decls -Winline"
+       -Wmissing-declarations -Wredundant-decls"
 
 AC_ARG_ENABLE(
        [werror],
@@ -213,7 +217,9 @@ AC_CONFIG_FILES([
        lib/Makefile
        man/Makefile
        test/Makefile
+       test/lib/Makefile
        test/parser/Makefile
+       test/urls/Makefile
        ui/Makefile
        ui/common/Makefile
        ui/ncurses/Makefile