From b919db75d2f6dc1019f981534b0d5d87c6029727 Mon Sep 17 00:00:00 2001 From: Alan Hourihane Date: Wed, 26 Jul 2006 09:07:19 +0100 Subject: Bump to 1.6.1 --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 82d3e55f..b1d3524f 100644 --- a/configure.ac +++ b/configure.ac @@ -22,7 +22,7 @@ AC_PREREQ(2.57) AC_INIT([xf86-video-i810], - 1.6.0, + 1.6.1, [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], xf86-video-i810) -- cgit v1.2.3 From 8e5844bbf9c8880c9eb6eff29b6db2db06b01933 Mon Sep 17 00:00:00 2001 From: Alan Hourihane Date: Tue, 8 Aug 2006 11:43:10 +0100 Subject: bump to 1.6.2 to indicate mergedfb support --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index b1d3524f..fde89171 100644 --- a/configure.ac +++ b/configure.ac @@ -22,7 +22,7 @@ AC_PREREQ(2.57) AC_INIT([xf86-video-i810], - 1.6.1, + 1.6.2, [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], xf86-video-i810) -- cgit v1.2.3 From 37644293da751bfc7268c9fc74ecda1044607dee Mon Sep 17 00:00:00 2001 From: Alan Hourihane Date: Tue, 8 Aug 2006 14:42:32 +0100 Subject: check for xineramaproto --- configure.ac | 1 + 1 file changed, 1 insertion(+) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index fde89171..b1141dc1 100644 --- a/configure.ac +++ b/configure.ac @@ -54,6 +54,7 @@ AC_ARG_ENABLE(dri, AC_HELP_STRING([--disable-dri], # Checks for extensions +XORG_DRIVER_CHECK_EXT(XINERAMA, xineramaproto) XORG_DRIVER_CHECK_EXT(RANDR, randrproto) XORG_DRIVER_CHECK_EXT(RENDER, renderproto) XORG_DRIVER_CHECK_EXT(XF86DRI, xextproto x11) -- cgit v1.2.3 From bb65a4dc55b416437d61ccbee8b6056fe8e08357 Mon Sep 17 00:00:00 2001 From: Alan Hourihane Date: Tue, 8 Aug 2006 14:51:18 +0100 Subject: bump to 1.6.3 --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index b1141dc1..d9cf959c 100644 --- a/configure.ac +++ b/configure.ac @@ -22,7 +22,7 @@ AC_PREREQ(2.57) AC_INIT([xf86-video-i810], - 1.6.2, + 1.6.3, [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], xf86-video-i810) -- cgit v1.2.3 From bb6080735efc40e103e92b65d0c2f1f729156632 Mon Sep 17 00:00:00 2001 From: Eric Anholt Date: Wed, 9 Aug 2006 12:21:16 -0700 Subject: Bump to 1.6.4 for release. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index d9cf959c..74e676ba 100644 --- a/configure.ac +++ b/configure.ac @@ -22,7 +22,7 @@ AC_PREREQ(2.57) AC_INIT([xf86-video-i810], - 1.6.3, + 1.6.4, [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], xf86-video-i810) -- cgit v1.2.3 From 975e60261088dee124b329d28c64e508bce1f90b Mon Sep 17 00:00:00 2001 From: Eric Anholt Date: Thu, 10 Aug 2006 13:49:43 -0700 Subject: Bug #7829: Fix reported driver version. The driver now reports itself as the PACKAGE_VERSION from autoconf. The DRI DDX -> client interface version is dissociated from this so that we can do appropriate major/minor versioning of the interface that's not tied to the package version. Bumped the i830 ddx dri version patchlevel to note the fix in the previous commit. --- configure.ac | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 74e676ba..edd5d7b7 100644 --- a/configure.ac +++ b/configure.ac @@ -26,6 +26,16 @@ AC_INIT([xf86-video-i810], [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], xf86-video-i810) +AC_DEFINE_UNQUOTED([INTEL_VERSION_MAJOR], + [$(echo $PACKAGE_VERSION | sed -e 's/^\([[0-9]]\)\.[[0-9]]\.[[0-9]]/\1/')], + [Major version]) +AC_DEFINE_UNQUOTED([INTEL_VERSION_MINOR], + [$(echo $PACKAGE_VERSION | sed -e 's/^[[0-9]]\.\([[0-9]]\)\.[[0-9]]/\1/')], + [Minor version]) +AC_DEFINE_UNQUOTED([INTEL_VERSION_PATCH], + [$(echo $PACKAGE_VERSION | sed -e 's/^[[0-9]]\.[[0-9]]\.\([[0-9]]\)/\1/')], + [Patch version]) + AC_CONFIG_SRCDIR([Makefile.am]) AM_CONFIG_HEADER([config.h]) AC_CONFIG_AUX_DIR(.) -- cgit v1.2.3 From 4cfed93df6b23903704348cafe050a6546e84479 Mon Sep 17 00:00:00 2001 From: Eric Anholt Date: Thu, 10 Aug 2006 15:41:32 -0700 Subject: Bump to 1.6.5 for release. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index edd5d7b7..436d7e5c 100644 --- a/configure.ac +++ b/configure.ac @@ -22,7 +22,7 @@ AC_PREREQ(2.57) AC_INIT([xf86-video-i810], - 1.6.4, + 1.6.5, [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], xf86-video-i810) -- cgit v1.2.3 From 1e6e288b8826789f3b2520d12426ff7852a67ccd Mon Sep 17 00:00:00 2001 From: Eric Anholt Date: Fri, 1 Sep 2006 16:47:17 -0700 Subject: Add a check for intel-gen4asm, and rules to compile {wm,sf}_prog.h using it. This adds assembly source for the two programs used in the textured video implementation on the 965, which should make them easier to modify in the future. The compiled versions are also included, so that intel-gen4asm isn't a build requirement for people that aren't modifying these programs. There are minor differences in the compiled versions of these programs compared to their previous versions which were compiled with a different tool. I believe the changes should be harmless, and video continues to work on my system. --- configure.ac | 3 +++ 1 file changed, 3 insertions(+) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 436d7e5c..a27822e5 100644 --- a/configure.ac +++ b/configure.ac @@ -49,6 +49,9 @@ AC_DISABLE_STATIC AC_PROG_LIBTOOL AC_PROG_CC +AC_CHECK_PROG(gen4asm, [intel-gen4asm], yes, no) +AM_CONDITIONAL(HAVE_GEN4ASM, test x$gen4asm = xyes) + AH_TOP([#include "xorg-server.h"]) AC_ARG_WITH(xorg-module-dir, -- cgit v1.2.3