|
Compiling PECL extensions statically into PHP
You might find that you need to build a PECL extension statically into your
PHP binary. To do this, you'll need to place the extension source under
the $ cd /your/phpsrcdir/ext This will result in the following directory: /your/phpsrcdir/ext/extname From here, force PHP to rebuild the configure script, and then build PHP as normal: $ cd /your/phpsrcdir
Note:
To run the 'buildconf' script you need autoconf 2.13 and automake 1.4+ (newer versions of autoconf may work, but are not supported).
Whether $ ./configure --help | grep extname |