rendercheck: 2 commits - AUTHORS autogen.sh configure.ac NEWS

Eric Anholt anholt at kemper.freedesktop.org
Tue May 23 10:08:39 EEST 2006


 AUTHORS      |    1 +
 NEWS         |    9 ++++++++-
 autogen.sh   |   12 +++++++++++-
 configure.ac |    2 +-
 4 files changed, 21 insertions(+), 3 deletions(-)

New commits:
diff-tree b99c20783f3d77077eef2af18960db1a68d0dffd (from 47e2f49ffc5c9300097ffb217074b0cac13f1e42)
Author: Eric Anholt <anholt at FreeBSD.org>
Date:   Mon May 22 23:54:55 2006 -0700

    Bump version to 1.1 and update docs.

diff --git a/AUTHORS b/AUTHORS
index aba7a62..cf0203b 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -1 +1,2 @@
 Written in 2004 by Eric Anholt.
+Additional tests contributed by Lars Knoll.
diff --git a/NEWS b/NEWS
index dd3dfed..88fc526 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,13 @@
+2006-05-22:
+	Version 1.1 released.
+	Adds tests for triangles, gradients, and repeating sources.
+	Fixes a major memory leak.
+	Allow run-time selection of the set of tests to be run.
+	Add a manpage.
+
 2004-10-24:
 	Version 1.0.3 released.
-	Allows building on systems without xrender.pc
+	Allows building on systems without xrender.pc.
 
 2004-09-19:
 	Version 1.0.2 released.
diff --git a/configure.ac b/configure.ac
index 33e6b3e..5a12d87 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3,7 +3,7 @@
 
 AC_PREREQ(2.57)
 AC_INIT([rendercheck],
-        1.0.3,
+        1.1,
         [anholt at FreeBSD.org],
         rendercheck)
 
diff-tree 47e2f49ffc5c9300097ffb217074b0cac13f1e42 (from 60d23bc0d6b8dbefa0c03949bb1637970450e58e)
Author: Eric Anholt <anholt at FreeBSD.org>
Date:   Mon May 22 23:51:39 2006 -0700

    Replace autogen.sh with a more standard one from that does srcdir != builddir.

diff --git a/autogen.sh b/autogen.sh
index d212a70..24c845f 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -1,5 +1,15 @@
 #! /bin/sh
+
+srcdir=`dirname $0`
+test -z "$srcdir" && srcdir=.
+
+ORIGDIR=`pwd`
+cd $srcdir
+
 aclocal || exit 1
 automake --foreign --add-missing || exit 1
 autoconf || exit 1
-./configure --enable-maintainer-mode "$@"
+
+cd $ORIGDIR || exit $?
+
+$srcdir/configure --enable-maintainer-mode "$@"



More information about the xorg-commit mailing list