]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/regex/build/common.sh
bump version to 12.2.2-pve1
[ceph.git] / ceph / src / boost / libs / regex / build / common.sh
CommitLineData
7c673cae
FG
1# copyright John Maddock 2003
2# Distributed under the Boost Software License, Version 1.0.
3# (See accompanying file LICENSE_1_0.txt or copy at
4# http://www.boost.org/LICENSE_1_0.txt.
5#
6# locate all the header dependencies:
7for file in ../../../boost/regex/*.hpp ; do
8 if [ -f $file ]; then
9 if [ $file != ../../../boost/regex/concepts.hpp ]; then
10 if [ $file != ../../../boost/regex/mfc.hpp ]; then
11 header="$header $file"
12 fi
13 fi
14 fi
15done
16
17for file in ../../../boost/regex/v3/*.hpp; do
18 if [ -f $file ]; then
19 header="$header $file"
20 fi
21done
22
23for file in ../../../boost/regex/v3/*.hxx; do
24 if [ -f $file ]; then
25 header="$header $file"
26 fi
27done
28
29for file in ../../../boost/regex/v4/*.hpp; do
30 if [ -f $file ]; then
31 header="$header $file"
32 fi
33done
34
35for file in ../../../boost/regex/v4/*.hxx; do
36 if [ -f $file ]; then
37 header="$header $file"
38 fi
39done
40
41for file in ../../../boost/regex/config/*.hpp; do
42 if [ -f $file ]; then
43 header="$header $file"
44 fi
45done
46
47for file in ../../../boost/regex/config/*.hxx; do
48 if [ -f $file ]; then
49 header="$header $file"
50 fi
51done
52
53#
54# locate all the source files:
55for file in ../src/*.cpp; do
56 if [ -f $file ]; then
57 src="$src $file"
58 fi
59done
60
61boost_version=$(grep 'define.*BOOST_LIB_VERSION' ../../../boost/version.hpp | sed 's/.*"\([^"]*\)".*/\1/')
62echo Boost version tag = $boost_version
63
64
65
66