You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by rb...@locus.apache.org on 2000/12/05 20:11:20 UTC

cvs commit: apr-util/src/buckets Makefile.in

rbb         00/12/05 11:11:19

  Modified:    include  ap_buckets.h
               src/buckets Makefile.in
  Log:
  Build ap_buckets.c along with the rest of the buckets files, and #ifdef
  ap_brigade_consume, because there is no code for it.
  
  Revision  Changes    Path
  1.54      +2 -0      apr-util/include/ap_buckets.h
  
  Index: ap_buckets.h
  ===================================================================
  RCS file: /home/cvs/apr-util/include/ap_buckets.h,v
  retrieving revision 1.53
  retrieving revision 1.54
  diff -u -r1.53 -r1.54
  --- ap_buckets.h	2000/12/05 17:23:52	1.53
  +++ ap_buckets.h	2000/12/05 19:11:09	1.54
  @@ -555,6 +555,7 @@
   APR_DECLARE(ap_bucket_brigade *) ap_brigade_split(ap_bucket_brigade *b,
   						 ap_bucket *e);
   
  +#if APR_NOT_DONE_YET
   /**
    * consume nbytes from beginning of b -- call ap_bucket_destroy as
    * appropriate, and/or modify start on last element 
  @@ -563,6 +564,7 @@
    * @deffunc void ap_brigade_consume(ap_bucket_brigade *b, int nbytes)
    */
   APR_DECLARE(void) ap_brigade_consume(ap_bucket_brigade *b, int nbytes);
  +#endif
   
   /**
    * create an iovec of the elements in a bucket_brigade... return number 
  
  
  
  1.3       +2 -1      apr-util/src/buckets/Makefile.in
  
  Index: Makefile.in
  ===================================================================
  RCS file: /home/cvs/apr-util/src/buckets/Makefile.in,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- Makefile.in	2000/12/05 01:02:48	1.2
  +++ Makefile.in	2000/12/05 19:11:14	1.3
  @@ -1,7 +1,8 @@
   
   TARGETS = ap_buckets_file.lo ap_buckets_pool.lo ap_buckets_flush.lo \
   ap_buckets_refcount.lo ap_buckets_heap.lo ap_buckets_simple.lo ap_buckets.lo \
  -ap_buckets_mmap.lo ap_buckets_socket.lo ap_buckets_eos.lo ap_buckets_pipe.lo
  +ap_buckets_mmap.lo ap_buckets_socket.lo ap_buckets_eos.lo ap_buckets_pipe.lo \
  +ap_buckets.lo
   
   top_builddir = @top_builddir@
   include $(top_builddir)/build/rules.mk