Mod Cplusplus CVS committal
Author : johnksterling
Project : mod_cplusplus
Module : include
Dir : mod_cplusplus/include
Modified Files:
apache_output_buffer.h
Log Message:
update to remove rope dependency and update test suite so it runs :)
===================================================================
RCS file: /cvsroot/modcplusplus/mod_cplusplus/include/apache_output_buffer.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- apache_output_buffer.h 19 Jun 2002 14:11:07 -0000 1.4
+++ apache_output_buffer.h 15 Aug 2003 22:46:03 -0000 1.5
@@ -11,12 +11,6 @@
#define MODCPP_API
#endif /* WIN32 */
-#if (defined (__GNUC__) && (__GNUC__ < 3))
-#include <rope>
-#else
-#include <ext/rope>
-#endif
-
#include "httpd.h"
#include "http_request.h"
#include "http_config.h"
@@ -58,11 +52,10 @@
inline void signal_sending();
inline void send_http_header();
request_rec *r_;
- std::crope memory;
+ std::string memory_;
bool buffer_;
bool output_anything_;
std::string content_type_;
};
-
#endif /* __APACHE_OUTPUT_BUFFER__ */
|