-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathautogen.sh
executable file
·65 lines (52 loc) · 1.91 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
60
61
62
63
64
65
#! /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 -e
# The VERSION file defines our versioning
PQXXVERSION=$(./tools/extract_version)
echo "libpqxx version $PQXXVERSION"
PQXX_ABI=$(./tools/extract_version --abi)
echo "libpqxx ABI version $PQXX_ABI"
PQXX_MAJOR="$(echo "$PQXXVERSION" | sed -e 's/[[:space:]]*\([0-9]*\)\..*$/\1/')"
PQXX_MINOR="$(echo "$PQXXVERSION" | sed -e 's/[^.]*\.\([0-9]*\).*$/\1/')"
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 configure.ac based on current version numbers
substitute configure.ac.in >configure.ac
# Generate version header.
substitute include/pqxx/version.hxx.template >include/pqxx/version.hxx
# Generate Windows makefiles (adding carriage returns to make it MS-DOS format)
makewinmake() {
./tools/template2mak.py "$1" | sed -e 's/$/\r/' >"$2"
}
if ! which python >/dev/null
then
echo "This script requires the python interpreter." >&2
exit 1
fi
# Use templating system to generate various Makefiles
./tools/template2mak.py test/Makefile.am.template test/Makefile.am
./tools/template2mak.py test/unit/Makefile.am.template test/unit/Makefile.am
makewinmake win32/vc-libpqxx.mak.template win32/vc-libpqxx.mak
makewinmake win32/vc-test.mak.template win32/vc-test.mak
makewinmake win32/vc-test-unit.mak.template win32/vc-test-unit.mak
makewinmake win32/mingw.mak.template win32/MinGW.mak
autoheader
libtoolize --force --automake --copy
aclocal -I . -I config/m4
automake --verbose --add-missing --copy
autoconf
conf_flags="--enable-maintainer-mode $CONFIG_ARGS"
if test -z "$NOCONFIGURE"
then
echo Running $srcdir/configure $conf_flags "$@" ...
./configure $conf_flags "$@" \
&& echo "Now type 'make' to compile libpqxx" || exit 1
else
echo Skipping configure process.
fi