forked from jtv/libpqxx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathautogen.sh
executable file
·59 lines (50 loc) · 1.48 KB
/
autogen.sh
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
51
52
53
54
55
56
57
58
59
#! /bin/sh
# Run this to generate all the initial makefiles, etc.
#
# Set CONFIG_ARGS to the argument list you wish to pass to configure.
set -eu
PQXXVERSION=$(./tools/extract_version)
PQXX_ABI=$(./tools/extract_version --abi)
PQXX_MAJOR=$(./tools/extract_version --major)
PQXX_MINOR=$(./tools/extract_version --minor)
echo "libpqxx version $PQXXVERSION"
echo "libpqxx ABI version $PQXX_ABI"
substitute() {
sed -e "s/@PQXXVERSION@/$PQXXVERSION/g" \
-e "s/@PQXX_MAJOR@/$PQXX_MAJOR/g" \
-e "s/@PQXX_MINOR@/$PQXX_MINOR/g" \
-e "s/@PQXX_ABI@/$PQXX_ABI/g" \
"$1"
}
# Generate version header.
substitute include/pqxx/version.hxx.template >include/pqxx/version.hxx
# Generate Windows makefiles.
# Add carriage returns to turn them into MS-DOS format.
makewinmake() {
./tools/template2mak.py "$1" | tr -d '\r' | sed -e 's/$/\r/' >"$2"
}
# Use templating system to generate various Makefiles.
for output in test/Makefile.am test/unit/Makefile.am
do
./tools/template2mak.py $output.template $output
done
for output in vc-libpqxx vc-test vc-test-unit MinGW
do
makewinmake win32/$output.mak.template win32/$output.mak
done
autoheader
libtoolize --force --automake --copy
aclocal -I . -I config/m4
automake --verbose --add-missing --copy
autoconf
conf_flags="--enable-maintainer-mode ${CONFIG_ARGS:-}"
if [ -z "${NOCONFIGURE:-}" ]
then
echo Running ./configure $conf_flags "$@" ...
if ./configure $conf_flags "$@"
then
echo "Now type 'make' to compile libpqxx"
fi
else
echo Skipping configure process.
fi