diff options
author | Sascha Schumann <sas@php.net> | 1999-10-04 15:18:26 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 1999-10-04 15:18:26 +0000 |
commit | 232afa4816c60a20d3db48c304ac59312d46ec46 (patch) | |
tree | dd8df9145c12f6b14fe751f6cc862aa8c0768e06 /ext/apache | |
parent | ec01d01400c67fd6d1bf2ae0e170771260e1ecc0 (diff) | |
download | php-git-232afa4816c60a20d3db48c304ac59312d46ec46.tar.gz |
* archive-based convenience libraries completely replaced
with libtool components
* SAPI targets can enable thread-safe mode and define
shared/static/program build target
* all configure scripts use the same config.cache
* phplibdir is $(top_builddir)/modules to avoid
permission problems
* sapi/*/Makefile.inc are gone
* runpath handling cleaned up
* top-level Makefile.in obsoleted through Makefile.am
* --enable-versioning uses libtool's cleaner and more
portable -export-symbols feature
Diffstat (limited to 'ext/apache')
-rw-r--r-- | ext/apache/Makefile.am | 4 | ||||
-rw-r--r-- | ext/apache/config.m4 | 3 |
2 files changed, 2 insertions, 5 deletions
diff --git a/ext/apache/Makefile.am b/ext/apache/Makefile.am index c9006e13bb..9a7d7ab1b3 100644 --- a/ext/apache/Makefile.am +++ b/ext/apache/Makefile.am @@ -1,6 +1,6 @@ # $Id$ INCLUDES=@INCLUDES@ -I@top_srcdir@ -I@top_srcdir@/libzend -noinst_LIBRARIES=libphpext_apache.a -libphpext_apache_a_SOURCES=apache.c +noinst_LTLIBRARIES=libphpext_apache.la +libphpext_apache_la_SOURCES=apache.c diff --git a/ext/apache/config.m4 b/ext/apache/config.m4 index e878cdbb8b..88575c9e98 100644 --- a/ext/apache/config.m4 +++ b/ext/apache/config.m4 @@ -1,5 +1,2 @@ dnl $Id$ -if test -n "$APACHE_INCLUDE"; then - PHP_EXTENSION(apache) -fi |