You are viewing a plain text version of this content. The canonical link for it is here.
Posted to test-cvs@httpd.apache.org by je...@apache.org on 2003/09/06 05:06:11 UTC

cvs commit: httpd-test/flood configure.in flood_report_relative_times.c

jerenkrantz    2003/09/05 20:06:11

  Modified:    flood    configure.in flood_report_relative_times.c
  Log:
  Two minor fixes.
  
  * configure.in: Use apu-config, not apr-config.  Duh.
  
  * flood_report_relative_times.c: Don't even bother trying to create a void
    pointer.  (Sun's CC chokes on it.)
  
  Revision  Changes    Path
  1.28      +1 -1      httpd-test/flood/configure.in
  
  Index: configure.in
  ===================================================================
  RCS file: /home/cvs/httpd-test/flood/configure.in,v
  retrieving revision 1.27
  retrieving revision 1.28
  diff -u -u -r1.27 -r1.28
  --- configure.in	11 Sep 2002 14:45:23 -0000	1.27
  +++ configure.in	6 Sep 2003 03:06:11 -0000	1.28
  @@ -139,7 +139,7 @@
   fi
   
   CPPFLAGS="$CPPFLAGS `$apu_config --includes`"
  -LIBTOOL_LDFLAGS="$LIBTOOL_LDFLAGS `$apr_config --ldflags`"
  +LIBTOOL_LDFLAGS="$LIBTOOL_LDFLAGS `$apu_config --ldflags`"
   dnl Since libaprutil relies on libapr, it *must* appear before -lapr.
   LIBTOOL_LIBS="`$apu_config --link-libtool --libs` $LIBTOOL_LIBS"
   
  
  
  
  1.7       +0 -4      httpd-test/flood/flood_report_relative_times.c
  
  Index: flood_report_relative_times.c
  ===================================================================
  RCS file: /home/cvs/httpd-test/flood/flood_report_relative_times.c,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -u -r1.6 -r1.7
  --- flood_report_relative_times.c	3 Feb 2003 17:10:56 -0000	1.6
  +++ flood_report_relative_times.c	6 Sep 2003 03:06:11 -0000	1.7
  @@ -66,13 +66,9 @@
   extern apr_file_t *local_stdout;
   extern apr_file_t *local_stderr;
   
  -typedef void relative_times_report_t;
  -
   apr_status_t relative_times_report_init(report_t **report, config_t *config, 
                                 const char *profile_name, apr_pool_t *pool)
   {
  -    *report = apr_palloc(pool, sizeof(relative_times_report_t));
  -
       return APR_SUCCESS;
   }