- re-deletion of old files (SVN migration)

- trac issue #1100 (preliminary fix to keep full build of Boost from failing)



[SVN r38427]
This commit is contained in:
Tobias Schwinger
2007-08-03 20:21:05 +00:00
parent 178f290ac5
commit 5685b10737
6 changed files with 3 additions and 132 deletions

View 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 ;

View File

@ -0,0 +1 @@
timestamp file

View File

@ -0,0 +1 @@
timestamp file

View File

@ -0,0 +1 @@
timestamp file

View 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
;

View 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 ]
;
}