forked from cancan101/h.264-cuda
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
14 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,19 @@ | ||
#!/bin/sh | ||
VER=`svnversion .` | ||
if [ "x$VER" != x -a "$VER" != exported ] | ||
then | ||
echo "#define X264_VERSION \" svn-$VER\"" >> config.h | ||
VER=`echo $VER | sed -e 's/[^0-9].*//'` | ||
git-rev-list HEAD | sort > config.git-hash | ||
LOCALVER=`wc -l config.git-hash | awk '{print $1}'` | ||
if [ $LOCALVER \> 1 ] ; then | ||
VER=`git-rev-list origin/master | sort | join config.git-hash - | wc -l | awk '{print $1}'` | ||
if [ $VER != $LOCALVER ] ; then | ||
VER="$VER+$(($LOCALVER-$VER))" | ||
elif git-status | grep -q "modified:" ; then | ||
VER="${VER}M" | ||
fi | ||
VER="$VER $(git-rev-list HEAD -n 1 | head -c 7)" | ||
echo "#define X264_VERSION \" r$VER\"" >> config.h | ||
else | ||
echo "#define X264_VERSION \"\"" >> config.h | ||
VER="x" | ||
echo "#define X264_VERSION \"\"" >> config.h | ||
VER="x" | ||
fi | ||
rm -f config.git-hash | ||
API=`grep '#define X264_BUILD' < x264.h | sed -e 's/.* \([1-9][0-9]*\).*/\1/'` | ||
echo "#define X264_POINTVER \"0.$API.$VER\"" >> config.h |