X-Git-Url: http://git.ozlabs.org/?p=petitboot;a=blobdiff_plain;f=configure.ac.in;h=bfc25720782e41763ca91fabe3ffde5dd086a2e0;hp=305bb8d1af0c9308087e9583278ab9fa3461abcb;hb=c019c1cea9c12aff4aa945414bb2841d085d5b10;hpb=73d4e2abf6756a9fc8b1a7a41b0dda19226f378d diff --git a/configure.ac.in b/configure.ac.in index 305bb8d..bfc2572 100644 --- a/configure.ac.in +++ b/configure.ac.in @@ -67,6 +67,14 @@ AC_ARG_WITH( ) AM_CONDITIONAL([WITH_NCURSES], [test "x$with_ncurses" = "xyes"]) +AS_IF( + [test "x$with_ncurses" = "xyes"], + AC_CHECK_LIB([ncurses], [initscr], + [], + [AC_MSG_FAILURE([--with-ncurses was given but the test for libncurses failed. Try installing the package ncurses-dev or ncurses-devel.])] + ) +) + AC_ARG_WITH( [twin-x11], [AS_HELP_STRING([--with-twin-x11], @@ -102,7 +110,7 @@ AS_IF( [twin], [twin_feature_init], [], - [AC_MSG_FAILURE([--with-twin was given, but test for twin failed])] + [AC_MSG_FAILURE([--with-twin was given but the test for libtwin failed.])] ) LIBS="$SAVE_LIBS" ], @@ -185,13 +193,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],