From 91fae8467a7a2eda9029937e938e619aaabe3642 Mon Sep 17 00:00:00 2001 From: thib Date: Thu, 29 Apr 2004 20:50:24 +0000 Subject: [PATCH] moved bootinstall after debug, as the former depends on the latter --- configure.in | 60 ++++++++++++++++++++++++++-------------------------- 1 file changed, 30 insertions(+), 30 deletions(-) diff --git a/configure.in b/configure.in index 650b893..d3ade90 100644 --- a/configure.in +++ b/configure.in @@ -543,36 +543,6 @@ WARNING : ) -if test "$bootinstall" = ""; then - bootinstall=1 -fi -AC_MSG_CHECKING(install interactively a boot script) -AC_ARG_WITH(boot-install, -[ --with-boot-install=[yes|no] Install (interactively) a boot script (default: yes).], -[ case "$withval" in - no) - bootinstall=0 - AC_MSG_RESULT(no) - ;; - yes) - bootinstall=1 - AC_MSG_RESULT(yes) - ;; - *) - AC_MSG_ERROR(Must be set to either "yes" or "no".) - ;; - esac ], - if test "$bootinstall" = "1"; then - AC_MSG_RESULT(yes) - else - AC_MSG_RESULT(no) - fi -) -BOOTINSTALL="$bootinstall" -AC_DEFINE_UNQUOTED(BOOTINSTALL, "$bootinstall") -AC_SUBST(BOOTINSTALL) - - if test "$fcrondyn" = ""; then fcrondyn=1 fi @@ -834,6 +804,36 @@ DEBUG=$debug AC_SUBST(DEBUG) +if test "$bootinstall" = ""; then + bootinstall=1 +fi +AC_MSG_CHECKING(install interactively a boot script) +AC_ARG_WITH(boot-install, +[ --with-boot-install=[yes|no] Install (interactively) a boot script (default: yes).], +[ case "$withval" in + no) + bootinstall=0 + AC_MSG_RESULT(no) + ;; + yes) + bootinstall=1 + AC_MSG_RESULT(yes) + ;; + *) + AC_MSG_ERROR(Must be set to either "yes" or "no".) + ;; + esac ], + if test "$bootinstall" = "1"; then + AC_MSG_RESULT(yes) + else + AC_MSG_RESULT(no) + fi +) +BOOTINSTALL="$bootinstall" +AC_DEFINE_UNQUOTED(BOOTINSTALL, "$bootinstall") +AC_SUBST(BOOTINSTALL) + + AC_ARG_WITH(cflags, [ --with-cflags=CFLAGS Use CFLAGS flags to compile fcron.], [ case "$withval" in -- 2.40.0