$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
From: lists.drrngrvy_at_[hidden]
Date: 2008-05-22 10:19:44
Author: drrngrvy
Date: 2008-05-22 10:19:43 EDT (Thu, 22 May 2008)
New Revision: 45656
URL: http://svn.boost.org/trac/boost/changeset/45656
Log:
End of spring cleaning (hopefully).
Text files modified: 
   sandbox/SOC/2007/cgi/trunk/libs/cgi/build/Jamfile.v2               |    10 +++++-----                              
   sandbox/SOC/2007/cgi/trunk/libs/cgi/example/Jamfile.v2             |     2 ++                                      
   sandbox/SOC/2007/cgi/trunk/libs/cgi/test/Jamfile.v2                |     5 +++++                                   
   sandbox/SOC/2007/cgi/trunk/libs/cgi/test/compile/is_async_test.cpp |     4 ++--                                    
   4 files changed, 14 insertions(+), 7 deletions(-)
Modified: sandbox/SOC/2007/cgi/trunk/libs/cgi/build/Jamfile.v2
==============================================================================
--- sandbox/SOC/2007/cgi/trunk/libs/cgi/build/Jamfile.v2	(original)
+++ sandbox/SOC/2007/cgi/trunk/libs/cgi/build/Jamfile.v2	2008-05-22 10:19:43 EDT (Thu, 22 May 2008)
@@ -29,16 +29,16 @@
 import type ;
 type.register IPP : ipp : CPP ;
 
-path-constant incl : $(top)/boost/cgi/ ;
+path-constant impl : $(top)/boost/cgi/impl ;
 
 SOURCES =
-    $(incl)/impl/form_parser.ipp
-    $(incl)/impl/response.ipp
+    $(impl)/form_parser.ipp
+    $(impl)/response.ipp
   ;
   
 
-if [ MATCH "^(--build-cgi)" : [ modules.peek : ARGV ] ] # compile library
-{
+if [ MATCH "^(--build-cgi)" : [ modules.peek : ARGV ] ]
+{ # compile library
   ECHO "Building CGI library" ;
 
   lib boost_cgi
Modified: sandbox/SOC/2007/cgi/trunk/libs/cgi/example/Jamfile.v2
==============================================================================
--- sandbox/SOC/2007/cgi/trunk/libs/cgi/example/Jamfile.v2	(original)
+++ sandbox/SOC/2007/cgi/trunk/libs/cgi/example/Jamfile.v2	2008-05-22 10:19:43 EDT (Thu, 22 May 2008)
@@ -18,6 +18,8 @@
 # Build all of the fcgi examples
 build-project fcgi ;
 
+alias all_examples : cgi acgi fcgi ;
+
 install cgi-install
  : # sources
    cgi//install
Modified: sandbox/SOC/2007/cgi/trunk/libs/cgi/test/Jamfile.v2
==============================================================================
--- sandbox/SOC/2007/cgi/trunk/libs/cgi/test/Jamfile.v2	(original)
+++ sandbox/SOC/2007/cgi/trunk/libs/cgi/test/Jamfile.v2	2008-05-22 10:19:43 EDT (Thu, 22 May 2008)
@@ -15,3 +15,8 @@
 build-project compile ;
 build-project run ;
 build-project compile_fail ;
+
+if [ MATCH "^(--build-examples)" : [ modules.peek : ARGV ] ]
+{
+  build-project ../example//all_examples ;
+}
Modified: sandbox/SOC/2007/cgi/trunk/libs/cgi/test/compile/is_async_test.cpp
==============================================================================
--- sandbox/SOC/2007/cgi/trunk/libs/cgi/test/compile/is_async_test.cpp	(original)
+++ sandbox/SOC/2007/cgi/trunk/libs/cgi/test/compile/is_async_test.cpp	2008-05-22 10:19:43 EDT (Thu, 22 May 2008)
@@ -1,10 +1,10 @@
 #include <boost/static_assert.hpp>
-#include "boost/cgi/is_async.hpp"
+#include "boost/cgi/common/is_async.hpp"
 
 
 int main()
 {
-  using namespace cgi;
+  using namespace cgi::common;
 
   BOOST_STATIC_ASSERT(is_async<tags::cgi>::value == false);
   BOOST_STATIC_ASSERT(is_async<tags::async_cgi>::value == true);