$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
From: tschwinger_at_[hidden]
Date: 2007-08-03 16:21:12
Author: t_schwinger
Date: 2007-08-03 16:21:05 EDT (Fri, 03 Aug 2007)
New Revision: 38427
URL: http://svn.boost.org/trac/boost/changeset/38427
Log:
- re-deletion of old files (SVN migration)
- trac issue #1100 (preliminary fix to keep full build of Boost from failing)
Added:
   trunk/libs/function_types/build/timestamps/
   trunk/libs/function_types/build/timestamps/arity_loops   (contents, props changed)
   trunk/libs/function_types/build/timestamps/cc_names   (contents, props changed)
   trunk/libs/function_types/build/timestamps/encoding   (contents, props changed)
Removed:
   trunk/libs/function_types/build/Jamfile.v2
   trunk/libs/function_types/doc/Jamfile.v2
   trunk/libs/function_types/test/Jamfile.v2
Deleted: trunk/libs/function_types/build/Jamfile.v2
==============================================================================
--- trunk/libs/function_types/build/Jamfile.v2	2007-08-03 16:21:05 EDT (Fri, 03 Aug 2007)
+++ (empty file)
@@ -1,28 +0,0 @@
-
-# (C) Copyright Tobias Schwinger
-#
-# Use modification and distribution are subject to the boost Software License,
-# Version 1.0. (See http:/\/www.boost.org/LICENSE_1_0.txt).
-
-# Generates preprocessed files with wave.
-
-rule wave 
-{ 
-  Depends $1 : $2 ; 
-}
-
-actions wave
-{
-  chdir $(BOOST_ROOT)/libs/function_types/build 
-  $(BOOST_ROOT)/dist/bin/wave -S$(BOOST_ROOT) $(>) -o $(<)
-}
-
-make $(BOOST_ROOT)/libs/function_types/build/timestamps/arity_loops
-  : preprocess_arity_loops.cpp : wave ;
-
-make $(BOOST_ROOT)/libs/function_types/build/timestamps/encoding
-  : preprocess_encoding.cpp : wave ;
-
-make $(BOOST_ROOT)/libs/function_types/build/timestamps/cc_names
-  : preprocess_cc_names.cpp : wave ;
-
Added: trunk/libs/function_types/build/timestamps/arity_loops
==============================================================================
--- (empty file)
+++ trunk/libs/function_types/build/timestamps/arity_loops	2007-08-03 16:21:05 EDT (Fri, 03 Aug 2007)
@@ -0,0 +1 @@
+timestamp file
Added: trunk/libs/function_types/build/timestamps/cc_names
==============================================================================
--- (empty file)
+++ trunk/libs/function_types/build/timestamps/cc_names	2007-08-03 16:21:05 EDT (Fri, 03 Aug 2007)
@@ -0,0 +1 @@
+timestamp file
Added: trunk/libs/function_types/build/timestamps/encoding
==============================================================================
--- (empty file)
+++ trunk/libs/function_types/build/timestamps/encoding	2007-08-03 16:21:05 EDT (Fri, 03 Aug 2007)
@@ -0,0 +1 @@
+timestamp file
Deleted: trunk/libs/function_types/doc/Jamfile.v2
==============================================================================
--- trunk/libs/function_types/doc/Jamfile.v2	2007-08-03 16:21:05 EDT (Fri, 03 Aug 2007)
+++ (empty file)
@@ -1,19 +0,0 @@
-
-using quickbook ;
-
-xml function_types : function_types.qbk ;
-boostbook standalone
-    :
-        function_types
-    :
-        <xsl:param>boost.root=../../../..
-        <xsl:param>boost.libraries=../../../libraries.htm
-        <xsl:param>nav.layout=none
-        <xsl:param>navig.graphics=0
-        <xsl:param>chunk.first.sections=1
-        <xsl:param>chunk.section.depth=2
-        <xsl:param>generate.section.toc.level=2
-        <xsl:param>toc.section.depth=1
-        <xsl:param>toc.max.depth=1
-    ;
-
Deleted: trunk/libs/function_types/test/Jamfile.v2
==============================================================================
--- trunk/libs/function_types/test/Jamfile.v2	2007-08-03 16:21:05 EDT (Fri, 03 Aug 2007)
+++ (empty file)
@@ -1,85 +0,0 @@
-
-# (C) Copyright Tobias Schwinger 
-#
-# Use, modification and distribution are subject to the Boost Software License,
-# Version 1.0. (See http://www.boost.org/LICENSE_1_0.txt).
-
-#-------------------------------------------------------------------------------
-
-import testing ;
-
-{
-  test-suite function_types : 
-
-    # Classification
-
-    [ compile classification/is_function.cpp ]
-    [ compile classification/is_function_pointer.cpp ]
-    [ compile classification/is_function_reference.cpp ]
-    [ compile classification/is_member_function_pointer.cpp ]
-    [ compile classification/is_member_object_pointer.cpp ]
-    [ compile classification/is_callable_builtin.cpp ]
-    [ compile classification/is_nonmember_callable_builtin.cpp ]
-    [ compile classification/is_member_pointer.cpp ]
-
-    [ compile classification/is_cv_mem_func_ptr.cpp ]
-    [ compile classification/is_variadic.cpp ]
-    [ compile classification/is_cv_pointer.cpp ]
-    # [ compile classification/is_cv_function.cpp ]
-
-    # Decomposition
-    
-    [ compile decomposition/components.cpp ]
-    [ compile decomposition/result_type.cpp ]
-    [ compile decomposition/function_arity.cpp ]
-    [ compile decomposition/parameter_types.cpp ]
-
-    [ compile decomposition/components_seq.cpp ]
-    [ compile decomposition/class_type_transform.cpp ]
-
-    [ compile-fail decomposition/result_type_fail.cpp ]
-    [ compile-fail decomposition/parameter_types_fail.cpp ]
-    [ compile-fail decomposition/function_arity_fail.cpp ]
-
-    # Synthesis
-
-    [ compile synthesis/function_type.cpp ]
-    [ compile synthesis/function_pointer.cpp ]
-    [ compile synthesis/function_reference.cpp ]
-    [ compile synthesis/member_function_pointer.cpp ]
-    [ compile synthesis/member_object_pointer.cpp ]
-
-    [ compile synthesis/transformation.cpp ]
-    [ compile synthesis/mem_func_ptr_cv1.cpp ]
-    [ compile synthesis/mem_func_ptr_cv2.cpp ]
-    [ compile synthesis/mem_func_ptr_cv_ptr_to_this.cpp ]
-    [ compile synthesis/variadic_function_synthesis.cpp ]
-    # [ compile synthesis/cv_function_synthesis.cpp ]
-
-    # Reconfiguration
-
-    [ compile reconfiguration/preprocessing_mode.cpp ]
-    [ compile reconfiguration/partial_arity_preprocessing.cpp ]
-    [ compile reconfiguration/cc_preprocessing.cpp ]
-
-    # Custom calling conventions
-
-    [ compile custom_ccs/nonmember_ccs.cpp ]
-    [ compile custom_ccs/nonmember_ccs_exact.cpp ]
-    [ compile custom_ccs/member_ccs.cpp ]
-    [ compile custom_ccs/member_ccs_exact.cpp ]
-
-    # Code from the examples
-
-    [ compile ../example/interpreter_example.cpp ]
-    [ compile ../example/result_of_example.cpp ]
-    [ compile ../example/interface_example.cpp ]
-    [ compile ../example/fast_mem_fn_example.cpp 
-      # needed for Boost.PP file iteration with some compilers
-      : <include>../example
-    ]
-    [ compile ../example/macro_type_args_example.cpp ]
-    ;
-}
-
-