[Modcplusplus-devel] (gr84b8) mod_cplusplus ChangeLogconfigure.in
Brought to you by:
gr84b8,
johnksterling
From: Mod C. C. L. <mod...@so...> - 2002-04-26 18:57:32
|
Mod Cplusplus CVS committal Author : gr84b8 Module : mod_cplusplus Dir : mod_cplusplus Modified Files: ChangeLog configure.in Log Message: add in environ decoding, request streaming, and updated the test suite and exmaples (Submitted by: Nathan Stitt <na...@st...>) =================================================================== RCS file: /cvsroot/modcplusplus/mod_cplusplus/ChangeLog,v retrieving revision 1.6 retrieving revision 1.7 diff -u -3 -r1.6 -r1.7 --- ChangeLog 21 Apr 2002 19:13:27 -0000 1.6 +++ ChangeLog 26 Apr 2002 18:56:59 -0000 1.7 @@ -1,7 +1,15 @@ +2002-04-25 John K. Sterling <jo...@st...> + * Added enviroment decode class to decode request parameters. + Handles both get and post requests, and also features + cpp streams output support. Modified examples/handler/test_handler.cpp + to show an example of the classes in use. + Also added a few include gards in header files, + and created a dontdiff file to allow easier creation of patches. + (Submitted by: Nathan Stitt <na...@st...>) 2002-04-21 John K. Sterling <jo...@st...> * fix a bug in the example... we were not initializing the mHits counter. - (Submitted by: Nathan Stitt <na...@al...>) + (Submitted by: Nathan Stitt <na...@st...>) 2002-04-21 John K. Sterling <jo...@st...> * add cvs ignores for cleanliness 2002-04-21 John K. Sterling <jo...@st...> @@ -9,7 +17,7 @@ 2002-04-16 John K. Sterling <jo...@st...> * Add proper support for post and put to the examples. also added in the discard_request_body method - (Submitted by: Nathan Stitt <na...@al...>) + (Submitted by: Nathan Stitt <na...@st...>) 2001-11-12 John K. Sterling <jo...@st...> * Add support for stl strings (Submitted by: kurtb149 Kurt M. Brown) 2001-07-21 John K. Sterling <jo...@st...> =================================================================== RCS file: /cvsroot/modcplusplus/mod_cplusplus/configure.in,v retrieving revision 1.8 retrieving revision 1.9 diff -u -3 -r1.8 -r1.9 --- configure.in 21 Apr 2002 18:58:07 -0000 1.8 +++ configure.in 26 Apr 2002 18:56:59 -0000 1.9 @@ -32,11 +32,13 @@ AC_MSG_ERROR(--with-httpd not given) ]) +AC_CHECK_LIB(stdc++, __ti7ostream, LIB_STDCPP="-lstdc++") CPLUSPLUS_BUILDDIR=`pwd` CPPFLAGS="$CPPFLAGS -g -I$CPLUSPLUS_BUILDDIR/include" AC_SUBST(CPLUSPLUS_BUILDDIR) AC_SUBST(HTTPD_DIR) AC_SUBST(CFLAGS) +AC_SUBST(LIB_STDCPP) AC_OUTPUT(Makefile src/Makefile example/Makefile example/handler/Makefile example/input_filter/Makefile example/output_filter/Makefile example/protocol/Makefile test/Makefile test/t/conf/extra.conf) |