2001-04-14 22:26:27 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2012-11-23 23:16:50 +00:00
|
|
|
export LC_ALL=C
|
|
|
|
|
2013-08-09 08:07:23 +00:00
|
|
|
for ac_option do
|
|
|
|
case "$ac_option" in
|
|
|
|
--extra=*)
|
|
|
|
extra="-$option"
|
|
|
|
;;
|
|
|
|
--print)
|
|
|
|
print=yes
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo "Unknown parameter: $option" >&2
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
|
|
|
|
esac
|
|
|
|
done
|
2006-06-06 12:01:34 +00:00
|
|
|
|
2009-02-24 23:15:26 +00:00
|
|
|
# Extract revision number from file used by daily tarball snapshots
|
2011-01-24 23:06:48 +00:00
|
|
|
# or from "git describe" output
|
2009-11-23 03:40:52 +00:00
|
|
|
git_revision=$(cat snapshot_version 2> /dev/null)
|
2014-09-16 00:50:43 +00:00
|
|
|
test "$git_revision" || test ! -e .git || git_revision="$(git rev-parse --short HEAD)"
|
|
|
|
test "$git_revision" && git_revision="git-$git_revision"
|
2013-10-14 18:05:39 +00:00
|
|
|
version="$git_revision"
|
2006-06-23 15:12:56 +00:00
|
|
|
|
2009-03-05 23:36:28 +00:00
|
|
|
# releases extract the version number from the VERSION file
|
2014-09-16 00:50:43 +00:00
|
|
|
releaseversion="$(cat VERSION 2> /dev/null)"
|
|
|
|
if test "$releaseversion" ; then
|
|
|
|
test "$version" && version="-$version"
|
2013-10-14 18:05:39 +00:00
|
|
|
version="$releaseversion$version"
|
|
|
|
fi
|
|
|
|
|
2014-09-16 00:50:43 +00:00
|
|
|
test "$version" || version=UNKNOWN
|
2009-03-05 23:36:28 +00:00
|
|
|
|
2013-08-09 08:07:23 +00:00
|
|
|
VERSION="${version}${extra}"
|
|
|
|
|
|
|
|
if test "$print" = yes ; then
|
|
|
|
echo "$VERSION"
|
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
NEW_REVISION="#define VERSION \"${VERSION}\""
|
2009-04-04 19:50:57 +00:00
|
|
|
OLD_REVISION=$(head -n 1 version.h 2> /dev/null)
|
2012-11-23 23:16:50 +00:00
|
|
|
BUILDDATE="#define BUILDDATE \"$(date)\""
|
2006-06-22 13:47:50 +00:00
|
|
|
|
|
|
|
# Update version.h only on revision changes to avoid spurious rebuilds
|
|
|
|
if test "$NEW_REVISION" != "$OLD_REVISION"; then
|
2009-01-29 00:16:09 +00:00
|
|
|
cat <<EOF > version.h
|
|
|
|
$NEW_REVISION
|
2012-11-23 23:16:50 +00:00
|
|
|
$BUILDDATE
|
2009-01-29 00:16:09 +00:00
|
|
|
EOF
|
2006-06-22 13:47:50 +00:00
|
|
|
fi
|