grim/gplate

some cleanups...
template_cleanup
2009-03-09, grim
56ff99cc8799
Parents 269dcd172816
Children 70ea9bf0dd49
some cleanups...
  • +10 -6
    configure.ac
  • --- a/configure.ac Mon Mar 09 02:01:15 2009 -0500
    +++ b/configure.ac Mon Mar 09 02:54:18 2009 -0500
    @@ -118,10 +118,10 @@
    AC_PATH_PROG(FDP, fdp, [yes], [no])
    AM_CONDITIONAL(USE_FDP, test x"$FDP" = x"yes")
    -AC_PATH_PROG(SED, [sedZ])
    +AC_PATH_PROG(LCOV, [lcov], [yes], [no])
    +AM_CONDITIONAL(USE_LCOV, test x"$LCOV" = x"yes")
    -AC_PATH_PROG(LCOV, [lcov], [yes], [np])
    -AM_CONDITIONAL(USE_LCOV, test x"$LCOV" = x"yes")
    +AC_PATH_PROG(FIGLET, [figlet])
    dnl #######################################################################
    dnl # Look for the C compiler
    @@ -138,7 +138,6 @@
    if test x"$enable_debug" = x"yes" ; then
    CFLAGS="$CFLAGS -O0 -fprofile-arcs -ftest-coverage"
    - CFLAGS=`echo $CFLAGS | sed 's/-O2//'`
    AC_DEFINE(DEBUG, 1, [Define if debugging is enabled.])
    fi
    @@ -204,9 +203,14 @@
    dnl #######################################################################
    dnl # Ouput!!
    dnl #######################################################################
    +if test x"$FIGLET" != x"no" ; then
    + $FIGLET -f small AC_PACKAGE_NAME
    + echo "AC_PACKAGE_VERSION configuration complete"
    +else
    + echo "AC_PACKAGE_NAME AC_PACKAGE_VERSION configuration complete"
    +fi
    +
    echo "
    -AC_PACKAGE_NAME AC_PACKAGE_VERSION Configuration complete
    -
    Debugging enabled: $enable_debug
    Build tests: $enable_tests