]> git.proxmox.com Git - ceph.git/blob - 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
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:
7 for 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
15 done
16
17 for file in ../../../boost/regex/v3/*.hpp; do
18 if [ -f $file ]; then
19 header="$header $file"
20 fi
21 done
22
23 for file in ../../../boost/regex/v3/*.hxx; do
24 if [ -f $file ]; then
25 header="$header $file"
26 fi
27 done
28
29 for file in ../../../boost/regex/v4/*.hpp; do
30 if [ -f $file ]; then
31 header="$header $file"
32 fi
33 done
34
35 for file in ../../../boost/regex/v4/*.hxx; do
36 if [ -f $file ]; then
37 header="$header $file"
38 fi
39 done
40
41 for file in ../../../boost/regex/config/*.hpp; do
42 if [ -f $file ]; then
43 header="$header $file"
44 fi
45 done
46
47 for file in ../../../boost/regex/config/*.hxx; do
48 if [ -f $file ]; then
49 header="$header $file"
50 fi
51 done
52
53 #
54 # locate all the source files:
55 for file in ../src/*.cpp; do
56 if [ -f $file ]; then
57 src="$src $file"
58 fi
59 done
60
61 boost_version=$(grep 'define.*BOOST_LIB_VERSION' ../../../boost/version.hpp | sed 's/.*"\([^"]*\)".*/\1/')
62 echo Boost version tag = $boost_version
63
64
65
66