xf86-video-intel: configure.ac src/i830_video.c

Alan Hourihane alanh at kemper.freedesktop.org
Fri Oct 13 19:10:37 EEST 2006


 configure.ac     |   10 ++++++++++
 src/i830_video.c |    1 -
 2 files changed, 10 insertions(+), 1 deletion(-)

New commits:
diff-tree adae75ef2f8a655a699e982ca8f26b934dbe950a (from 1d4cfaa391ac41099de11b8f3b21e5eb56543909)
Author: Alan Hourihane <alanh at fairlite.demon.co.uk>
Date:   Fri Oct 13 17:10:27 2006 +0100

    Make VIDEO_DEBUG into a configure option

diff --git a/configure.ac b/configure.ac
index 042d67d..c91b1df 100644
--- a/configure.ac
+++ b/configure.ac
@@ -65,6 +65,11 @@ AC_ARG_ENABLE(dri, AC_HELP_STRING([--dis
               [DRI="$enableval"],
               [DRI=auto])
 
+AC_ARG_ENABLE(video-debug, AC_HELP_STRING([--enable-video-debug],
+                                  [Enable video debugging support [[default=no]]]),
+              [VIDEO_DEBUG="$enableval"],
+              [VIDEO_DEBUG=no])
+
 
 # Checks for extensions
 XORG_DRIVER_CHECK_EXT(XINERAMA, xineramaproto)
@@ -122,6 +127,11 @@ if test "$DRI" = yes; then
         AC_DEFINE(XF86DRI_DEVEL,1,[Enable developmental DRI driver support])
 fi
 
+AM_CONDITIONAL(VIDEO_DEBUG, test x$VIDEO_DEBUG = xyes)
+if test "$VIDEO_DEBUG" = yes; then
+	AC_DEFINE(VIDEO_DEBUG,1,[Enable debug support])
+fi
+
 AC_SUBST([DRI_CFLAGS])
 AC_SUBST([XORG_CFLAGS])
 AC_SUBST([moduledir])
diff --git a/src/i830_video.c b/src/i830_video.c
index db21d87..054d26b 100644
--- a/src/i830_video.c
+++ b/src/i830_video.c
@@ -1,4 +1,3 @@
-#define VIDEO_DEBUG 0
 /***************************************************************************
  
 Copyright 2000 Intel Corporation.  All Rights Reserved. 



More information about the xorg-commit mailing list