From 4646851856ac28e461e552f6656df7a700bdfddc Mon Sep 17 00:00:00 2001 From: robs Date: Wed, 16 Aug 2000 01:51:47 +0000 Subject: [PATCH] Tweak to Makefile.tmpl to support DSOs. Dave Hill [ddhill@zk3.dec.com] --- CHANGES | 4 ++++ Makefile.tmpl | 8 ++++++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index e3f5391..cf5bd5e 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,7 @@ +Changes with mod_fastcgi 2.2.7 + + *) Tweak to Makefile.tmpl to support DSOs. Dave Hill [ddhill@zk3.dec.com] + Changes with mod_fastcgi 2.2.6 *) Shutdown the PM when Apache appears to have disappeared. diff --git a/Makefile.tmpl b/Makefile.tmpl index c821833..a6d4a50 100644 --- a/Makefile.tmpl +++ b/Makefile.tmpl @@ -3,7 +3,7 @@ # # Apache v1.3's Configure uses this to create a Makefile # -# $Id: Makefile.tmpl,v 1.5 2000/04/06 19:10:52 robs Exp $ +# $Id: Makefile.tmpl,v 1.6 2000/08/16 01:51:47 robs Exp $ LIB=libfastcgi.$(LIBEXT) @@ -14,11 +14,15 @@ OBJS=mod_fastcgi.o fcgi_buf.o fcgi_pm.o fcgi_protocol.o fcgi_config.o fcgi_util. all: lib lib: $(LIB) -$(LIB): $(OBJS) +libfastcgi.a: $(OBJS) rm -f $@ ar cr $@ $(OBJS) $(RANLIB) $@ +libfastcgi.so: $(OBJS) + rm -f $@ + $(LD_SHLIB) $(LDFLAGS_SHLIB) -o $@ $(OBJS) + .c.o: $(CC) -c $(INCLUDES) $(CFLAGS) $< -- 2.11.4.GIT