2006-06-20 12:24:08 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
2010-01-07 18:54:17 +01:00
|
|
|
revision=$(cd "$1" && cat snapshot_version 2> /dev/null)
|
2010-10-06 16:36:58 +02:00
|
|
|
test "$revision" && revision=SVN-r$revision
|
2006-06-23 17:07:35 +02:00
|
|
|
|
2007-10-20 02:07:48 +02:00
|
|
|
# check for git short hash
|
2010-10-06 16:36:58 +02:00
|
|
|
if ! test "$revision"; then
|
2011-01-16 19:34:09 +01:00
|
|
|
revision=$(cd "$1" && git describe --always 2> /dev/null)
|
2010-10-06 16:36:58 +02:00
|
|
|
test "$revision" && revision=git-$revision
|
2007-10-20 02:07:48 +02:00
|
|
|
fi
|
|
|
|
|
2009-03-06 00:17:11 +01:00
|
|
|
# no revision number found
|
2010-10-06 16:36:58 +02:00
|
|
|
test "$revision" || revision=UNKNOWN
|
2007-10-20 02:05:04 +02:00
|
|
|
|
2009-03-06 00:17:11 +01:00
|
|
|
# releases extract the version number from the VERSION file
|
2010-01-07 20:23:50 +01:00
|
|
|
version=$(cd "$1" && cat VERSION 2> /dev/null)
|
2010-10-06 16:36:58 +02:00
|
|
|
test "$version" || version=$revision
|
2008-09-26 23:37:50 +02:00
|
|
|
|
2009-03-06 00:17:11 +01:00
|
|
|
test -n "$3" && version=$version-$3
|
|
|
|
|
2010-07-27 01:43:59 +02:00
|
|
|
if [ -z "$2" ]; then
|
|
|
|
echo "$version"
|
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
2009-03-06 00:17:11 +01:00
|
|
|
NEW_REVISION="#define FFMPEG_VERSION \"$version\""
|
2009-02-24 23:54:58 +01:00
|
|
|
OLD_REVISION=$(cat version.h 2> /dev/null)
|
2006-06-20 12:24:08 +02:00
|
|
|
|
|
|
|
# Update version.h only on revision changes to avoid spurious rebuilds
|
|
|
|
if test "$NEW_REVISION" != "$OLD_REVISION"; then
|
2008-06-19 18:57:38 +02:00
|
|
|
echo "$NEW_REVISION" > "$2"
|
2006-06-20 12:24:08 +02:00
|
|
|
fi
|