mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-06 11:23:45 +00:00
7dad35b0f8
Remove 1/ the libs/ directory 2/ the CMakeList.txt file, since it only mentions this directory 3/ the cstdint.hpp file in extract.sh, since we do not use this header file directly (should not make a difference, boost uses it in other places). Update boost/Makefile.am accordingly.
50 lines
884 B
Bash
Executable File
50 lines
884 B
Bash
Executable File
#!/bin/bash
|
|
|
|
#
|
|
# 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/crc.hpp \
|
|
boost/lexical_cast.hpp \
|
|
boost/signals2.hpp \
|
|
boost/signals2/connection.hpp \
|
|
boost/signals2/trackable.hpp \
|
|
\
|
|
needed
|
|
|
|
|
|
# we do not use the provided MSVC project files
|
|
find needed -name '*.vcpro*' | xargs rm
|
|
|
|
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 boost/typeof
|
|
rm -rf libs/config
|
|
rm -rf libs/smart_ptr
|
|
|