modcplusplus-devel Mailing List for mod_cplusplus (Page 17)
Brought to you by:
gr84b8,
johnksterling
You can subscribe to this list here.
2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(4) |
Nov
(14) |
Dec
(4) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
|
Feb
(44) |
Mar
(8) |
Apr
(33) |
May
(5) |
Jun
(5) |
Jul
(2) |
Aug
(4) |
Sep
(2) |
Oct
|
Nov
|
Dec
|
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(26) |
Sep
(9) |
Oct
|
Nov
(5) |
Dec
|
2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(11) |
Jun
(7) |
Jul
(2) |
Aug
(11) |
Sep
|
Oct
|
Nov
(7) |
Dec
(4) |
2005 |
Jan
(13) |
Feb
(7) |
Mar
(10) |
Apr
(11) |
May
(2) |
Jun
|
Jul
(8) |
Aug
(9) |
Sep
|
Oct
(4) |
Nov
|
Dec
|
2006 |
Jan
(12) |
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
(6) |
2007 |
Jan
(4) |
Feb
(13) |
Mar
(10) |
Apr
(56) |
May
(69) |
Jun
(93) |
Jul
(116) |
Aug
(62) |
Sep
(15) |
Oct
(14) |
Nov
(18) |
Dec
(11) |
2008 |
Jan
(8) |
Feb
(13) |
Mar
(32) |
Apr
(22) |
May
(15) |
Jun
(10) |
Jul
(18) |
Aug
(10) |
Sep
(16) |
Oct
(12) |
Nov
(41) |
Dec
(40) |
2009 |
Jan
(33) |
Feb
(14) |
Mar
(32) |
Apr
(47) |
May
(103) |
Jun
(100) |
Jul
(72) |
Aug
(21) |
Sep
(22) |
Oct
(30) |
Nov
(7) |
Dec
(19) |
2010 |
Jan
(8) |
Feb
(7) |
Mar
(40) |
Apr
(53) |
May
(67) |
Jun
(62) |
Jul
(26) |
Aug
(37) |
Sep
(13) |
Oct
(3) |
Nov
|
Dec
|
2011 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Mod C. C. L. <mod...@so...> - 2003-11-15 15:42:03
|
Mod Cplusplus CVS committal Author : johnksterling Project : apr_cplusplus Module : include Dir : apr_cplusplus/include Modified Files: cpp_time.h Log Message: fix this to compile since there is some interest in looking at it again =================================================================== RCS file: /cvsroot/modcplusplus/apr_cplusplus/include/cpp_time.h,v retrieving revision 1.1 retrieving revision 1.2 diff -u -3 -r1.1 -r1.2 --- cpp_time.h 19 Feb 2002 04:16:02 -0000 1.1 +++ cpp_time.h 15 Nov 2003 15:41:32 -0000 1.2 @@ -7,26 +7,26 @@ private: apr_time_t mTime; apr_pool_t *mPool; - apr_exploded_time_t *mXTime; + apr_time_exp_t *mXTime; void explode(void); protected: public: APRTime(apr_pool_t *pPool); APRTime(apr_pool_t *pPool, apr_time_t pTime); APRTime(apr_pool_t *pPool, time_t pAnsiTime); - APRTime(apr_pool_t *pPool, apr_exploded_time_t *pExplodedTime); + APRTime(apr_pool_t *pPool, apr_time_exp_t *pExplodedTime); ~APRTime(void); apr_time_t Value(void); - apr_exploded_time_t *ExplodedTime(apr_int32_t offset); - apr_exploded_time_t *ExplodedGMTTime(void); - apr_exploded_time_t *ExplodedLocalTime(void); + apr_time_exp_t *ExplodedTime(apr_int32_t offset); + apr_time_exp_t *ExplodedGMTTime(void); + apr_time_exp_t *ExplodedLocalTime(void); char *RFC822Date(void); char *CTime(void); char *FormattedTime(apr_size_t *retsize, apr_size_t max, const char *format); void Sleep(void); - /* below are members of a localtime apr_exploded_t */ + /* below are members of a localtime apr_time_exp_t */ apr_int32_t LocalMicroSeconds(void); apr_int32_t LocalSeconds(void); apr_int32_t LocalMinutes(void); |
From: Mod C. C. L. <mod...@so...> - 2003-11-15 15:41:33
|
Mod Cplusplus CVS committal Author : johnksterling Project : apr_cplusplus Module : src Dir : apr_cplusplus/src/times Modified Files: cpp_times.cpp Log Message: fix this to compile since there is some interest in looking at it again =================================================================== RCS file: /cvsroot/modcplusplus/apr_cplusplus/src/times/cpp_times.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -u -3 -r1.1 -r1.2 --- cpp_times.cpp 19 Feb 2002 04:14:42 -0000 1.1 +++ cpp_times.cpp 15 Nov 2003 15:41:32 -0000 1.2 @@ -14,17 +14,17 @@ APRTime::APRTime(apr_pool_t *pPool, time_t pAnsiTime) { mPool = pPool; - apr_status_t status = apr_ansi_time_to_apr_time(&mTime, pAnsiTime); + apr_status_t status = apr_time_ansi_put(&mTime, pAnsiTime); mXTime = NULL; if (status != APR_SUCCESS) { /* throw exception ? */ } } -APRTime::APRTime(apr_pool_t *pPool, apr_exploded_time_t *pExplodedTime) { +APRTime::APRTime(apr_pool_t *pPool, apr_time_exp_t *pExplodedTime) { mPool = pPool; mXTime = pExplodedTime;; - apr_status_t status = apr_implode_time(&mTime, mXTime); + apr_status_t status = apr_time_exp_get(&mTime, mXTime); if (status != APR_SUCCESS) { /* throw exception ? */ } @@ -42,16 +42,16 @@ if (mXTime) { return; } - mXTime = (apr_exploded_time_t *)apr_pcalloc(mPool, sizeof(*mXTime)); + mXTime = (apr_time_exp_t *)apr_pcalloc(mPool, sizeof(*mXTime)); apr_status_t status = apr_explode_localtime(mXTime, mTime); if (status != APR_SUCCESS) { /* XXX throw exception */ } } -apr_exploded_time_t *APRTime::ExplodedTime(apr_int32_t offset) { - apr_exploded_time_t *xt = - (apr_exploded_time_t *)apr_pcalloc(mPool, sizeof(*xt)); +apr_time_exp_t *APRTime::ExplodedTime(apr_int32_t offset) { + apr_time_exp_t *xt = + (apr_time_exp_t *)apr_pcalloc(mPool, sizeof(*xt)); /* though mXTime may already be set, use APR fn rather than perform our * own logic. the goal is to wrap. */ @@ -62,20 +62,20 @@ return xt; } -apr_exploded_time_t *APRTime::ExplodedGMTTime(void) { - apr_exploded_time_t *xt = - (apr_exploded_time_t *)apr_pcalloc(mPool, sizeof(*xt)); +apr_time_exp_t *APRTime::ExplodedGMTTime(void) { + apr_time_exp_t *xt = + (apr_time_exp_t *)apr_pcalloc(mPool, sizeof(*xt)); /* though mXTime may already be set, use APR fn rather than perform our * own logic. the goal is to wrap. */ - apr_status_t status = apr_explode_gmt(xt, mTime); + apr_status_t status = apr_time_exp_gmt(xt, mTime); if (status != APR_SUCCESS) { /* XXX throw exception */ } return xt; } -apr_exploded_time_t *APRTime::ExplodedLocalTime(void) { +apr_time_exp_t *APRTime::ExplodedLocalTime(void) { explode(); return mXTime; } @@ -114,7 +114,7 @@ apr_sleep(mTime); } -/* below are members of localtime apr_exploded_time_t */ +/* below are members of localtime apr_time_exp_t */ apr_int32_t APRTime::LocalMicroSeconds(void) { explode(); return mXTime->tm_usec; |
From: Mod C. C. L. <mod...@so...> - 2003-09-27 15:20:32
|
Mod Cplusplus CVS committal Author : johnksterling Project : mod_cplusplus Module : docs Dir : mod_cplusplus/docs Added Files: .cvsignore Removed Files: .cvsingore Log Message: oops, move file name |
From: Mod C. C. L. <mod...@so...> - 2003-09-27 15:20:25
|
Mod Cplusplus CVS committal Author : johnksterling Module : mod_cplusplus Dir : mod_cplusplus Modified Files: Makefile.am Log Message: add install target to the build script which simply copies the module into the modules directory and adds a loadfile if necessary =================================================================== RCS file: /cvsroot/modcplusplus/mod_cplusplus/Makefile.am,v retrieving revision 1.5 retrieving revision 1.6 diff -u -3 -r1.5 -r1.6 --- Makefile.am 16 Aug 2003 01:34:03 -0000 1.5 +++ Makefile.am 27 Sep 2003 15:13:42 -0000 1.6 @@ -3,3 +3,11 @@ install-sh missing mkinstalldirs config.sub Makefile.am Makefile.in \ configure.in INSTALL ChangeLog NEWS libtool include \ mod_cplusplus.dsp depcomp + +install: + @echo ***installing module.......*** + cp src/.libs/libmod_cplusplus.so @HTTPD_DIR@/modules + @echo ***checking config file......*** + if ! grep cplusplus /home/www/apache-2.0/conf/httpd.conf; then echo ***updating config file....***;@echo 'LoadModule cplusplus_module @HTTPD_DIR@/modules/libmod_cplusplus.so' >> @HTTPD_DIR@/conf/httpd.conf ; else echo ***config file already contains modcplusplus***; fi + @echo ***install complete*** + |
From: Mod C. C. L. <mod...@so...> - 2003-09-27 15:20:01
|
Mod Cplusplus CVS committal Author : johnksterling Project : mod_cplusplus Module : docs Dir : mod_cplusplus/docs Added Files: .cvsingore Log Message: add ignore file for docs |
From: Mod C. C. L. <mod...@so...> - 2003-09-26 01:37:10
|
Mod Cplusplus CVS committal Author : johnksterling Module : mod_cplusplus Dir : mod_cplusplus Modified Files: INSTALL Log Message: no longer generate configure scripts =================================================================== RCS file: /cvsroot/modcplusplus/mod_cplusplus/INSTALL,v retrieving revision 1.3 retrieving revision 1.4 diff -u -3 -r1.3 -r1.4 --- INSTALL 21 Apr 2002 18:58:05 -0000 1.3 +++ INSTALL 26 Sep 2003 01:36:38 -0000 1.4 @@ -1 +1 @@ -./configure --with-httpd=/path/to/installed/httpd-2.0 +./autogen.sh --with-httpd=/path/to/installed/httpd-2.0 |
From: Mod C. C. L. <mod...@so...> - 2003-09-26 01:31:24
|
Mod Cplusplus CVS committal Author : johnksterling Module : mod_cplusplus Dir : mod_cplusplus Modified Files: .cvsignore Log Message: ignore new files =================================================================== RCS file: /cvsroot/modcplusplus/mod_cplusplus/.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 Sep 2003 01:30:52 -0000 1.2 @@ -8,6 +8,12 @@ config.status config.sub configure +depcomp docs +install-sh +missing +mkinstalldirs libtool ltmain.sh +.DS_Store +autom4te.cache |
From: Mod C. C. L. <mod...@so...> - 2003-09-26 01:30:54
|
Mod Cplusplus CVS committal Author : johnksterling Project : mod_cplusplus Module : src Dir : mod_cplusplus/src Modified Files: .cvsignore Log Message: ignore new files =================================================================== RCS file: /cvsroot/modcplusplus/mod_cplusplus/src/.cvsignore,v retrieving revision 1.2 retrieving revision 1.3 diff -u -3 -r1.2 -r1.3 --- .cvsignore 26 Apr 2002 18:57:00 -0000 1.2 +++ .cvsignore 26 Sep 2003 01:30:52 -0000 1.3 @@ -10,5 +10,6 @@ libmod_cplusplus.la mod_cplusplus.lo apache_output_buffer.lo +env_hash.lo env_value.lo -request_env.lo \ No newline at end of file +request_env.lo |
From: Mod C. C. L. <mod...@so...> - 2003-09-26 01:26:00
|
Mod Cplusplus CVS committal Author : johnksterling Project : mod_cplusplus Module : src Dir : mod_cplusplus/src Modified Files: Makefile.am Log Message: add a stubbed out hash implementation to support the env_vars - they used to used stdlib hash library, but that crap is barely portable across versions. =================================================================== RCS file: /cvsroot/modcplusplus/mod_cplusplus/src/Makefile.am,v retrieving revision 1.7 retrieving revision 1.8 diff -u -3 -r1.7 -r1.8 --- Makefile.am 26 Apr 2002 18:57:00 -0000 1.7 +++ Makefile.am 26 Sep 2003 01:25:59 -0000 1.8 @@ -8,6 +8,7 @@ cpp_server.cpp \ apache_output_buffer.cpp \ request_env.cpp \ + env_hash.cpp \ env_value.cpp |
From: Mod C. C. L. <mod...@so...> - 2003-09-26 01:25:17
|
Mod Cplusplus CVS committal Author : johnksterling Project : mod_cplusplus Module : src Dir : mod_cplusplus/src Added Files: env_hash.cpp Log Message: add a stubbed out hash implementation to support the env_vars - they used to used stdlib hash library, but that crap is barely portable across versions. |
From: Mod C. C. L. <mod...@so...> - 2003-09-26 01:25:01
|
Mod Cplusplus CVS committal Author : johnksterling Project : mod_cplusplus Module : include Dir : mod_cplusplus/include Added Files: env_hash.h Log Message: add a stubbed out hash implementation to support the env_vars - they used to used stdlib hash library, but that crap is barely portable across versions. |
From: Mod C. C. L. <mod...@so...> - 2003-08-20 10:06:12
|
Mod Cplusplus CVS committal Author : johnksterling Module : mod_cplusplus Dir : mod_cplusplus Modified Files: configure.in Log Message: perform replacement =================================================================== RCS file: /cvsroot/modcplusplus/mod_cplusplus/configure.in,v retrieving revision 1.15 retrieving revision 1.16 diff -u -3 -r1.15 -r1.16 --- configure.in 18 Aug 2003 01:21:40 -0000 1.15 +++ configure.in 20 Aug 2003 01:36:54 -0000 1.16 @@ -50,4 +50,4 @@ 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) +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 docs/Makefile) |
From: Mod C. C. L. <mod...@so...> - 2003-08-20 04:29:02
|
Mod Cplusplus CVS committal Author : johnksterling Project : mod_cplusplus Module : docs Dir : mod_cplusplus/docs Added Files: Makefile test_handler.cpp Log Message: add an example makefile and handler |
From: Mod C. C. L. <mod...@so...> - 2003-08-20 02:41:37
|
Mod Cplusplus CVS committal Author : johnksterling Project : mod_cplusplus Module : docs Dir : mod_cplusplus/docs Added Files: Makefile.in Removed Files: Makefile Log Message: generate real makefile |
From: Mod C. C. L. <mod...@so...> - 2003-08-20 02:32:36
|
Mod Cplusplus CVS committal Author : johnksterling Project : mod_cplusplus Module : docs Dir : mod_cplusplus/docs Log Message: Directory /cvsroot/modcplusplus/mod_cplusplus/docs added to the repository |
From: Mod C. C. L. <mod...@so...> - 2003-08-20 02:02:43
|
Mod Cplusplus CVS committal Author : johnksterling Project : mod_cplusplus Module : docs Dir : mod_cplusplus/docs Modified Files: Makefile Added Files: README Log Message: more tweaks to the sample docs =================================================================== RCS file: /cvsroot/modcplusplus/mod_cplusplus/docs/Makefile,v retrieving revision 1.1 retrieving revision 1.2 diff -u -3 -r1.1 -r1.2 --- Makefile 20 Aug 2003 01:16:13 -0000 1.1 +++ Makefile 20 Aug 2003 01:21:18 -0000 1.2 @@ -1,2 +1,2 @@ test_handler.so: - g++ -I../mod_cplusplus/include -I../apache-2.0/include -L../mod_cplusplus/src/.libs -lmod_cplusplus -L../apache-2.0/lib -lapr-0 -laprutil-0 -o test_handler.so -shared test_handler.cpp + g++ -I../include -I../../apache-2.0/include -o test_handler.so -shared test_handler.cpp |
From: Mod C. C. L. <mod...@so...> - 2003-08-18 01:41:19
|
Mod Cplusplus CVS committal Author : johnksterling Project : mod_cplusplus Module : src Dir : mod_cplusplus/src Modified Files: apache_output_buffer.cpp request_env.cpp Log Message: remove hash deps =================================================================== RCS file: /cvsroot/modcplusplus/mod_cplusplus/src/apache_output_buffer.cpp,v retrieving revision 1.5 retrieving revision 1.6 diff -u -3 -r1.5 -r1.6 --- apache_output_buffer.cpp 15 Aug 2003 22:46:03 -0000 1.5 +++ apache_output_buffer.cpp 18 Aug 2003 01:23:36 -0000 1.6 @@ -21,7 +21,7 @@ this->signal_sending(); int ret_val; - ret_val = ap_rputs(memory_, r_ ); + ret_val = ap_rputs(memory_.c_str(), r_ ); if ( -1 != ret_val ) { memory_ = ""; } =================================================================== RCS file: /cvsroot/modcplusplus/mod_cplusplus/src/request_env.cpp,v retrieving revision 1.4 retrieving revision 1.5 diff -u -3 -r1.4 -r1.5 --- request_env.cpp 15 Aug 2003 22:46:03 -0000 1.4 +++ request_env.cpp 18 Aug 2003 01:23:36 -0000 1.5 @@ -25,7 +25,7 @@ output_buffer_.flush(); } -request_env::request_env( request_rec *r, bool buffer = false ) : +request_env::request_env( request_rec *r, bool buffer ) : /* seems silly/dangerous to to do this, as output_buffer * isn't defined yet, but is needed to keep gcc 3.x happy */ @@ -36,7 +36,7 @@ this->rdbuf( &output_buffer_ ); std::string cur_env; - env_value *pPtr=0; + env_value *pEnv=0; len_read_=0; @@ -47,16 +47,16 @@ char buf[ENV_READ_LEN]; while( (len_read_ = ap_get_client_block(r_, buf, sizeof(buf)-1) ) > 0) { buf[len_read_]='\0'; - this->decode( buf,pPtr,cur_env ); + this->decode( buf,pEnv,cur_env ); } } else { if (r->args) - this->decode( r->args,pPtr,cur_env ); + this->decode( r->args,pEnv,cur_env ); } } void -request_env::decode( char *ch, env_value *pPtr, std::string& pStr ){ +request_env::decode( char *ch, env_value *pEnv, std::string& pStr ){ /* basic steps in alogorith taken from: * http://www.papillion.ne.us/~sthomas/cgi_in_c.html @@ -78,10 +78,10 @@ /* have we reached the end of the curent name? */ case '=': if ( ! pStr.empty() ) { - pPtr = this->search(pStr); - if ( ! pPtr ) { - pPtr = new env_value; - env_[pStr] =pPtr; + pEnv = this->search(pStr); + if ( ! pEnv ) { + pEnv = new env_value; + env_.push_back(pEnv); } pStr = ""; } @@ -91,8 +91,8 @@ * and are switching to a new name? */ case '&': - if ( ( ! pStr.empty() ) && pPtr) { - pPtr->add_value( pStr ); + if ( ( ! pStr.empty() ) && pEnv) { + pEnv->add_value( pStr ); pStr = ""; } break; @@ -121,8 +121,8 @@ break; } } - if ( ( ! pStr.empty() ) && pPtr){ - pPtr->add_value( pStr ); + if ( ( ! pStr.empty() ) && pEnv){ + pEnv->add_value( pStr ); } } @@ -133,11 +133,6 @@ request_env::~request_env(){ output_buffer_.flush(); - - for ( hash_type::const_iterator it = env_.begin(); - it != env_.end(); it++ ) { - delete (*it).second; - } } bool @@ -157,29 +152,13 @@ env_value* request_env::search(const std::string& key){ - env_value *ret_val = 0; - - hash_type::const_iterator it = env_.find(key); - - if ( it != env_.end() ){ - ret_val = (*it).second; - } - return ret_val; + /** XXX-jks implement me **/ } void request_env::dump(){ (*this) << "I recieved: " << env_.size() << " elements\n"; - - for( hash_type::const_iterator it = env_.begin(); - it != env_.end(); it++ ) { - (*this) << (*it).first << " has " << (*it).second->num_vals() << " values\n"; - - for ( int i = 0; i < (*it).second->num_vals() ; i++ ){ - (*this) << " " << (*(*it).second)[i] << "\n"; - } - } } bool |
From: Mod C. C. L. <mod...@so...> - 2003-08-18 01:31:01
|
Mod Cplusplus CVS committal Author : johnksterling Module : mod_cplusplus Dir : mod_cplusplus Modified Files: configure.in Log Message: add hack to link in the libs if were in gcc 3.2 =================================================================== RCS file: /cvsroot/modcplusplus/mod_cplusplus/configure.in,v retrieving revision 1.14 retrieving revision 1.15 diff -u -3 -r1.14 -r1.15 --- configure.in 15 Aug 2003 23:20:38 -0000 1.14 +++ configure.in 18 Aug 2003 01:21:40 -0000 1.15 @@ -38,7 +38,7 @@ AC_MSG_ERROR(--with-httpd not given) ]) -AC_CHECK_LIB(stdc++, __ti7ostream, LIB_STDCPP="-lstdc++") +AC_CHECK_LIB(stdc++, __gxx_personality_v0, LIB_STDCPP="-lstdc++") if test "$LIB_STDCPP" == "" ; then CPPFLAGS="$CPPFLAGS -DNO_STDCPP" fi |
From: Mod C. C. L. <mod...@so...> - 2003-08-18 01:22:19
|
Mod Cplusplus CVS committal Author : johnksterling Project : mod_cplusplus Module : include Dir : mod_cplusplus/include Modified Files: request_env.h Log Message: get rid of nonstandard stl class deps =================================================================== RCS file: /cvsroot/modcplusplus/mod_cplusplus/include/request_env.h,v retrieving revision 1.3 retrieving revision 1.4 diff -u -3 -r1.3 -r1.4 --- request_env.h 19 Jun 2002 14:11:07 -0000 1.3 +++ request_env.h 18 Aug 2003 01:22:17 -0000 1.4 @@ -12,12 +12,6 @@ #endif /* WIN32 */ #include "apache_filters.h" -#if (defined (__GNUC__) && (__GNUC__ < 3)) -#include <hash_map> -#else -#include <ext/hash_map> -#endif - #include <functional> #include <vector> #include <string> @@ -57,22 +51,15 @@ ~request_env(); private: - - struct str_hash { - std::size_t inline operator()(const std::string& key) const - {return std::hash<const char*>()( key.c_str());} - }; - - typedef std::hash_map< std::string, env_value*, str_hash > hash_type; - + apache_output_buffer output_buffer_; request_rec *r_; - + std::vector<env_value *> env_; + env_value* search(const std::string& key); bool truncated_; void decode( char *ch, env_value *pPtr, std::string& pStr ); - hash_type env_; apr_size_t len_read_; bool is_post_; |
From: Mod C. C. L. <mod...@so...> - 2003-08-16 01:42:58
|
Mod Cplusplus CVS committal Author : johnksterling Project : mod_cplusplus Module : example Dir : mod_cplusplus/example/handler Modified Files: Makefile.am Log Message: fix up the dist builder and rebundle =================================================================== RCS file: /cvsroot/modcplusplus/mod_cplusplus/example/handler/Makefile.am,v retrieving revision 1.3 retrieving revision 1.4 diff -u -3 -r1.3 -r1.4 --- Makefile.am 21 Apr 2002 18:58:09 -0000 1.3 +++ Makefile.am 16 Aug 2003 01:34:03 -0000 1.4 @@ -1,5 +1,5 @@ CLEANFILES = libtest_handler.so *~ -DISTFILES = test_auth.h test_handler.h test_auth.cpp test_handler.cpp Makefile.am +DISTFILES = test_auth.h test_handler.h test_auth.cpp test_handler.cpp Makefile.am Makefile.in libtest_handler_la_SOURCES = test_handler.cpp test_auth.cpp lib_LTLIBRARIES = libtest_handler.la |
From: Mod C. C. L. <mod...@so...> - 2003-08-16 01:42:57
|
Mod Cplusplus CVS committal Author : johnksterling Project : mod_cplusplus Module : example Dir : mod_cplusplus/example/input_filter Modified Files: Makefile.am Log Message: fix up the dist builder and rebundle =================================================================== RCS file: /cvsroot/modcplusplus/mod_cplusplus/example/input_filter/Makefile.am,v retrieving revision 1.2 retrieving revision 1.3 diff -u -3 -r1.2 -r1.3 --- Makefile.am 21 Apr 2002 18:58:09 -0000 1.2 +++ Makefile.am 16 Aug 2003 01:34:04 -0000 1.3 @@ -1,4 +1,4 @@ CLEANFILES = libtest_input.so *~ -DISTFILES = test_input.h test_input.cpp Makefile.am +DISTFILES = test_input.h test_input.cpp Makefile.am Makefile.in libtest_input_la_SOURCES = test_input.cpp lib_LTLIBRARIES = libtest_input.la |
From: Mod C. C. L. <mod...@so...> - 2003-08-16 01:42:57
|
Mod Cplusplus CVS committal Author : johnksterling Project : mod_cplusplus Module : example Dir : mod_cplusplus/example/output_filter Modified Files: Makefile.am Log Message: fix up the dist builder and rebundle =================================================================== RCS file: /cvsroot/modcplusplus/mod_cplusplus/example/output_filter/Makefile.am,v retrieving revision 1.2 retrieving revision 1.3 diff -u -3 -r1.2 -r1.3 --- Makefile.am 21 Apr 2002 18:58:09 -0000 1.2 +++ Makefile.am 16 Aug 2003 01:34:04 -0000 1.3 @@ -1,4 +1,4 @@ CLEANFILES = libtest_output.so *~ -DISTFILES = test_output.h test_output.cpp Makefile.am +DISTFILES = test_output.h test_output.cpp Makefile.am Makefile.in libtest_output_la_SOURCES = test_output.cpp lib_LTLIBRARIES = libtest_output.la |
From: Mod C. C. L. <mod...@so...> - 2003-08-16 01:42:57
|
Mod Cplusplus CVS committal Author : johnksterling Project : mod_cplusplus Module : example Dir : mod_cplusplus/example/protocol Modified Files: Makefile.am Log Message: fix up the dist builder and rebundle =================================================================== RCS file: /cvsroot/modcplusplus/mod_cplusplus/example/protocol/Makefile.am,v retrieving revision 1.2 retrieving revision 1.3 diff -u -3 -r1.2 -r1.3 --- Makefile.am 21 Apr 2002 18:58:09 -0000 1.2 +++ Makefile.am 16 Aug 2003 01:34:04 -0000 1.3 @@ -1,4 +1,4 @@ CLEANFILES = libtest_protocol.so *~ -DISTFILES = test_protocol.h test_protocol.cpp Makefile.am +DISTFILES = test_protocol.h test_protocol.cpp Makefile.am Makefile.in libtest_protocol_la_SOURCES = test_protocol.cpp lib_LTLIBRARIES = libtest_protocol.la |
From: Mod C. C. L. <mod...@so...> - 2003-08-16 01:42:57
|
Mod Cplusplus CVS committal Author : johnksterling Project : mod_cplusplus Module : test Dir : mod_cplusplus/test Modified Files: Makefile.am Log Message: fix up the dist builder and rebundle =================================================================== RCS file: /cvsroot/modcplusplus/mod_cplusplus/test/Makefile.am,v retrieving revision 1.2 retrieving revision 1.3 diff -u -3 -r1.2 -r1.3 --- Makefile.am 21 Apr 2002 18:58:10 -0000 1.2 +++ Makefile.am 16 Aug 2003 01:34:04 -0000 1.3 @@ -1,4 +1,4 @@ -DISTFILES = t Apache-Test Makefile.am +DISTFILES = t Apache-Test Makefile.am Makefile.in check: APXS=${HTTPD_DIR}/bin/apxs; \ export APXS; \ |
From: Mod C. C. L. <mod...@so...> - 2003-08-16 01:42:57
|
Mod Cplusplus CVS committal Author : johnksterling Module : mod_cplusplus Dir : mod_cplusplus Modified Files: Makefile.am Log Message: fix up the dist builder and rebundle =================================================================== RCS file: /cvsroot/modcplusplus/mod_cplusplus/Makefile.am,v retrieving revision 1.4 retrieving revision 1.5 diff -u -3 -r1.4 -r1.5 --- Makefile.am 19 Jun 2002 14:39:19 -0000 1.4 +++ Makefile.am 16 Aug 2003 01:34:03 -0000 1.5 @@ -1,5 +1,5 @@ SUBDIRS = src example test DISTFILES = AUTHORS README COPYING aclocal.m4 config.guess configure \ - install-sh missing mkinstalldirs config.sub Makefile.am \ + install-sh missing mkinstalldirs config.sub Makefile.am Makefile.in \ configure.in INSTALL ChangeLog NEWS libtool include \ - mod_cplusplus.dsp + mod_cplusplus.dsp depcomp |