blob: c9f5f241f9337a330a3fd4310e8f76abafa21590 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
#!/bin/sh
# Copyright (C) 2015 Internet Systems Consortium, Inc. ("ISC")
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
# This script embeds config.report into src/bin/cfgrpt/config_report.cc
# Called by configure
#
report_file="$1"
dest="$2"
if [ -z ${report_file} ]
then
echo "ERROR mk_cfgrpt.sh - input report: $report_file does not exist"
exit -1
fi
# Initializes
cat /dev/null > $dest
if [ $? -ne 0 ]
then
echo "ERROR mk_cfgrpt.sh - cannot create config output file: $dest"
exit -1
fi
# Header
cat >> $dest << END
// config_report.cc. Generated from config.report by tools/mk_cfgrpt.sh
namespace isc {
namespace detail {
extern const char* const config_report[] = {
END
# Body: escape '\'s and '"'s, preprend ' ";;;; ' and append '",'
sed -e 's/\\/\\\\/g' -e 's/"/\\"/g' -e 's/^/ ";;;; /' -e 's/$/",/' \
< $report_file >> $dest
# Trailer
cat >> $dest <<END
""
};
}
}
END
|