Mod Cplusplus CVS committal
Author : gr84b8
Project : mod_cplusplus
Module : src
Dir : mod_cplusplus/src
Modified Files:
.cvsignore Makefile.am apache_handler.cpp
Added Files:
apache_output_buffer.cpp env_value.cpp request_env.cpp
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/src/.cvsignore,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- .cvsignore 21 Apr 2002 19:06:31 -0000 1.1
+++ .cvsignore 26 Apr 2002 18:57:00 -0000 1.2
@@ -9,3 +9,6 @@
cpp_server.lo
libmod_cplusplus.la
mod_cplusplus.lo
+apache_output_buffer.lo
+env_value.lo
+request_env.lo
\ No newline at end of file
===================================================================
RCS file: /cvsroot/modcplusplus/mod_cplusplus/src/Makefile.am,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- Makefile.am 11 Jun 2001 00:42:18 -0000 1.6
+++ Makefile.am 26 Apr 2002 18:57:00 -0000 1.7
@@ -1,11 +1,17 @@
CLEANFILES = .libs/libmod_cplusplus.so *~
+
libmod_cplusplus_la_SOURCES = mod_cplusplus.c \
apache_handler.cpp \
apache_filters.cpp \
apache_protocol.cpp \
cpp_request.cpp \
- cpp_server.cpp
+ cpp_server.cpp \
+ apache_output_buffer.cpp \
+ request_env.cpp \
+ env_value.cpp
+
+libmod_cplusplus_la_LIBADD = $(LIB_STDCPP)
lib_LTLIBRARIES = libmod_cplusplus.la
make_so:
===================================================================
RCS file: /cvsroot/modcplusplus/mod_cplusplus/src/apache_handler.cpp,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -3 -r1.9 -r1.10
--- apache_handler.cpp 4 Jun 2001 00:40:35 -0000 1.9
+++ apache_handler.cpp 26 Apr 2002 18:57:00 -0000 1.10
@@ -29,8 +29,6 @@
{
cpp_server_rec *server_rec = NULL;
- ap_log_error(APLOG_MARK, APLOG_NOERRNO|APLOG_ERR, 0, NULL,
- "CPP HANDLER!!!!");
if( !name ) {
return NULL;
}
|