[complement-svn] SF.net SVN: complement: [1864] trunk/complement/extern/custom
Status: Pre-Alpha
Brought to you by:
complement
From: <com...@us...> - 2008-04-29 09:22:27
|
Revision: 1864 http://complement.svn.sourceforge.net/complement/?rev=1864&view=rev Author: complement Date: 2008-04-29 02:22:25 -0700 (Tue, 29 Apr 2008) Log Message: ----------- custom for libfcgi++ and fastcgi-daemon Modified Paths: -------------- trunk/complement/extern/custom/fcgi/libfcgi/Makefile.inc Added Paths: ----------- trunk/complement/extern/custom/fastcgi-daemon/ trunk/complement/extern/custom/fastcgi-daemon/include/ trunk/complement/extern/custom/fastcgi-daemon/include/settings.h trunk/complement/extern/custom/fastcgi-daemon/library/ trunk/complement/extern/custom/fastcgi-daemon/library/Makefile trunk/complement/extern/custom/fastcgi-daemon/library/Makefile.inc trunk/complement/extern/custom/fastcgi-daemon/main/ trunk/complement/extern/custom/fastcgi-daemon/main/Makefile trunk/complement/extern/custom/fastcgi-daemon/main/Makefile.inc trunk/complement/extern/custom/fcgi/libfcgi++/ trunk/complement/extern/custom/fcgi/libfcgi++/Makefile trunk/complement/extern/custom/fcgi/libfcgi++/Makefile.inc Added: trunk/complement/extern/custom/fastcgi-daemon/include/settings.h =================================================================== --- trunk/complement/extern/custom/fastcgi-daemon/include/settings.h (rev 0) +++ trunk/complement/extern/custom/fastcgi-daemon/include/settings.h 2008-04-29 09:22:25 UTC (rev 1864) @@ -0,0 +1,7 @@ + +#ifndef __SETTINGS_H +#define __SETTINGS_H + +#define HAVE_STLPORT_HASHMAP + +#endif // __SETTINGS_H Property changes on: trunk/complement/extern/custom/fastcgi-daemon/library ___________________________________________________________________ Name: svn:ignore + obj Added: trunk/complement/extern/custom/fastcgi-daemon/library/Makefile =================================================================== --- trunk/complement/extern/custom/fastcgi-daemon/library/Makefile (rev 0) +++ trunk/complement/extern/custom/fastcgi-daemon/library/Makefile 2008-04-29 09:22:25 UTC (rev 1864) @@ -0,0 +1,9 @@ +# -*- makefile -*- Time-stamp: <08/04/29 11:15:40 yeti> + +SRCROOT := ../../../../explore +# POST_INSTALL = ln -sf ${SO_NAME} $(INSTALL_LIB_DIR)/libboost_date_time.so + +include Makefile.inc +include ${SRCROOT}/Makefiles/gmake/top.mak + +INCLUDES += -I${BOOST_INCLUDE_DIR} -I${FASTCGIDAEMON_SRC}/../include -I${FASTCGIDAEMON_SRC} -I../include -I/usr/include/libxml2 Added: trunk/complement/extern/custom/fastcgi-daemon/library/Makefile.inc =================================================================== --- trunk/complement/extern/custom/fastcgi-daemon/library/Makefile.inc (rev 0) +++ trunk/complement/extern/custom/fastcgi-daemon/library/Makefile.inc 2008-04-29 09:22:25 UTC (rev 1864) @@ -0,0 +1,27 @@ +# -*- makefile -*- Time-stamp: <08/04/29 11:13:44 yeti> + +FASTCGIDAEMON_SRC = /export/hostel/labs/FastCGI/fastcgi-daemon-FCGID-1/library +LIBNAME = fastcgi-daemon +MAJOR = 0 +MINOR = 0 +PATCH = 0 +SRC_CPP = ${FASTCGIDAEMON_SRC}/component.cpp \ + ${FASTCGIDAEMON_SRC}/config.cpp \ + ${FASTCGIDAEMON_SRC}/cookie.cpp \ + ${FASTCGIDAEMON_SRC}/except.cpp \ + ${FASTCGIDAEMON_SRC}/functors.cpp \ + ${FASTCGIDAEMON_SRC}/handler.cpp \ + ${FASTCGIDAEMON_SRC}/handlerset.cpp \ + ${FASTCGIDAEMON_SRC}/helpers.cpp \ + ${FASTCGIDAEMON_SRC}/loader.cpp \ + ${FASTCGIDAEMON_SRC}/logger.cpp \ + ${FASTCGIDAEMON_SRC}/parser.cpp \ + ${FASTCGIDAEMON_SRC}/range.cpp \ + ${FASTCGIDAEMON_SRC}/request.cpp \ + ${FASTCGIDAEMON_SRC}/requestimpl.cpp \ + ${FASTCGIDAEMON_SRC}/stream.cpp \ + ${FASTCGIDAEMON_SRC}/util.cpp \ + ${FASTCGIDAEMON_SRC}/xml.cpp \ + ${FASTCGIDAEMON_SRC}/componentset.cpp \ + ${FASTCGIDAEMON_SRC}/component_factory.cpp \ + ${FASTCGIDAEMON_SRC}/component_context.cpp Property changes on: trunk/complement/extern/custom/fastcgi-daemon/main ___________________________________________________________________ Name: svn:ignore + obj Added: trunk/complement/extern/custom/fastcgi-daemon/main/Makefile =================================================================== --- trunk/complement/extern/custom/fastcgi-daemon/main/Makefile (rev 0) +++ trunk/complement/extern/custom/fastcgi-daemon/main/Makefile 2008-04-29 09:22:25 UTC (rev 1864) @@ -0,0 +1,15 @@ +# -*- makefile -*- Time-stamp: <08/04/29 12:25:34 yeti> + +SRCROOT := ../../../../explore +# POST_INSTALL = ln -sf ${SO_NAME} $(INSTALL_LIB_DIR)/libboost_date_time.so + +FCGI_SRC = /export/hostel/labs/FastCGI/fcgi-2.4.0 + +include Makefile.inc +include ${SRCROOT}/Makefiles/gmake/top.mak + +INCLUDES += -I${BOOST_INCLUDE_DIR} -I${FASTCGIDAEMON_SRC}/../include -I${FASTCGIDAEMON_SRC} -I../include -I/usr/include/libxml2 -I${FCGI_SRC}/include + +release-shared: LDLIBS += -L../../boost/libs/thread/${OUTPUT_DIR} -lboost_thread -L../../boost/libs/regex/${OUTPUT_DIR} -lboost_regex -L../../fcgi/libfcgi/${OUTPUT_DIR} -lfcgi -L../../fcgi/libfcgi++/${OUTPUT_DIR} -lfcgi++ -L../library/${OUTPUT_DIR} -lfastcgi-daemon -ldl -lxml2 + +# \ No newline at end of file Added: trunk/complement/extern/custom/fastcgi-daemon/main/Makefile.inc =================================================================== --- trunk/complement/extern/custom/fastcgi-daemon/main/Makefile.inc (rev 0) +++ trunk/complement/extern/custom/fastcgi-daemon/main/Makefile.inc 2008-04-29 09:22:25 UTC (rev 1864) @@ -0,0 +1,6 @@ +# -*- makefile -*- Time-stamp: <08/04/29 11:20:02 yeti> + +FASTCGIDAEMON_SRC = /export/hostel/labs/FastCGI/fastcgi-daemon-FCGID-1/library +PRGNAME = fastcgi-daemon +SRC_CPP = ${FASTCGIDAEMON_SRC}/../main/main.cpp \ + ${FASTCGIDAEMON_SRC}/../main/server.cpp Modified: trunk/complement/extern/custom/fcgi/libfcgi/Makefile.inc =================================================================== --- trunk/complement/extern/custom/fcgi/libfcgi/Makefile.inc 2008-04-28 16:56:16 UTC (rev 1863) +++ trunk/complement/extern/custom/fcgi/libfcgi/Makefile.inc 2008-04-29 09:22:25 UTC (rev 1864) @@ -1,4 +1,4 @@ -# -*- makefile -*- Time-stamp: <08/04/28 19:49:29 yeti> +# -*- makefile -*- Time-stamp: <08/04/29 12:12:25 yeti> FCGI_SRC = /export/hostel/labs/FastCGI/fcgi-2.4.0/libfcgi LIBNAME = fcgi Property changes on: trunk/complement/extern/custom/fcgi/libfcgi++ ___________________________________________________________________ Name: svn:ignore + obj Added: trunk/complement/extern/custom/fcgi/libfcgi++/Makefile =================================================================== --- trunk/complement/extern/custom/fcgi/libfcgi++/Makefile (rev 0) +++ trunk/complement/extern/custom/fcgi/libfcgi++/Makefile 2008-04-29 09:22:25 UTC (rev 1864) @@ -0,0 +1,9 @@ +# -*- makefile -*- Time-stamp: <08/04/28 19:39:18 yeti> + +SRCROOT := ../../../../explore +# POST_INSTALL = ln -sf ${SO_NAME} $(INSTALL_LIB_DIR)/libboost_date_time.so + +include Makefile.inc +include ${SRCROOT}/Makefiles/gmake/top.mak + +INCLUDES += -I${BOOST_INCLUDE_DIR} -I${FCGI_SRC}/../include -I../include Added: trunk/complement/extern/custom/fcgi/libfcgi++/Makefile.inc =================================================================== --- trunk/complement/extern/custom/fcgi/libfcgi++/Makefile.inc (rev 0) +++ trunk/complement/extern/custom/fcgi/libfcgi++/Makefile.inc 2008-04-29 09:22:25 UTC (rev 1864) @@ -0,0 +1,8 @@ +# -*- makefile -*- Time-stamp: <08/04/29 12:12:25 yeti> + +FCGI_SRC = /export/hostel/labs/FastCGI/fcgi-2.4.0/libfcgi +LIBNAME = fcgi++ +MAJOR = 2 +MINOR = 4 +PATCH = 0 +SRC_CPP = ${FCGI_SRC}/fcgio.cpp This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |