You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by dr...@apache.org on 2001/07/07 09:17:33 UTC

cvs commit: apr/memory/unix Makefile.in

dreid       01/07/07 00:17:33

  Modified:    .        configure.in
               lib      Makefile.in
               memory/unix Makefile.in
  Log:
  So I think I've moved apr_pools.c succesfully, so now we'll build
  it in it's new location, memory/unix.
  
  The lib directory is now no longer touched during a build so I guess
  the files in there (apr_pools.c and apr_signal.c) can be removed
  at some point.  I haven't removed apr_pools.c as I wanted to be sure
  that that the move was OK first!  Just call me yellow :)
  
  Revision  Changes    Path
  1.330     +2 -2      apr/configure.in
  
  Index: configure.in
  ===================================================================
  RCS file: /home/cvs/apr/configure.in,v
  retrieving revision 1.329
  retrieving revision 1.330
  diff -u -r1.329 -r1.330
  --- configure.in	2001/07/07 06:53:16	1.329
  +++ configure.in	2001/07/07 07:17:32	1.330
  @@ -1227,8 +1227,8 @@
   AC_SUBST(LOCAL_MM_LIB)
   
   echo "${nl}Construct Makefiles and header files."
  -MAKEFILE1="Makefile lib/Makefile strings/Makefile passwd/Makefile tables/Makefile build/Makefile"
  -SUBDIRS="lib strings passwd tables "
  +MAKEFILE1="Makefile strings/Makefile passwd/Makefile tables/Makefile build/Makefile"
  +SUBDIRS="strings passwd tables "
   for dir in $apr_modules
   do
       test -d $dir || $MKDIR $dir
  
  
  
  1.36      +1 -1      apr/lib/Makefile.in
  
  Index: Makefile.in
  ===================================================================
  RCS file: /home/cvs/apr/lib/Makefile.in,v
  retrieving revision 1.35
  retrieving revision 1.36
  diff -u -r1.35 -r1.36
  --- Makefile.in	2001/01/09 11:05:53	1.35
  +++ Makefile.in	2001/07/07 07:17:32	1.36
  @@ -1,5 +1,5 @@
   
  -TARGETS = apr_pools.lo
  +TARGETS = 
   
   # bring in rules.mk for standard functionality
   @INCLUDE_RULES@
  
  
  
  1.6       +2 -1      apr/memory/unix/Makefile.in
  
  Index: Makefile.in
  ===================================================================
  RCS file: /home/cvs/apr/memory/unix/Makefile.in,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- Makefile.in	2001/07/01 06:23:09	1.5
  +++ Makefile.in	2001/07/07 07:17:32	1.6
  @@ -3,7 +3,8 @@
             apr_sms_std.lo \
             apr_sms_tracking.lo \
             apr_sms_blocks.lo \
  -          apr_sms_trivial.lo
  +          apr_sms_trivial.lo \
  +          apr_pools.lo
   
   # bring in rules.mk for standard functionality
   @INCLUDE_RULES@