hholzgra                Tue Feb  8 13:22:33 2005 EDT

  Modified files:              
    /phpdoc     configure.in 
  Log:
  whitespace
  
  
http://cvs.php.net/diff.php/phpdoc/configure.in?r1=1.213&r2=1.214&ty=u
Index: phpdoc/configure.in
diff -u phpdoc/configure.in:1.213 phpdoc/configure.in:1.214
--- phpdoc/configure.in:1.213   Tue Feb  8 07:47:08 2005
+++ phpdoc/configure.in Tue Feb  8 13:22:33 2005
@@ -1,4 +1,4 @@
-dnl $Id: configure.in,v 1.213 2005/02/08 12:47:08 hholzgra Exp $
+dnl $Id: configure.in,v 1.214 2005/02/08 18:22:33 hholzgra Exp $
 
 dnl autoconf initialisation
 AC_INIT()
@@ -85,10 +85,10 @@
 AC_ARG_WITH(inipath,
 [  --with-inipath=PATH     specify path to php.ini file (default: ./scripts)],
 [
-       AC_MSG_RESULT([$withval])
-       INIPATH="$withval"
+    AC_MSG_RESULT([$withval])
+    INIPATH="$withval"
 ],[
-       AC_MSG_RESULT([./scripts])
+    AC_MSG_RESULT([./scripts])
         INIPATH="./scripts"
 ])
 
@@ -402,7 +402,7 @@
   PHP_SOURCE=$srcdir/../php4
 ])
 if test ! -d $PHP_SOURCE; then
-       PHP_SOURCE=no
+    PHP_SOURCE=no
 fi
 AC_MSG_RESULT($PHP_SOURCE)
 AC_SUBST(PHP_SOURCE)
@@ -417,13 +417,13 @@
 [
   if test "$withval" = "yes"; then
     PEAR_SOURCE=$srcdir/../pear
-       if test ! -d $PEAR_SOURCE; then
-               PEAR_SOURCE=no
-       fi      
+    if test ! -d $PEAR_SOURCE; then
+      PEAR_SOURCE=no
+    fi  
   else
     PEAR_SOURCE=$withval
-       if test ! -d $PEAR_SOURCE; then
-               AC_MSG_ERROR(['$withval' is not a valid directory']) 
+    if test ! -d $PEAR_SOURCE; then
+      AC_MSG_ERROR(['$withval' is not a valid directory']) 
     fi
   fi
 ],[
@@ -442,13 +442,13 @@
 [
   if test "$withval" = "yes"; then
     PECL_SOURCE=$srcdir/../pecl
-       if test ! -d $PECL_SOURCE; then
-               PECL_SOURCE=no
-       fi      
+    if test ! -d $PECL_SOURCE; then
+      PECL_SOURCE=no
+    fi  
   else
     PECL_SOURCE=$withval
-       if test ! -d $PECL_SOURCE; then
-               AC_MSG_ERROR(['$withval' is not a valid directory']) 
+    if test ! -d $PECL_SOURCE; then
+      AC_MSG_ERROR(['$withval' is not a valid directory']) 
     fi
   fi
 ],[
@@ -465,17 +465,17 @@
 AC_ARG_WITH(extension,
 [  --with-extension=[DIR]    look at the specified extension directory],
 [
-       AC_MSG_RESULT($withval)
-list=`echo "$withval" | sed -e"s/,/ /g"`
-EXT_SOURCE="";
-for dir in $list; do
-       if test -d "$dir/manual"; then
+  AC_MSG_RESULT($withval)
+  list=`echo "$withval" | sed -e"s/,/ /g"`
+  EXT_SOURCE="";
+  for dir in $list; do
+    if test -d "$dir/manual"; then
     AC_MSG_RESULT([  extension '$dir' ok])
-               EXT_SOURCE="$EXT_SOURCE:$dir"
-       else
-         AC_MSG_WARN([  extension '$dir' ignored])
-       fi
-done
+      EXT_SOURCE="$EXT_SOURCE:$dir"
+    else
+      AC_MSG_WARN([  extension '$dir' ignored])
+    fi
+  done
 ])
 if test "$EXT_SOURCE" = ""; then
   AC_MSG_RESULT([no])
@@ -533,11 +533,11 @@
 AC_ARG_WITH(htmlcss,
 [  --with-htmlcss=URL      specify a CSS file to include in html docs],
 [
-       AC_MSG_RESULT([$withval])
-       HTMLCSS="(define %stylesheet% \"$withval\")"
+    AC_MSG_RESULT([$withval])
+    HTMLCSS="(define %stylesheet% \"$withval\")"
 ],[
-       HTMLCSS=""
-       AC_MSG_RESULT([none])
+    HTMLCSS=""
+    AC_MSG_RESULT([none])
 ])
 
 AC_SUBST(HTMLCSS)
@@ -596,8 +596,8 @@
        
     PHP_BUILD_DATE=`date '+%d-%m-%Y'`
     LANG_HACK_FOR_HE="no"
-       HACK_RTL_LANGS_PAGES=""
-       HACK_RTL_LANGS_PHPWEB=""
+    HACK_RTL_LANGS_PAGES=""
+    HACK_RTL_LANGS_PHPWEB=""
     case $withval in
       kr)
         LANG="ko"
@@ -640,7 +640,7 @@
     esac
     AC_SUBST(HACK_RTL_LANGS_PAGES)
     AC_SUBST(HACK_RTL_LANGS_PHPWEB)
-       MANUAL="php_manual_$withval"
+    MANUAL="php_manual_$withval"
     AC_MSG_RESULT( $withval )
   fi
 ],[
@@ -835,13 +835,13 @@
 dnl {{{ find all *.in files and process them with AC_OUTPUT
 for infile in `find $srcdir -name "*.in"` 
 do 
-       if test `basename $infile` != "configure.in"
-       then
-               outfile=`basename $infile .in`
-               outdir=`dirname $infile`
-               outdir=`echo $outdir/ | sed -e"s|$srcdir/||"`
-               OUTFILES="$OUTFILES ./$outdir$outfile"
-       fi
+    if test `basename $infile` != "configure.in"
+    then
+        outfile=`basename $infile .in`
+        outdir=`dirname $infile`
+        outdir=`echo $outdir/ | sed -e"s|$srcdir/||"`
+        OUTFILES="$OUTFILES ./$outdir$outfile"
+    fi
 done
 AC_OUTPUT($OUTFILES)
 find . -name "*.sh" | xargs chmod u+x 

Reply via email to