view version.sh @ 23960:0525bd0aed18

r23897: Experimental negative panscan values r23898: Set -vo gl slice-height default to 0, the current default of 4 seems r23913: punctuation, new sentences on new lines r23917: Document -rawvideo format="format string" r23924: Teletext support r23926: update man page with v4l2 a/v outputs r23944: h/w -> hardware r23962: added missing ':' for separator r23978: add possibly incorrect subfont entry
author voroshil
date Wed, 01 Aug 2007 01:15:26 +0000
parents 007dd9c904d9
children f5edea48bb66
line wrap: on
line source

#!/bin/sh

test "$1" && extra="-$1"

svn_revision=`LC_ALL=C svn info 2> /dev/null | grep Revision | cut -d' ' -f2`
test $svn_revision || svn_revision=`cd "$1" && grep revision .svn/entries 2>/dev/null | cut -d '"' -f2`
test $svn_revision || svn_revision=`cd "$1" && sed -n -e '/^dir$/{n;p;q}' .svn/entries 2>/dev/null`
test $svn_revision || svn_revision=UNKNOWN

NEW_REVISION="#define VERSION \"dev-SVN-r${svn_revision}${extra}\""
OLD_REVISION=`cat version.h 2> /dev/null`
TITLE="#define MP_TITLE \"MPlayer dev-SVN-r${svn_revision}${extra} (C) 2000-2007 MPlayer Team\""

# Update version.h only on revision changes to avoid spurious rebuilds
if test "$NEW_REVISION" != "$OLD_REVISION"; then
    echo "$NEW_REVISION" > version.h
    echo "$TITLE" >> version.h
fi