What that code did was to automatically include the pecl docs that are in the ../pecl dir (if it exists).
This isn't the behaviour we want IMHO, because the docs should go in the phpdoc dir. And as we can't fix those errors, I think its better to disable this 'feature' (its annoying to always get a lot of errors when doing a 'make test').


If somebody wants to make the manual with those pecl docs, just configure --with-pecl.

Nuno


----- Original Message -----
What if you comment this out instead? I wonder why this was included in here, if it is not supposed to be there...

Goba

nlopess Sat Apr 30 15:30:32 2005 EDT

Modified files: /phpdoc configure.in Log:
disable automatic include of PECL docs
they have errors and arent supposed to be in the main distro
http://cvs.php.net/diff.php/phpdoc/configure.in?r1=1.228&r2=1.229&ty=u
Index: phpdoc/configure.in
diff -u phpdoc/configure.in:1.228 phpdoc/configure.in:1.229
--- phpdoc/configure.in:1.228 Tue Apr 5 10:40:53 2005
+++ phpdoc/configure.in Sat Apr 30 15:30:31 2005
@@ -1,4 +1,4 @@
-dnl $Id: configure.in,v 1.228 2005/04/05 14:40:53 vrana Exp $
+dnl $Id: configure.in,v 1.229 2005/04/30 19:30:31 nlopess Exp $
dnl autoconf initialisation
AC_INIT()
@@ -460,10 +460,7 @@
fi
fi
],[
- PECL_SOURCE=$srcdir/../pecl
- if test ! -d $PECL_SOURCE; then
- PECL_SOURCE=no
- fi + PECL_SOURCE=no
])
AC_MSG_RESULT($PECL_SOURCE)
AC_SUBST(PECL_SOURCE)

Reply via email to