You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by dr...@locus.apache.org on 2000/03/04 16:49:17 UTC

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

dreid       00/03/04 07:49:16

  Modified:    src/build build2.mk
  Log:
  Rebuild the configure for MM.  Once this has settled we can remove the
  configure script as it shouldn't really be there anyway.
  
  Revision  Changes    Path
  1.5       +7 -2      apache-2.0/src/build/build2.mk
  
  Index: build2.mk
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/build/build2.mk,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- build2.mk	2000/01/16 20:00:48	1.4
  +++ build2.mk	2000/03/04 15:49:16	1.5
  @@ -21,7 +21,7 @@
   # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
   #
   ##############################################################################
  -# $Id: build2.mk,v 1.4 2000/01/16 20:00:48 sascha Exp $
  +# $Id: build2.mk,v 1.5 2000/03/04 15:49:16 dreid Exp $
   
   include generated_lists
   
  @@ -32,10 +32,11 @@
   config_h_in = include/ap_config_auto.h.in
   apr_config_h_in = lib/apr/include/apr_config.h.in
   apr_configure = lib/apr/configure
  +mm_configure = lib/apr/shmem/mm/configure
   
   APACHE_TARGETS = $(TOUCH_FILES) $(LT_TARGETS) configure $(config_h_in)
   
  -APR_TARGETS = $(apr_configure) $(apr_config_h_in)
  +APR_TARGETS = $(apr_configure) $(apr_config_h_in) $(mm_configure)
   
   targets = .deps aclocal.m4 $(APACHE_TARGETS) $(APR_TARGETS)
   
  @@ -76,3 +77,7 @@
   $(apr_configure): lib/apr/aclocal.m4 lib/apr/configure.in lib/apr/threads.m4
   	@echo rebuilding $@
   	(cd lib/apr && autoconf)
  +
  +$(mm_configure): lib/apr/shmem/unix/mm/configure.in
  +	@echo rebuilding $@
  +	(cd lib/apr/shmem/unix/mm && autoconf)