From: Wayne Davison Date: Sat, 14 Feb 2009 15:46:39 +0000 (-0800) Subject: Moved the --disable-debug check sooner in configure.in so that it X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/44ae54114ac29ebe6bff34f98e59e51d3cb71a40 Moved the --disable-debug check sooner in configure.in so that it happens prior to checking for the compiler. Switched no-debug code to setting ac_cv_prog_cc_g=no. Fixes bug #6106. --- diff --git a/configure.in b/configure.in index 355f6010..a6698a73 100644 --- a/configure.in +++ b/configure.in @@ -15,21 +15,6 @@ LDFLAGS=${LDFLAGS-""} AC_CANONICAL_HOST -dnl Checks for programs. -AC_PROG_CC -AC_PROG_CPP -AC_PROG_EGREP -AC_PROG_INSTALL -AC_PROG_CC_STDC -AC_SUBST(SHELL) - -AC_DEFINE([_GNU_SOURCE], 1, - [Define _GNU_SOURCE so that we get all necessary prototypes]) - -if test x"$ac_cv_prog_cc_stdc" = x"no"; then - AC_MSG_WARN([rsync requires an ANSI C compiler and you don't seem to have one]) -fi - # We must decide this before testing the compiler. # Please allow this to default to yes, so that your users have more @@ -42,14 +27,27 @@ AC_ARG_ENABLE(debug, if test x"$enable_debug" = x"no"; then AC_MSG_RESULT(no) - CFLAGS=${CFLAGS-"-O"} + ac_cv_prog_cc_g=no else AC_MSG_RESULT([yes]) - # leave CFLAGS alone; AC_PROG_CC will try to include -g if it can dnl AC_DEFINE(DEBUG, 1, [Define to turn on debugging code that may slow normal operation]) - dnl CFLAGS=${CFLAGS-"-g"} + # leave ac_cv_prog_cc_g alone; AC_PROG_CC will try to include -g if it can fi +dnl Checks for programs. +AC_PROG_CC +AC_PROG_CPP +AC_PROG_EGREP +AC_PROG_INSTALL +AC_PROG_CC_STDC +AC_SUBST(SHELL) + +AC_DEFINE([_GNU_SOURCE], 1, + [Define _GNU_SOURCE so that we get all necessary prototypes]) + +if test x"$ac_cv_prog_cc_stdc" = x"no"; then + AC_MSG_WARN([rsync requires an ANSI C compiler and you don't seem to have one]) +fi AC_ARG_ENABLE(profile, AC_HELP_STRING([--enable-profile],