diff options
| author | Stig Bakken <ssb@php.net> | 1999-07-21 21:56:25 +0000 |
|---|---|---|
| committer | Stig Bakken <ssb@php.net> | 1999-07-21 21:56:25 +0000 |
| commit | d9f52fe0a7c48f4536268a6b4374d5debdd73a3d (patch) | |
| tree | 776b6913b37e488a1b6a5f5e3430862d25c40abd /main/php_version.h | |
| parent | 57323801f87f0481a0eba72c36f6cc182d411168 (diff) | |
| download | php-git-d9f52fe0a7c48f4536268a6b4374d5debdd73a3d.tar.gz | |
First cut at standard way of making dynamically loadable extensions on UNIX.
Examples on how to test:
./configure --with-xml static
./configure --with-xml=/opt static
./configure --with-xml=shared shared
./configure --with-xml=shared,/opt shared
The difference between these two is that when the extension is shared, it
is not merged into libphpext.a. The shared extension is currently always
built. I can't find a way to do just one or the other with automake/libtool,
if someone has a clever idea, please come forward. :-)
"make install" installs the .so (as well as a lot of other cruft) in
$prefix/lib/php.
Diffstat (limited to 'main/php_version.h')
| -rw-r--r-- | main/php_version.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/main/php_version.h b/main/php_version.h index ee69a881fc..ab60bf6f9f 100644 --- a/main/php_version.h +++ b/main/php_version.h @@ -1 +1,3 @@ -#define PHP_VERSION "4.0B1" +/* automatically generated by configure */ +/* edit configure.in.in to change version number */ +#define PHP_VERSION "4.0b2-dev" |
