stabilize build system: depends, installer, boost/bdb fixes, cross targets groundwork
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
|
||||
// (C) Copyright Edward Diener 2012
|
||||
// Use, modification and distribution are subject to the Boost Software License,
|
||||
// Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
||||
// http://www.boost.org/LICENSE_1_0.txt).
|
||||
|
||||
#if !defined(BOOST_TTI_DATA_GEN_HPP)
|
||||
#define BOOST_TTI_DATA_GEN_HPP
|
||||
|
||||
#include <boost/preprocessor/cat.hpp>
|
||||
|
||||
/*
|
||||
|
||||
The succeeding comments in this file are in doxygen format.
|
||||
|
||||
*/
|
||||
|
||||
/** \file
|
||||
*/
|
||||
|
||||
/// Generates the macro metafunction name for BOOST_TTI_HAS_DATA.
|
||||
/**
|
||||
name = the name of the member data.
|
||||
|
||||
returns = the generated macro metafunction name.
|
||||
*/
|
||||
#define BOOST_TTI_HAS_DATA_GEN(name) \
|
||||
BOOST_PP_CAT(has_data_,name) \
|
||||
/**/
|
||||
|
||||
#endif // BOOST_TTI_DATA_GEN_HPP
|
||||
@@ -0,0 +1,31 @@
|
||||
|
||||
// (C) Copyright Edward Diener 2012
|
||||
// Use, modification and distribution are subject to the Boost Software License,
|
||||
// Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
||||
// http://www.boost.org/LICENSE_1_0.txt).
|
||||
|
||||
#if !defined(BOOST_TTI_FUNCTION_GEN_HPP)
|
||||
#define BOOST_TTI_FUNCTION_GEN_HPP
|
||||
|
||||
#include <boost/preprocessor/cat.hpp>
|
||||
|
||||
/*
|
||||
|
||||
The succeeding comments in this file are in doxygen format.
|
||||
|
||||
*/
|
||||
|
||||
/** \file
|
||||
*/
|
||||
|
||||
/// Generates the macro metafunction name for BOOST_TTI_HAS_FUNCTION.
|
||||
/**
|
||||
name = the name of the static member function.
|
||||
|
||||
returns = the generated macro metafunction name.
|
||||
*/
|
||||
#define BOOST_TTI_HAS_FUNCTION_GEN(name) \
|
||||
BOOST_PP_CAT(has_function_,name) \
|
||||
/**/
|
||||
|
||||
#endif // BOOST_TTI_FUNCTION_GEN_HPP
|
||||
@@ -0,0 +1,31 @@
|
||||
|
||||
// (C) Copyright Edward Diener 2011,2012
|
||||
// Use, modification and distribution are subject to the Boost Software License,
|
||||
// Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
||||
// http://www.boost.org/LICENSE_1_0.txt).
|
||||
|
||||
#if !defined(BOOST_TTI_MEMBER_DATA_GEN_HPP)
|
||||
#define BOOST_TTI_MEMBER_DATA_GEN_HPP
|
||||
|
||||
#include <boost/preprocessor/cat.hpp>
|
||||
|
||||
/*
|
||||
|
||||
The succeeding comments in this file are in doxygen format.
|
||||
|
||||
*/
|
||||
|
||||
/** \file
|
||||
*/
|
||||
|
||||
/// Generates the macro metafunction name for BOOST_TTI_HAS_MEMBER_DATA.
|
||||
/**
|
||||
name = the name of the member data.
|
||||
|
||||
returns = the generated macro metafunction name.
|
||||
*/
|
||||
#define BOOST_TTI_HAS_MEMBER_DATA_GEN(name) \
|
||||
BOOST_PP_CAT(has_member_data_,name) \
|
||||
/**/
|
||||
|
||||
#endif // BOOST_TTI_MEMBER_DATA_GEN_HPP
|
||||
@@ -0,0 +1,31 @@
|
||||
|
||||
// (C) Copyright Edward Diener 2011,2012
|
||||
// Use, modification and distribution are subject to the Boost Software License,
|
||||
// Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
||||
// http://www.boost.org/LICENSE_1_0.txt).
|
||||
|
||||
#if !defined(BOOST_TTI_MEMBER_FUNCTION_GEN_HPP)
|
||||
#define BOOST_TTI_MEMBER_FUNCTION_GEN_HPP
|
||||
|
||||
#include <boost/preprocessor/cat.hpp>
|
||||
|
||||
/*
|
||||
|
||||
The succeeding comments in this file are in doxygen format.
|
||||
|
||||
*/
|
||||
|
||||
/** \file
|
||||
*/
|
||||
|
||||
/// Generates the macro metafunction name for BOOST_TTI_HAS_MEMBER_FUNCTION.
|
||||
/**
|
||||
name = the name of the member function.
|
||||
|
||||
returns = the generated macro metafunction name.
|
||||
*/
|
||||
#define BOOST_TTI_HAS_MEMBER_FUNCTION_GEN(name) \
|
||||
BOOST_PP_CAT(has_member_function_,name) \
|
||||
/**/
|
||||
|
||||
#endif // BOOST_TTI_MEMBER_FUNCTION_GEN_HPP
|
||||
@@ -0,0 +1,31 @@
|
||||
|
||||
// (C) Copyright Edward Diener 2011,2012
|
||||
// Use, modification and distribution are subject to the Boost Software License,
|
||||
// Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
||||
// http://www.boost.org/LICENSE_1_0.txt).
|
||||
|
||||
#if !defined(BOOST_TTI_STATIC_MEMBER_DATA_GEN_HPP)
|
||||
#define BOOST_TTI_STATIC_MEMBER_DATA_GEN_HPP
|
||||
|
||||
#include <boost/preprocessor/cat.hpp>
|
||||
|
||||
/*
|
||||
|
||||
The succeeding comments in this file are in doxygen format.
|
||||
|
||||
*/
|
||||
|
||||
/** \file
|
||||
*/
|
||||
|
||||
/// Generates the macro metafunction name for BOOST_TTI_HAS_STATIC_MEMBER_DATA.
|
||||
/**
|
||||
name = the name of the static member data.
|
||||
|
||||
returns = the generated macro metafunction name.
|
||||
*/
|
||||
#define BOOST_TTI_HAS_STATIC_MEMBER_DATA_GEN(name) \
|
||||
BOOST_PP_CAT(has_static_member_data_,name) \
|
||||
/**/
|
||||
|
||||
#endif // BOOST_TTI_STATIC_MEMBER_DATA_GEN_HPP
|
||||
@@ -0,0 +1,31 @@
|
||||
|
||||
// (C) Copyright Edward Diener 2011,2012
|
||||
// Use, modification and distribution are subject to the Boost Software License,
|
||||
// Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
||||
// http://www.boost.org/LICENSE_1_0.txt).
|
||||
|
||||
#if !defined(BOOST_TTI_STATIC_MEMBER_FUNCTION_GEN_HPP)
|
||||
#define BOOST_TTI_STATIC_MEMBER_FUNCTION_GEN_HPP
|
||||
|
||||
#include <boost/preprocessor/cat.hpp>
|
||||
|
||||
/*
|
||||
|
||||
The succeeding comments in this file are in doxygen format.
|
||||
|
||||
*/
|
||||
|
||||
/** \file
|
||||
*/
|
||||
|
||||
/// Generates the macro metafunction name for BOOST_TTI_HAS_STATIC_MEMBER_FUNCTION.
|
||||
/**
|
||||
name = the name of the static member function.
|
||||
|
||||
returns = the generated macro metafunction name.
|
||||
*/
|
||||
#define BOOST_TTI_HAS_STATIC_MEMBER_FUNCTION_GEN(name) \
|
||||
BOOST_PP_CAT(has_static_member_function_,name) \
|
||||
/**/
|
||||
|
||||
#endif // BOOST_TTI_STATIC_MEMBER_FUNCTION_GEN_HPP
|
||||
@@ -0,0 +1,31 @@
|
||||
|
||||
// (C) Copyright Edward Diener 2011,2012
|
||||
// Use, modification and distribution are subject to the Boost Software License,
|
||||
// Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
||||
// http://www.boost.org/LICENSE_1_0.txt).
|
||||
|
||||
#if !defined(BOOST_TTI_TEMPLATE_GEN_HPP)
|
||||
#define BOOST_TTI_TEMPLATE_GEN_HPP
|
||||
|
||||
#include <boost/preprocessor/cat.hpp>
|
||||
|
||||
/*
|
||||
|
||||
The succeeding comments in this file are in doxygen format.
|
||||
|
||||
*/
|
||||
|
||||
/** \file
|
||||
*/
|
||||
|
||||
/// Generates the macro metafunction name for BOOST_TTI_HAS_TEMPLATE.
|
||||
/**
|
||||
name = the name of the class template.
|
||||
|
||||
returns = the generated macro metafunction name.
|
||||
*/
|
||||
#define BOOST_TTI_HAS_TEMPLATE_GEN(name) \
|
||||
BOOST_PP_CAT(has_template_,name) \
|
||||
/**/
|
||||
|
||||
#endif // BOOST_TTI_TEMPLATE_GEN_HPP
|
||||
@@ -0,0 +1,31 @@
|
||||
|
||||
// (C) Copyright Edward Diener 2011,2012
|
||||
// Use, modification and distribution are subject to the Boost Software License,
|
||||
// Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
||||
// http://www.boost.org/LICENSE_1_0.txt).
|
||||
|
||||
#if !defined(BOOST_TTI_TYPE_GEN_HPP)
|
||||
#define BOOST_TTI_TYPE_GEN_HPP
|
||||
|
||||
#include <boost/preprocessor/cat.hpp>
|
||||
|
||||
/*
|
||||
|
||||
The succeeding comments in this file are in doxygen format.
|
||||
|
||||
*/
|
||||
|
||||
/** \file
|
||||
*/
|
||||
|
||||
/// Generates the macro metafunction name for BOOST_TTI_HAS_TYPE.
|
||||
/**
|
||||
name = the name of the type.
|
||||
|
||||
returns = the generated macro metafunction name.
|
||||
*/
|
||||
#define BOOST_TTI_HAS_TYPE_GEN(name) \
|
||||
BOOST_PP_CAT(has_type_,name) \
|
||||
/**/
|
||||
|
||||
#endif // BOOST_TTI_TYPE_GEN_HPP
|
||||
@@ -0,0 +1,31 @@
|
||||
|
||||
// (C) Copyright Edward Diener 2011,2012
|
||||
// Use, modification and distribution are subject to the Boost Software License,
|
||||
// Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
||||
// http://www.boost.org/LICENSE_1_0.txt).
|
||||
|
||||
#if !defined(BOOST_TTI_MEMBER_TYPE_GEN_HPP)
|
||||
#define BOOST_TTI_MEMBER_TYPE_GEN_HPP
|
||||
|
||||
#include <boost/preprocessor/cat.hpp>
|
||||
|
||||
/*
|
||||
|
||||
The succeeding comments in this file are in doxygen format.
|
||||
|
||||
*/
|
||||
|
||||
/** \file
|
||||
*/
|
||||
|
||||
/// Generates the macro metafunction name for BOOST_TTI_MEMBER_TYPE.
|
||||
/**
|
||||
name = the name of the inner type.
|
||||
|
||||
returns = the generated macro metafunction name.
|
||||
*/
|
||||
#define BOOST_TTI_MEMBER_TYPE_GEN(name) \
|
||||
BOOST_PP_CAT(member_type_,name) \
|
||||
/**/
|
||||
|
||||
#endif // BOOST_TTI_MEMBER_TYPE_GEN_HPP
|
||||
@@ -0,0 +1,25 @@
|
||||
|
||||
// (C) Copyright Edward Diener 2011,2012
|
||||
// Use, modification and distribution are subject to the Boost Software License,
|
||||
// Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
|
||||
// http://www.boost.org/LICENSE_1_0.txt).
|
||||
|
||||
#if !defined(BOOST_TTI_NAMESPACE_GEN_HPP)
|
||||
#define BOOST_TTI_NAMESPACE_GEN_HPP
|
||||
|
||||
/*
|
||||
|
||||
The succeeding comments in this file are in doxygen format.
|
||||
|
||||
*/
|
||||
|
||||
/** \file
|
||||
*/
|
||||
|
||||
/// Generates the name of the Boost TTI namespace
|
||||
/**
|
||||
returns = the generated name of the Boost TTI namespace.
|
||||
*/
|
||||
#define BOOST_TTI_NAMESPACE boost::tti
|
||||
|
||||
#endif // BOOST_TTI_NAMESPACE_GEN_HPP
|
||||
Reference in New Issue
Block a user