Merge branch 'develop'

This commit is contained in:
jzmaddock
2019-10-31 19:08:21 +00:00
182 changed files with 622 additions and 192 deletions

57
.circleci/config.yml Normal file
View File

@ -0,0 +1,57 @@
version: 2
jobs:
build:
environment:
- BOOST_LIBRARY=config
- CXX_STANDARD=gnu++11
docker:
- image: gcc:7
steps:
- checkout
- run:
name: Setting up Environment
command: |
echo 'export BOOST="$HOME/boost-local"' >> $BASH_ENV
if [ $CIRCLE_BRANCH = "master" ]; then
echo 'export BOOST_BRANCH="master"' >> $BASH_ENV;
else
echo 'export BOOST_BRANCH="develop"' >> $BASH_ENV;
fi
echo 'export BOOST_REMOVE="$BOOST/boost/libs/$BOOST_LIBRARY"' >> $BASH_ENV
HOME_SED_=$(echo $HOME | sed -e 's/\//\\\//g')
echo 'export HOME_SED=$HOME_SED_' >> $BASH_ENV
- run:
name: install pre dependencies
command: |
apt-get update -yqq
apt-get install git xsltproc docbook-xsl docbook-xml -y
- run:
name: Initializing git repo for boost
command: |
echo BOOST=$BOOST BOOST_REMOVE=$BOOST_REMOVE BOOST_LIBRARY=$BOOST_LIBRARY BOOST_BRANCH=$BOOST_BRANCH PWD=$PWD
mkdir $BOOST
cd $BOOST
git clone --single-branch --branch $BOOST_BRANCH https://github.com/boostorg/boost.git
cd boost
git submodule update --init --merge
rm -rf $BOOST_REMOVE
mv $HOME/project $BOOST_REMOVE
- run:
name: Bootstrapping boost-build
command: |
cd $BOOST/boost && ./bootstrap.sh && ./b2 headers
echo "using xsltproc ;" | tee $HOME/user-config.jam
echo "using boostbook : /usr/share/xml/docbook/stylesheet/docbook-xsl : /usr/share/sgml/docbook/dtd/xml/4.2 ;" | tee -a $HOME/user-config.jam
- run:
name: Building inspect
command: |
cd $BOOST/boost/tools/inspect/build && ../../../b2 -j2 address-model=64 architecture=x86 toolset=gcc cxxflags="-std=gnu++14" release dist-bin
- run:
name: Building docs
command: |
cd $BOOST_REMOVE/doc && rm -rf html && ../../../b2 -j2 address-model=64 architecture=x86 toolset=gcc cxxflags="-std=gnu++14" release
- run:
name: Running Inspect
command: |
cd $BOOST_REMOVE && ../../dist/bin/inspect -text -license -copyright -crlf -end -link -path_name -tab -ascii -apple_macro -assert_macro -minmax -unnamed

View File

@ -38,3 +38,5 @@ You can either run all the tests listed in `Jamfile.v2` or run a single test:
../../../b2 <- run all tests ../../../b2 <- run all tests
../../../b2 config_info <- single test ../../../b2 config_info <- single test
### For developers ###
Please check the [Guidelines for Boost Authors](http://www.boost.org/doc/libs/release/libs/config/doc/html/boost_config/guidelines_for_boost_authors.html). from the full documentation.

View File

@ -1,6 +1,6 @@
# #
# *** DO NOT EDIT THIS FILE BY HAND *** # *** DO NOT EDIT THIS FILE BY HAND ***
# This file was automatically generated on Sun Apr 21 09:13:03 2019 # This file was automatically generated on Fri Aug 23 11:11:12 2019
# by libs/config/tools/generate.cpp # by libs/config/tools/generate.cpp
# Copyright John Maddock. # Copyright John Maddock.
# Use, modification and distribution are subject to the # Use, modification and distribution are subject to the
@ -69,6 +69,7 @@ obj cxx11_alignas : test_case.cpp : <define>TEST_BOOST_NO_CXX11_ALIGNAS ;
obj cxx11_allocator : test_case.cpp : <define>TEST_BOOST_NO_CXX11_ALLOCATOR ; obj cxx11_allocator : test_case.cpp : <define>TEST_BOOST_NO_CXX11_ALLOCATOR ;
obj cxx11_atomic_smart_ptr : test_case.cpp : <define>TEST_BOOST_NO_CXX11_ATOMIC_SMART_PTR ; obj cxx11_atomic_smart_ptr : test_case.cpp : <define>TEST_BOOST_NO_CXX11_ATOMIC_SMART_PTR ;
obj cxx11_defaulted_moves : test_case.cpp : <define>TEST_BOOST_NO_CXX11_DEFAULTED_MOVES ; obj cxx11_defaulted_moves : test_case.cpp : <define>TEST_BOOST_NO_CXX11_DEFAULTED_MOVES ;
obj cxx11_hdr_exception : test_case.cpp : <define>TEST_BOOST_NO_CXX11_HDR_EXCEPTION ;
obj cxx11_final : test_case.cpp : <define>TEST_BOOST_NO_CXX11_FINAL ; obj cxx11_final : test_case.cpp : <define>TEST_BOOST_NO_CXX11_FINAL ;
obj cxx11_hdr_array : test_case.cpp : <define>TEST_BOOST_NO_CXX11_HDR_ARRAY ; obj cxx11_hdr_array : test_case.cpp : <define>TEST_BOOST_NO_CXX11_HDR_ARRAY ;
obj cxx11_hdr_atomic : test_case.cpp : <define>TEST_BOOST_NO_CXX11_HDR_ATOMIC ; obj cxx11_hdr_atomic : test_case.cpp : <define>TEST_BOOST_NO_CXX11_HDR_ATOMIC ;

View File

@ -1,5 +1,6 @@
// riscv.cpp // riscv.cpp
// //
// Copyright Andreas Schwab 2019
// Distributed under the Boost Software License Version 1.0. (See // Distributed under the Boost Software License Version 1.0. (See
// accompanying file LICENSE_1_0.txt or copy at // accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt) // http://www.boost.org/LICENSE_1_0.txt)

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

View File

@ -1,4 +1,4 @@
// This file was automatically generated on Sun Apr 21 09:13:03 2019 // This file was automatically generated on Fri Aug 23 11:11:12 2019
// by libs/config/tools/generate.cpp // by libs/config/tools/generate.cpp
// Copyright John Maddock 2002-4. // Copyright John Maddock 2002-4.
// Use, modification and distribution are subject to the // Use, modification and distribution are subject to the

Some files were not shown because too many files have changed in this diff Show More