You are viewing a plain text version of this content. The canonical link for it is here.
Posted to apreq-cvs@httpd.apache.org by jo...@apache.org on 2003/10/17 18:56:27 UTC

cvs commit: httpd-apreq-2/build xsbuilder.pl

joes        2003/10/17 09:56:27

  Modified:    .        buildconf configure.ac
               build    xsbuilder.pl
  Log:
  Circumvent stupid exports in httpd.h (PACKAGE_* macros) by creating a dummy config header.
  
  Revision  Changes    Path
  1.3       +1 -0      httpd-apreq-2/buildconf
  
  Index: buildconf
  ===================================================================
  RCS file: /home/cvs/httpd-apreq-2/buildconf,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- buildconf	25 Apr 2003 03:17:47 -0000	1.2
  +++ buildconf	17 Oct 2003 16:56:27 -0000	1.3
  @@ -11,5 +11,6 @@
   echo "running $libtool" && $libtool && \
   echo "running aclocal"  && aclocal && \
   echo "running autoconf" && autoconf && \
  +echo "running autoheader" && autoheader && \
   echo "running automake -a -c" && automake -a -c && \
   echo "buildconf successful."
  
  
  
  1.9       +1 -1      httpd-apreq-2/configure.ac
  
  Index: configure.ac
  ===================================================================
  RCS file: /home/cvs/httpd-apreq-2/configure.ac,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- configure.ac	17 Oct 2003 06:27:20 -0000	1.8
  +++ configure.ac	17 Oct 2003 16:56:27 -0000	1.9
  @@ -22,7 +22,7 @@
   AM_MAINTAINER_MODE
   
   dnl Checks for header files.
  -
  +AM_CONFIG_HEADER(src/apreq_config.h)
   dnl Checks for typedefs, structures, and compiler characteristics.
   
   dnl Checks for library functions.
  
  
  
  1.12      +1 -1      httpd-apreq-2/build/xsbuilder.pl
  
  Index: xsbuilder.pl
  ===================================================================
  RCS file: /home/cvs/httpd-apreq-2/build/xsbuilder.pl,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- xsbuilder.pl	17 Oct 2003 06:27:20 -0000	1.11
  +++ xsbuilder.pl	17 Oct 2003 16:56:27 -0000	1.12
  @@ -105,7 +105,7 @@
       unless Apache::Build::WIN32;
   
   sub package {'Apache::libapreq2'}
  -sub unwanted_includes {["apreq_tables.h"]}
  +sub unwanted_includes {[qw/apreq_tables.h apreq_config.h/]}
   # ParseSource.pm v 0.23 bug: line 214 should read
   # my @dirs = @{$self->include_dirs};
   # for now, we override it here just to work around the bug