configure.ac | 2 +- src/Makefile.am | 3 +++ src/via_xv.c | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-)
New commits: commit f624a55a34083f76c1351da1574f1cae7f11cb55 Author: Kevin Brace <kevinbr...@gmx.com> Date: Wed Dec 21 20:35:06 2016 -0800 Version bumped to 0.5.173 Signed-off-by: Kevin Brace <kevinbr...@gmx.com> diff --git a/configure.ac b/configure.ac index aac0e28..69f928a 100644 --- a/configure.ac +++ b/configure.ac @@ -23,7 +23,7 @@ # Initialize Autoconf AC_PREREQ(2.57) AC_INIT([xf86-video-openchrome], - [0.5.172], + [0.5.173], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg&component=Driver/openchrome], [xf86-video-openchrome]) commit 56b3faff8e831a82f462db0f8835db591b4ef913 Author: Dylan Aïssi <bob.dyb...@gmail.com> Date: Wed Dec 21 20:31:19 2016 -0800 Fix a spelling error inside via_xv.c Signed-off-by: Dylan Aïssi <bob.dyb...@gmail.com> Acked-by: Kevin Brace <kevinbr...@gmx.com> diff --git a/src/via_xv.c b/src/via_xv.c index 33e473b..adc9af2 100644 --- a/src/via_xv.c +++ b/src/via_xv.c @@ -357,7 +357,7 @@ DecideOverlaySupport(xf86CrtcPtr crtc) memEfficiency = (float)SINGLE_3205_133; break; default: - ErrorF("Unknow DRAM Type!\n"); + ErrorF("Unknown DRAM Type!\n"); mClock = 166; memEfficiency = (float)SINGLE_3205_133; break; commit 25ba0a409bf0676039b42aca2226acd8af64e9f6 Author: Chris Lamb <la...@debian.org> Date: Wed Dec 21 20:25:57 2016 -0800 Altering the compilation build script to make it reproducible. Signed-off-by: Chris Lamb <la...@debian.org> Reviewed-by: Dylan Aïssi <bob.dyb...@gmail.com> Acked-by: Kevin Brace <kevinbr...@gmx.com> diff --git a/src/Makefile.am b/src/Makefile.am index 1eb879c..86061b2 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -116,6 +116,9 @@ version.h: $(openchrome_drv_la_SOURCES) if [ -d .svn ]; then \ echo '#define BUILDCOMMENT "(development build, at revision '\ "`svnversion -nc .. | sed -e s/^[^:]*://`"')"' > $@.tmp; \ + elif [ "$$SOURCE_DATE_EPOCH" ]; then \ + printf '#define BUILDCOMMENT "(compiled with SOURCE_DATE_EPOCH: %s)"' $$SOURCE_DATE_EPOCH \ + > $@.tmp; \ else \ date +'#define BUILDCOMMENT "(development build, compiled on %c)"' \ > $@.tmp; \
_______________________________________________ Openchrome-devel mailing list Openchrome-devel@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/openchrome-devel