php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Doc Bug #32357 Fix on "Compiling PECL extensions statically into PHP"
Submitted: 2005-03-18 03:23 UTC Modified: 2005-03-25 19:15 UTC
From: imacat at mail dot imacat dot idv dot tw Assigned:
Status: Closed Package: Documentation problem
PHP Version: 5.0.3 OS: Linux
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: imacat at mail dot imacat dot idv dot tw
New email:
PHP Version: OS:

 

 [2005-03-18 03:23 UTC] 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.


Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2005-03-25 19:15 UTC] nlopess@php.net
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.


 
PHP Copyright © 2001-2025 The PHP Group
All rights reserved.
Last updated: Wed Aug 06 08:00:03 2025 UTC