diff options
author | Stig Bakken <ssb@php.net> | 1999-09-29 15:17:02 +0000 |
---|---|---|
committer | Stig Bakken <ssb@php.net> | 1999-09-29 15:17:02 +0000 |
commit | 1cb0d88186a885f555393e258849562e24156f57 (patch) | |
tree | d73a02da5a9134191e39048bd10fd5eb45b274b2 /Makefile.in | |
parent | db4820447fae020625e210e42569671d0c865c5f (diff) | |
download | php-git-1cb0d88186a885f555393e258849562e24156f57.tar.gz |
Decent configure speedup. Makefiles are now generated only for the
extensions you are including. Got rid of configure.in.in.
Moved the last Apache-specific files into sapi/apache and made both
static and DSO build work again (it still doesn't run properly).
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/Makefile.in b/Makefile.in index fdbbe5677d..ed58baecd3 100644 --- a/Makefile.in +++ b/Makefile.in @@ -72,10 +72,11 @@ APXS_EXP = @APXS_EXP@ WARNING_LEVEL = @WARNING_LEVEL@ LEX_CFLAGS = -w$(WARNING_LEVEL) @LEX_CFLAGS@ EXT_SHARED = @EXT_SHARED@ -LIBOBJS=@LIBOBJS@ -REGEX_LIB=@REGEX_LIB@ -FHTTPD_LIB=@FHTTPD_LIB@ -TSRM_LIB=@TSRM_LIB@ +LIBOBJS = @LIBOBJS@ +REGEX_LIB = @REGEX_LIB@ +FHTTPD_LIB = @FHTTPD_LIB@ +TSRM_LIB = @TSRM_LIB@ +APACHE_INSTALL = @APACHE_INSTALL@ SOURCE = main.c internal_functions.c snprintf.c php3_sprintf.c \ configuration-parser.c configuration-scanner.c request_info.c \ |