goba            Sat Aug  3 08:55:26 2002 EDT

  Modified files:              
    /phpdoc     configure.in 
  Log:
  New method for file-entities.php call, no more nasty parameter passing,
  use configure features ;))
  
  
Index: phpdoc/configure.in
diff -u phpdoc/configure.in:1.168 phpdoc/configure.in:1.169
--- phpdoc/configure.in:1.168   Sat Aug  3 08:28:39 2002
+++ phpdoc/configure.in Sat Aug  3 08:55:26 2002
@@ -1,9 +1,11 @@
-dnl $Id: configure.in,v 1.168 2002/08/03 12:28:39 goba Exp $
+dnl $Id: configure.in,v 1.169 2002/08/03 12:55:26 goba Exp $
 
 dnl autoconf initialisation
 AC_INIT()
 SRCDIR=$srcdir
+WORKDIR=`pwd`
 AC_SUBST(SRCDIR)
+AC_SUBST(WORKDIR)
 
 dnl debug output
 echo "file versions"
@@ -11,6 +13,8 @@
   fgrep '$Id' $file | head -1 | sed -e"s/^.*: //g" | sed -e"s/200.\/.*$//g"
 done
 echo "configure options: $@" 
+echo "source directory: $srcdir"
+echo "working directory: $WORKDIR"
 echo
 
 dnl {{{ check for support programs
@@ -291,6 +295,7 @@
 AC_SUBST(DOCBOOKXSL_BIGHTML)
 AC_SUBST(DOCBOOKXSL_HTML)
 AC_SUBST(DOCBOOKXSL_PRINT)
+AC_SUBST(DOCBOOKXSL_USED)
 
 dnl }}}
 
@@ -367,7 +372,7 @@
     ZENDAPI=$withval
   fi
 ],[
-  ZENDAPI="notfound"
+  ZENDAPI="not found"
   for dir in \
     $srcdir/en/ZendAPI \
     $srcdir/ZendAPI \
@@ -392,6 +397,7 @@
 ])
 
 AC_MSG_RESULT($ZENDAPI)
+AC_SUBST(ZENDAPI)
 AC_SUBST(ZEND_FIGURES)
 AC_SUBST(ZEND_FIGURES_HTML)
 AC_SUBST(ZEND_FIGURES_PHP)
@@ -672,8 +678,8 @@
 if test $PHP != "no"
 then
 
- dnl note that the # signs are all just part of a workaround for the Windows PHP 
invocation which has some problems
- $PHP -c $srcdir/scripts -q $srcdir/scripts/file-entities.php 
$LANGDIR#$srcdir#`pwd`#$DOCBOOKXSL_USED#$ZENDAPI
+ dnl create entity mapping file supporting Zend, CHM and other specialities
+ $PHP -c ./scripts -q ./scripts/file-entities.php
  
  dnl create missing-entities.ent and missing-ids.xml
  rm -f entities/missing*
@@ -681,7 +687,7 @@
  
 else
 
-  echo ERROR: configure process cannot continue, php is not found
+  echo ERROR: configure process cannot continue, PHP is not found
 
 fi
 



-- 
PHP Documentation Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to