ID:               32357
 Updated by:       [EMAIL PROTECTED]
 Reported By:      imacat at mail dot imacat dot idv dot tw
-Status:           Open
+Status:           Closed
 Bug Type:         Documentation problem
 Operating System: Linux
 PHP Version:      5.0.3
 New Comment:

This bug has been fixed in the documentation's XML sources. Since the
online and downloadable versions of the documentation need some time
to get updated, we would like to ask you to be a bit patient.

Thank you for the report, and for helping us make our documentation
better.




Previous Comments:
------------------------------------------------------------------------

[2005-03-18 03:23:53] imacat at mail dot imacat dot idv dot tw

Description:
------------
The procedure described in section "Compiling PECL extensions
statically into PHP" in INSTALL and in PHP manual is incorrect. 
Instead of running:

$ cd /your/phpsrcdir 
$ ./buildconf
$ ./configure --help
$ ./configure --with-extname --enable-someotherext --with-foobar
$ make
$ make install

One should run "with autoconf 2.13":

$ cd /your/phpsrcdir 
$ rm -f ./configure
$ ./buildconf --force
$ ./configure --help
$ ./configure --with-extname --enable-someotherext --with-foobar
$ make
$ make install

The "with autoconf 2.13" should be mentioned in the document, too.



------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=32357&edit=1

Reply via email to