X-Git-Url: http://git.ozlabs.org/?p=petitboot;a=blobdiff_plain;f=configure.ac.in;h=1b66244e98bbac222f827499cfb8772ebf63a8e2;hp=b1791cd2a09b4dc1d9450a0aba7fbd6eb2b153e0;hb=158b5a1ec8b4156da1d335a4f940919578928790;hpb=8bd85461621fb0ff18059305a6c1aecdbc18016c diff --git a/configure.ac.in b/configure.ac.in index b1791cd..1b66244 100644 --- a/configure.ac.in +++ b/configure.ac.in @@ -163,10 +163,39 @@ AC_ARG_ENABLE( ) #AM_CONDITIONAL([ENABLE_DEBUG], [test "x$enable_debug" = "xyes"]) +# host program paths +AC_DEFUN([DEFINE_HOST_PROG], + [ + AC_ARG_VAR([HOST_PROG_$1], [Path to "$2" on the host [default $3]]) + if test "x$HOST_PROG_$1" = "x"; then + HOST_PROG_$1="$3" + fi + AC_DEFINE_UNQUOTED(HOST_PROG_$1, ["$HOST_PROG_$1"], + [Path to "$2" on the host]) + ]) + +DEFINE_HOST_PROG(CP, cp, [/bin/cp]) +DEFINE_HOST_PROG(KEXEC, kexec, [/sbin/kexec]) +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" +AC_ARG_ENABLE( + [werror], + [AS_HELP_STRING([--enable-werror], + [build programs with -Werror] + )], + [default_cflags="$default_cflags -Werror"] +) + AS_IF( [test "x$enable_debug" = "xyes"], [AC_SUBST([DEFAULT_CFLAGS], ["$default_cflags -O0 -DDEBUG"])], @@ -184,7 +213,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