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/15 08:22:53 UTC

cvs commit: httpd-apreq-2/src Makefile.am

joes        2003/10/14 23:22:53

  Modified:    .        CHANGES Makefile.am apreq2-config.in configure.ac
               src      Makefile.am
  Log:
  Set target include directory to include/apreq2 instead of include/. Also sync CHANGES file.
  
  Revision  Changes    Path
  1.10      +15 -1     httpd-apreq-2/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /home/cvs/httpd-apreq-2/CHANGES,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- CHANGES	13 Oct 2003 18:24:46 -0000	1.9
  +++ CHANGES	15 Oct 2003 06:22:53 -0000	1.10
  @@ -1,6 +1,20 @@
   /** @page CHANGES
   
  -@section 2.0.0-dev Changes with libapreq2-0.0-dev
  +@section 2.0.0-dev Changes with libapreq2-2.0.0-dev
  +
  +- October 14, 2003 - C API [joes]
  +
  +Added apreq_header_attribute() and fixed mfd parser to allow 
  +"charset" attribute to appear in the Content-Type header.  Sven
  +Geisler points out that Opera 7.20 does generate such headers. 
  +
  +- October 14, 2003 - C API [joes]
  +
  +Added versioning API following http://apr.apache.org/versioning.html
  +apreq_env renamed apreq_env_name, and apreq_env_magic_number added
  +to provide versioning for environments (modules).  The header files 
  +are now installed to "include/apreq2", and the library is renamed 
  +"libapreq2".
   
   - October 8, 2003 - configure: static mod_apreq.c [Bojan Smojver, joes]
   
  
  
  
  1.14      +4 -0      httpd-apreq-2/Makefile.am
  
  Index: Makefile.am
  ===================================================================
  RCS file: /home/cvs/httpd-apreq-2/Makefile.am,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- Makefile.am	8 Oct 2003 17:44:18 -0000	1.13
  +++ Makefile.am	15 Oct 2003 06:22:53 -0000	1.14
  @@ -8,6 +8,10 @@
   COOKIE_POD=glue/perl/blib/lib/Apache/Cookie.pod
   REQUEST_POD=glue/perl/blib/lib/Apache/Request.pod
   
  +bin_SCRIPTS = apreq2_config
  +
  +apreq2_config:
  +
   docs:	src env glue build/doxygen.conf
   	doxygen build/doxygen.conf
   
  
  
  
  1.2       +1 -1      httpd-apreq-2/apreq2-config.in
  
  Index: apreq2-config.in
  ===================================================================
  RCS file: /home/cvs/httpd-apreq-2/apreq2-config.in,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- apreq2-config.in	13 Oct 2003 18:24:46 -0000	1.1
  +++ apreq2-config.in	15 Oct 2003 06:22:53 -0000	1.2
  @@ -62,7 +62,7 @@
   exec_prefix="@exec_prefix@"
   bindir="@bindir@"
   libdir="@libdir@"
  -includedir="@includedir@"
  +includedir="@includedir@/@APREQ_LIBNAME@"
   
   LIBS="@APREQ_EXPORT_LIBS@"
   INCLUDES="@APREQ_INCLUDES@"
  
  
  
  1.7       +1 -1      httpd-apreq-2/configure.ac
  
  Index: configure.ac
  ===================================================================
  RCS file: /home/cvs/httpd-apreq-2/configure.ac,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- configure.ac	13 Oct 2003 18:24:46 -0000	1.6
  +++ configure.ac	15 Oct 2003 06:22:53 -0000	1.7
  @@ -1,7 +1,7 @@
   dnl Process this file with autoconf to produce a configure script.
   
   AC_PREREQ(2.13)
  -AC_INIT(libapreq - Apache Request Library, 2.0, apreq-dev@httpd.apache.org, apreq2)
  +AC_INIT(libapreq - Apache Request Library, 2.0, apreq-dev@httpd.apache.org, libapreq2)
   
   dnl this:
   dnl AC_CONFIG_AUX_DIR(build)
  
  
  
  1.13      +3 -1      httpd-apreq-2/src/Makefile.am
  
  Index: Makefile.am
  ===================================================================
  RCS file: /home/cvs/httpd-apreq-2/src/Makefile.am,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- Makefile.am	13 Oct 2003 18:24:47 -0000	1.12
  +++ Makefile.am	15 Oct 2003 06:22:53 -0000	1.13
  @@ -4,9 +4,11 @@
   lib_LTLIBRARIES = lib@APREQ_LIBNAME@.la
   lib@APREQ_LIBNAME@_la_SOURCES = apreq.c apreq_version.c apreq_cookie.c \
                          apreq_params.c apreq_parsers.c
  -include_HEADERS = apreq.h apreq_version.h apreq_cookie.h \
  +pkginclude_HEADERS = apreq.h apreq_version.h apreq_cookie.h \
                     apreq_params.h  apreq_env.h apreq_parsers.h
   lib@APREQ_LIBNAME@_la_LDFLAGS = -version-info @APREQ_LIBTOOL_VERSION@
  +
  +pkgincludedir = $(includedir)/@APREQ_LIBNAME@
   
   if BUILD_APR