2001-04-15 00:26:27 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
2012-11-24 00:16:50 +01:00
|
|
|
export LC_ALL=C
|
|
|
|
|
2006-06-20 12:08:19 +02:00
|
|
|
test "$1" && extra="-$1"
|
2006-06-06 14:01:34 +02:00
|
|
|
|
2009-02-25 00:15:26 +01:00
|
|
|
# Extract revision number from file used by daily tarball snapshots
|
2011-01-25 00:06:48 +01:00
|
|
|
# or from "git describe" output
|
2009-11-23 04:40:52 +01:00
|
|
|
git_revision=$(cat snapshot_version 2> /dev/null)
|
2013-02-06 21:23:35 +01:00
|
|
|
test $git_revision || test ! -e .git || git_revision=`git rev-parse --short HEAD`
|
2011-02-19 18:01:07 +01:00
|
|
|
git_revision=$(expr "$git_revision" : v*'\(.*\)')
|
2009-11-23 04:40:52 +01:00
|
|
|
test $git_revision || git_revision=UNKNOWN
|
2006-06-23 17:12:56 +02:00
|
|
|
|
2009-03-06 00:36:28 +01:00
|
|
|
# releases extract the version number from the VERSION file
|
|
|
|
version=$(cat VERSION 2> /dev/null)
|
2012-07-28 23:59:27 +02:00
|
|
|
test $version || version=git-$git_revision
|
2009-03-06 00:36:28 +01:00
|
|
|
|
|
|
|
NEW_REVISION="#define VERSION \"${version}${extra}\""
|
2009-04-04 21:50:57 +02:00
|
|
|
OLD_REVISION=$(head -n 1 version.h 2> /dev/null)
|
2012-11-24 00:16:50 +01:00
|
|
|
BUILDDATE="#define BUILDDATE \"$(date)\""
|
2006-06-22 15:47:50 +02:00
|
|
|
|
|
|
|
# Update version.h only on revision changes to avoid spurious rebuilds
|
|
|
|
if test "$NEW_REVISION" != "$OLD_REVISION"; then
|
2009-01-29 01:16:09 +01:00
|
|
|
cat <<EOF > version.h
|
|
|
|
$NEW_REVISION
|
2012-11-24 00:16:50 +01:00
|
|
|
$BUILDDATE
|
2009-01-29 01:16:09 +01:00
|
|
|
EOF
|
2006-06-22 15:47:50 +02:00
|
|
|
fi
|