stabilize build system: depends, installer, boost/bdb fixes, cross targets groundwork

This commit is contained in:
2026-02-24 18:38:47 +00:00
parent da8c28aaeb
commit 65cb2619a7
13106 changed files with 2484322 additions and 1804 deletions
@@ -0,0 +1,22 @@
#ifndef BOOST_METAPARSE_V1_FWD_ACCEPT_HPP
#define BOOST_METAPARSE_V1_FWD_ACCEPT_HPP
// Copyright Abel Sinkovics (abel@sinkovics.hu) 2014.
// Distributed under 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)
namespace boost
{
namespace metaparse
{
namespace v1
{
template <class Result, class Remaining, class Pos>
struct accept;
}
}
}
#endif
@@ -0,0 +1,22 @@
#ifndef BOOST_METAPARSE_V1_FWD_BUILD_PARSER_HPP
#define BOOST_METAPARSE_V1_FWD_BUILD_PARSER_HPP
// Copyright Abel Sinkovics (abel@sinkovics.hu) 2013.
// Distributed under 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)
namespace boost
{
namespace metaparse
{
namespace v1
{
template <class P>
struct build_parser;
}
}
}
#endif
@@ -0,0 +1,26 @@
#ifndef BOOST_METAPARSE_V1_FWD_GET_COL_HPP
#define BOOST_METAPARSE_V1_FWD_GET_COL_HPP
// Copyright Abel Sinkovics (abel@sinkovics.hu) 2013.
// Distributed under 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)
namespace boost
{
namespace metaparse
{
namespace v1
{
template <class>
struct get_col;
template <class>
struct get_col_impl;
}
}
}
#endif
@@ -0,0 +1,25 @@
#ifndef BOOST_METAPARSE_V1_FWD_GET_LINE_HPP
#define BOOST_METAPARSE_V1_FWD_GET_LINE_HPP
// Copyright Abel Sinkovics (abel@sinkovics.hu) 2013.
// Distributed under 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)
namespace boost
{
namespace metaparse
{
namespace v1
{
template <class>
struct get_line_impl;
template <class>
struct get_line;
}
}
}
#endif
@@ -0,0 +1,25 @@
#ifndef BOOST_METAPARSE_V1_FWD_GET_MESSAGE_HPP
#define BOOST_METAPARSE_V1_FWD_GET_MESSAGE_HPP
// Copyright Abel Sinkovics (abel@sinkovics.hu) 2014.
// Distributed under 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)
namespace boost
{
namespace metaparse
{
namespace v1
{
template <class>
struct get_message_impl;
template <class>
struct get_message;
}
}
}
#endif
@@ -0,0 +1,25 @@
#ifndef BOOST_METAPARSE_V1_FWD_GET_POSITION_HPP
#define BOOST_METAPARSE_V1_FWD_GET_POSITION_HPP
// Copyright Abel Sinkovics (abel@sinkovics.hu) 2013.
// Distributed under 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)
namespace boost
{
namespace metaparse
{
namespace v1
{
template <class>
struct get_position_impl;
template <class>
struct get_position;
}
}
}
#endif
@@ -0,0 +1,25 @@
#ifndef BOOST_METAPARSE_V1_FWD_GET_PREV_CHAR_HPP
#define BOOST_METAPARSE_V1_FWD_GET_PREV_CHAR_HPP
// Copyright Abel Sinkovics (abel@sinkovics.hu) 2013.
// Distributed under 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)
namespace boost
{
namespace metaparse
{
namespace v1
{
template <class>
struct get_prev_char_impl;
template <class>
struct get_prev_char;
}
}
}
#endif
@@ -0,0 +1,25 @@
#ifndef BOOST_METAPARSE_V1_FWD_GET_REMAINING_HPP
#define BOOST_METAPARSE_V1_FWD_GET_REMAINING_HPP
// Copyright Abel Sinkovics (abel@sinkovics.hu) 2013.
// Distributed under 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)
namespace boost
{
namespace metaparse
{
namespace v1
{
template <class>
struct get_remaining_impl;
template <class>
struct get_remaining;
}
}
}
#endif
@@ -0,0 +1,25 @@
#ifndef BOOST_METAPARSE_V1_FWD_GET_RESULT_HPP
#define BOOST_METAPARSE_V1_FWD_GET_RESULT_HPP
// Copyright Abel Sinkovics (abel@sinkovics.hu) 2013.
// Distributed under 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)
namespace boost
{
namespace metaparse
{
namespace v1
{
template <class>
struct get_result_impl;
template <class>
struct get_result;
}
}
}
#endif
@@ -0,0 +1,25 @@
#ifndef BOOST_METAPARSE_V1_FWD_NEXT_CHAR_HPP
#define BOOST_METAPARSE_V1_FWD_NEXT_CHAR_HPP
// Copyright Abel Sinkovics (abel@sinkovics.hu) 2013.
// Distributed under 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)
namespace boost
{
namespace metaparse
{
namespace v1
{
template <class P>
struct next_char_impl;
template <class P, class Ch>
struct next_char;
}
}
}
#endif
@@ -0,0 +1,25 @@
#ifndef BOOST_METAPARSE_V1_FWD_NEXT_LINE_IMPL_HPP
#define BOOST_METAPARSE_V1_FWD_NEXT_LINE_IMPL_HPP
// Copyright Abel Sinkovics (abel@sinkovics.hu) 2013.
// Distributed under 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)
namespace boost
{
namespace metaparse
{
namespace v1
{
template <class P>
struct next_line_impl;
template <class P, class Ch>
struct next_line;
}
}
}
#endif
@@ -0,0 +1,22 @@
#ifndef BOOST_METAPARSE_V1_FWD_REJECT_HPP
#define BOOST_METAPARSE_V1_FWD_REJECT_HPP
// Copyright Abel Sinkovics (abel@sinkovics.hu) 2014.
// Distributed under 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)
namespace boost
{
namespace metaparse
{
namespace v1
{
template <class Msg, class Pos>
struct reject;
}
}
}
#endif
@@ -0,0 +1,22 @@
#ifndef BOOST_METAPARSE_V1_FWD_SOURCE_POSITION_HPP
#define BOOST_METAPARSE_V1_FWD_SOURCE_POSITION_HPP
// Copyright Abel Sinkovics (abel@sinkovics.hu) 2013.
// Distributed under 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)
namespace boost
{
namespace metaparse
{
namespace v1
{
template <class Line, class Col, class PrevChar>
struct source_position;
}
}
}
#endif
@@ -0,0 +1,38 @@
#ifndef BOOST_METAPARSE_V1_FWD_STRING_HPP
#define BOOST_METAPARSE_V1_FWD_STRING_HPP
// Copyright Abel Sinkovics (abel@sinkovics.hu) 2013.
// Distributed under 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)
#include <boost/metaparse/config.hpp>
#include <boost/metaparse/limit_string_size.hpp>
#include <boost/metaparse/v1/impl/no_char.hpp>
#include <boost/preprocessor/repetition/enum_params_with_a_default.hpp>
namespace boost
{
namespace metaparse
{
namespace v1
{
#ifdef BOOST_METAPARSE_VARIADIC_STRING
template <char... Cs>
struct string;
#else
template <
BOOST_PP_ENUM_PARAMS_WITH_A_DEFAULT(
BOOST_METAPARSE_LIMIT_STRING_SIZE,
int C,
BOOST_NO_CHAR
)
>
struct string;
#endif
}
}
}
#endif