From: Sascha Schumann Date: Sat, 2 Oct 1999 12:11:52 +0000 (+0000) Subject: Use the already compiled `mod_php4.o'. This avoids the trouble X-Git-Tag: php-4.0b3_RC2~375 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=be2668c027917e38f3b647be81a17c8d8d927c06;p=php Use the already compiled `mod_php4.o'. This avoids the trouble apxs has with VPATH builds (assumes source dir = build dir). --- diff --git a/sapi/apache/Makefile.inc b/sapi/apache/Makefile.inc index be01fd4d75..529ad37010 100644 --- a/sapi/apache/Makefile.inc +++ b/sapi/apache/Makefile.inc @@ -21,4 +21,4 @@ libmodphp4-so.a: all-recursive $(OBJS) sapi/libphpsapi.a $(REGEX_LIB) # Apache 1.3 shared module libphp4.so: libmodphp4-so.a $(REGEX_LIB) (cd sapi/apache; $(MAKE) mod_php4.o) - $(APXS) $(INCLUDE) -c -o libphp4.so $(VERSION_SCRIPT) $(RPATHS) $(srcdir)/sapi/apache/mod_php4.c libmodphp4-so.a $(APXS_LDFLAGS) $(APXS_EXP) + $(APXS) $(INCLUDE) -c -o libphp4.so $(VERSION_SCRIPT) $(RPATHS) $(srcdir)/sapi/apache/mod_php4.o libmodphp4-so.a $(APXS_LDFLAGS) $(APXS_EXP)