Mod Cplusplus CVS committal
Author : johnksterling
Project : mod_cplusplus
Module : src
Dir : mod_cplusplus/src
Modified Files:
apache_output_buffer.cpp env_value.cpp request_env.cpp
Log Message:
now mod_cplusplus runs on OS X with apache. only need to softlink glibtoolize to libtoolize.
===================================================================
RCS file: /cvsroot/modcplusplus/mod_cplusplus/src/apache_output_buffer.cpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- apache_output_buffer.cpp 19 Jun 2002 14:11:07 -0000 1.2
+++ apache_output_buffer.cpp 27 Aug 2002 03:35:51 -0000 1.3
@@ -1,5 +1,6 @@
#define EXPORT_MODCPP
+#ifndef NO_STDCPP
#include "apache_output_buffer.h"
#include "http_log.h"
@@ -77,3 +78,4 @@
content_type_=type;
return ! output_anything_;
}
+#endif
===================================================================
RCS file: /cvsroot/modcplusplus/mod_cplusplus/src/env_value.cpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- env_value.cpp 19 Jun 2002 14:11:07 -0000 1.2
+++ env_value.cpp 27 Aug 2002 03:35:51 -0000 1.3
@@ -1,4 +1,5 @@
#define EXPORT_MODCPP
+#ifndef NO_STDCPP
#include "env_value.h"
@@ -33,3 +34,4 @@
env_value::begin(){
return vals_.begin();
};
+#endif
===================================================================
RCS file: /cvsroot/modcplusplus/mod_cplusplus/src/request_env.cpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- request_env.cpp 19 Jun 2002 14:11:07 -0000 1.2
+++ request_env.cpp 27 Aug 2002 03:35:51 -0000 1.3
@@ -1,4 +1,5 @@
#define EXPORT_MODCPP
+#ifndef NO_STDCPP
#include "request_env.h"
@@ -190,3 +191,4 @@
request_env::operator[](const std::string& name ){
return this->search( name );
}
+#endif
|