From 3fa80f60f62e37fd2297c56b1a99bf5a29d5e912 Mon Sep 17 00:00:00 2001 From: Ales Hvezda Date: Sun, 24 Jun 2007 21:41:30 -0400 Subject: [PATCH] Removed indent from gattrib's configure script. indent is no longer used (hold back from the noweb days). --- gattrib/configure.ac | 23 ++--------------------- 1 file changed, 2 insertions(+), 21 deletions(-) diff --git a/gattrib/configure.ac b/gattrib/configure.ac index 5a8c381fe..6d373c25d 100644 --- a/gattrib/configure.ac +++ b/gattrib/configure.ac @@ -155,7 +155,7 @@ fi ############################################################################ ############################################################################ -# Check for doxygen, indent start +# Check for doxygen start # # Doxygen is a utility for generating html and latex documentation @@ -190,27 +190,8 @@ fi # using conditionnal in docs/Makefile.in AM_CONDITIONAL(BUILDDOC, test x$builddoc = xtrue) -# search for indent -AC_PATH_PROG(INDENT, indent, no, ${PATH}) - -if ! test "$INDENT" = "no"; then - indentversion=`$INDENT --version | grep GNU` -else - indentversion= -fi - -if test "$INDENT" = "no" -o "$indentversion"x = x; then - AC_PATH_PROG(GINDENT, gindent, no, ${PATH}) - if test "$GINDENT" = "no"; then - echo "** Cannot find GNU indent or gindent, C code formatting disabled **" - INDENT=echo - else - INDENT=$GINDENT - fi -fi - # -# Check for doxygen, indent end +# Check for doxygen end ######################################################################### -- 2.11.4.GIT