You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rb...@locus.apache.org on 2000/10/05 05:44:22 UTC

cvs commit: apache-2.0/src/build special.mk

rbb         00/10/04 20:44:22

  Modified:    src      CHANGES
               src/build special.mk
  Log:
  If mod_so is compiled into the server, we need to create libexec, even
  if there are no shared modules compiled.  This is in keeping with what
  we did with Apache 1.3, and it allows APXS to work, even if there were no
  shared modules installed initially.
  
  Revision  Changes    Path
  1.245     +5 -0      apache-2.0/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/CHANGES,v
  retrieving revision 1.244
  retrieving revision 1.245
  diff -u -r1.244 -r1.245
  --- CHANGES	2000/10/04 23:19:27	1.244
  +++ CHANGES	2000/10/05 03:44:21	1.245
  @@ -1,5 +1,10 @@
   Changes with Apache 2.0a7
   
  +  *) If mod_so is enabled in the server always create libexec, even
  +     if there are no modules installed in this directory.  This is a
  +     requirement for APXS to work correctly.
  +     [Ryan Bloom]
  +
     *) Connection oriented output filters are now stored in the 
        conn_rec instead of the request_rec.  This allows us to add the
        output filter in the pre-connection phase instead of the
  
  
  
  1.7       +1 -1      apache-2.0/src/build/special.mk
  
  Index: special.mk
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/build/special.mk,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- special.mk	2000/07/23 18:00:45	1.6
  +++ special.mk	2000/10/05 03:44:22	1.7
  @@ -62,7 +62,7 @@
   
   install-modules:
   	@shared='$(shared)'; \
  -	if test -n "$$shared"; then \
  +	if [ "x`echo $(static) | grep 'mod_so'`" != "x" ]; then \
   		$(MKINSTALLDIRS) $(libexecdir); \
   		for i in $$shared; do \
   			$(SH_LIBTOOL) --mode=install cp $$i $(libexecdir); \