lyx_mirror/boost/extract.sh
Georg Baum ef81af7037 Fix compilation with boost 1.60
Newer boost versions use complicated type traits for boost::next and
boost::prior, which do not work with the RandomAccessList iterators.
The long term solution is to use std::next and std::prev, for now supply
simple replacements for compilers that do not support C++11 yet.

This is was cherry picked from b5963300 and 7e72c1d0d3.
2016-02-03 15:51:08 +01:00

67 lines
1.2 KiB
Bash
Executable File

#!/bin/sh
#
# Script to extract only needed boost files using the bcp tool:
#
# http://www.boost.org/doc/libs/1_47_0/tools/bcp/doc/html/index.html
#
# Does also work with an outdated bcp version
#
# Usage: extract.sh <path to new boost version>
#
if [ -z $1 ]
then
echo "Usage: extract.sh <path to new boost version>"
exit 1
fi
rm -rf needed
mkdir needed
bcp --boost=$1 \
boost/any.hpp \
boost/assert.hpp \
boost/bind.hpp \
boost/crc.hpp \
boost/cstdint.hpp \
boost/format.hpp \
boost/function.hpp \
boost/functional.hpp \
boost/lexical_cast.hpp \
boost/noncopyable.hpp \
boost/regex.hpp \
boost/scoped_array.hpp \
boost/scoped_ptr.hpp \
boost/shared_ptr.hpp \
boost/signal.hpp \
boost/signals/connection.hpp \
boost/signals/trackable.hpp \
boost/tokenizer.hpp \
boost/tuple/tuple.hpp \
boost/mpl/string.hpp \
boost/mpl/fold.hpp \
boost/mpl/size_t.hpp \
boost/functional/hash.hpp \
\
needed
find boost -name \*.hpp | xargs rm
find libs -name \*.cpp | xargs rm
cp -vR needed/boost .
cp -vR needed/libs .
rm -rf needed
# found by bcp but not needed by us
rm -rf libs/config
rm -rf libs/smart_ptr
rm -rf libs/signals/build
rm -rf libs/regex/build
rm -rf libs/regex/test