forked from ellson/MOTHBALLED-graphviz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
autogen.sh
executable file
·50 lines (43 loc) · 1.98 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
#! /bin/sh
if ! GRAPHVIZ_GIT_DATE=$( git log -n 1 --format=%ci ) ; then
GRAPHVIZ_VERSION_DATE="0"
echo "Warning: build not started in a Git clone, or Git is not installed: setting version date to 0." >&2
else
if ! GRAPHVIZ_VERSION_DATE=$( date -u +%Y%m%d.%H%M -d "$GRAPHVIZ_GIT_DATE" 2>/dev/null ) ; then
# try date with FreeBSD syntax
if ! GRAPHVIZ_VERSION_DATE=$( date -u -j -f "%Y-%m-%d %H:%M:%S %z" "$GRAPHVIZ_GIT_DATE" +%Y%m%d.%H%M ); then
echo "Warning: we do not know how to invoke date correctly." >&2
fi
fi
echo "Graphviz: version date is based on time of last commit: $GRAPHVIZ_VERSION_DATE"
GRAPHVIZ_VERSION_COMMIT=$( git log -n 1 --format=%h )
echo "Graphviz: abbreviated hash of last commit: $GRAPHVIZ_VERSION_COMMIT"
fi
# initialize version for a "stable" build
cat >./version.m4 <<EOF
dnl Graphviz package version number, (as distinct from shared library version)
dnl For the minor number: odd => unstable series
dnl even => stable series
dnl For the micro number: 0 => in-progress development
dnl timestamp => tar-file snapshot or release
m4_define(graphviz_version_major, 2)
m4_define(graphviz_version_minor, 39)
dnl NB: the next line gets changed to a date/time string for development releases
m4_define(graphviz_version_micro, $GRAPHVIZ_VERSION_DATE)
m4_define(graphviz_version_date, $GRAPHVIZ_VERSION_DATE)
m4_define(graphviz_collection, development)
m4_define(graphviz_version_commit, $GRAPHVIZ_VERSION_COMMIT)
EOF
# attempt to suppress ar messages for 'u' when 'D' present.
# need to be set during libtoolize
export AR_FLAGS=crD
autoreconf -v --install --force || exit 1
# ensure config/depcomp exists even if still using automake-1.4
# otherwise "make dist" fails.
touch config/depcomp
# suppress automatic ./configure is "./autogen.sh NOCONFIG"
if test "$1" != "NOCONFIG"; then
# don't use any old cache, but create a new one
rm -f config.cache
./configure -C "$@"
fi