10l: comparison of char* ptrs with string literals
[mplayer.git] / version.sh
bloba81688cc0856e15d514d77b0c05ffad19064a170
1 #!/bin/sh
3 test "$1" && extra="-$1"
5 svn_revision=`LC_ALL=C svn info 2> /dev/null | grep Revision | cut -d' ' -f2`
6 test $svn_revision || svn_revision=`grep revision .svn/entries | \
7 cut -d '"' -f2 2> /dev/null`
8 test $svn_revision || svn_revision=UNKNOWN
10 NEW_REVISION="#define VERSION \"dev-SVN-r${svn_revision}${extra}\""
11 OLD_REVISION=`cat version.h 2> /dev/null`
12 TITLE="#define MP_TITLE \"MPlayer dev-SVN-r${svn_revision}${extra} (C) 2000-2007 MPlayer Team\""
14 # Update version.h only on revision changes to avoid spurious rebuilds
15 if test "$NEW_REVISION" != "$OLD_REVISION"; then
16 echo "$NEW_REVISION" > version.h
17 echo "$TITLE" >> version.h