[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#383918: marked as done (FTBFS on non-DRM systems)



Your message dated Fri, 19 Jan 2007 16:02:02 +0000
with message-id <E1H7wBm-0007Hd-Oh@ries.debian.org>
and subject line Bug#383918: fixed in xserver-xorg-video-i810 2:1.7.2-4
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: xserver-xorg-video-i810
Version: 2:1.6.5-1
Severity: important
Tags: patch

Hi,

This package FTBFS on systems that don't have DRM, here is a patch.

Samuel

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: hurd-i386 (i686-AT386)
Shell:  /bin/sh linked to /bin/bash
Kernel: GNU-Mach 1.3/Hurd-0.3
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages xserver-xorg-video-i810 depends on:
ii  libc0.3                  2.3.6-18-youpi1 GNU C Library: Shared libraries
ii  xserver-xorg-core        1:1.1.1-2       X.Org X server -- core server

xserver-xorg-video-i810 recommends no packages.

-- no debconf information
diff -ur xserver-xorg-video-i810-1.6.5/debian/control xserver-xorg-video-i810-1.6.5-hurd/debian/control
--- xserver-xorg-video-i810-1.6.5/debian/control	2006-08-20 17:28:24.000000000 +0000
+++ xserver-xorg-video-i810-1.6.5-hurd/debian/control	2006-08-20 17:09:48.000000000 +0000
@@ -3,7 +3,7 @@
 Priority: optional
 Maintainer: Debian X Strike Force <debian-x@lists.debian.org>
 Uploaders: David Nusinow <dnusinow@debian.org>, Branden Robinson <branden@debian.org>, Fabio M. Di Nitto <fabbione@fabbione.net>
-Build-Depends: debhelper (>= 4.0.0), pkg-config, xserver-xorg-dev (>= 1.1.1-1), x11proto-gl-dev, x11proto-video-dev, libdrm-dev, libgl1-mesa-dev | libgl-dev, libxvmc-dev (>= 1:1.0.1-1), x11proto-core-dev, x11proto-fonts-dev, x11proto-randr-dev, x11proto-render-dev, x11proto-xinerama-dev, libdrm-dev (>> 2.0), x11proto-xf86dri-dev
+Build-Depends: debhelper (>= 4.0.0), pkg-config, xserver-xorg-dev (>= 1.1.1-1), x11proto-gl-dev, x11proto-video-dev, libdrm-dev [!hurd-i386], libgl1-mesa-dev | libgl-dev, libxvmc-dev (>= 1:1.0.1-1), x11proto-core-dev, x11proto-fonts-dev, x11proto-randr-dev, x11proto-render-dev, x11proto-xinerama-dev, libdrm-dev (>> 2.0) [!hurd-i386], x11proto-xf86dri-dev
 Standards-Version: 3.6.1
 
 Package: xserver-xorg-video-i810
diff -ur xserver-xorg-video-i810-1.6.5/src/brw_structs.h xserver-xorg-video-i810-1.6.5-hurd/src/brw_structs.h
--- xserver-xorg-video-i810-1.6.5/src/brw_structs.h	2006-08-08 22:51:25.000000000 +0000
+++ xserver-xorg-video-i810-1.6.5-hurd/src/brw_structs.h	2006-08-20 17:23:05.000000000 +0000
@@ -28,6 +28,8 @@
 #ifndef BRW_STRUCTS_H
 #define BRW_STRUCTS_H
 
+#include <GL/gl.h>
+
 /* Command packets:
  */
 struct header 
diff -ur xserver-xorg-video-i810-1.6.5/src/i810_driver.c xserver-xorg-video-i810-1.6.5-hurd/src/i810_driver.c
--- xserver-xorg-video-i810-1.6.5/src/i810_driver.c	2006-08-10 20:40:39.000000000 +0000
+++ xserver-xorg-video-i810-1.6.5-hurd/src/i810_driver.c	2006-08-20 19:06:38.000000000 +0000
@@ -333,6 +333,8 @@
    NULL
 };
 
+#endif /* I830_ONLY */
+
 const char *I810shadowSymbols[] = {
     "shadowInit",
     "shadowSetup",
@@ -340,8 +342,6 @@
     NULL
 };
 
-#endif /* I830_ONLY */
-
 #ifndef I810_DEBUG
 int I810_DEBUG = (0
 /*     		  | DEBUG_ALWAYS_SYNC  */
@@ -408,9 +408,9 @@
 #ifdef XF86DRI
 			I810drmSymbols,
 			I810driSymbols,
+#endif
 			I810shadowSymbols,
 			I810shadowFBSymbols,
-#endif
 			I810vbeSymbols, vbeOptionalSymbols,
 			I810ddcSymbols, I810int10Symbols, NULL);
 
diff -ur xserver-xorg-video-i810-1.6.5/src/i830_accel.c xserver-xorg-video-i810-1.6.5-hurd/src/i830_accel.c
--- xserver-xorg-video-i810-1.6.5/src/i830_accel.c	2006-08-08 22:51:25.000000000 +0000
+++ xserver-xorg-video-i810-1.6.5-hurd/src/i830_accel.c	2006-08-20 17:17:35.000000000 +0000
@@ -395,6 +395,7 @@
    return XAAInit(pScreen, infoPtr);
 }
 
+#ifdef XF86DRI
 static unsigned int
 CheckTiling(ScrnInfoPtr pScrn)
 {
@@ -416,6 +417,9 @@
 
    return tiled;
 }
+#else
+#define CheckTiling(pScrn) 0
+#endif
 
 void
 I830SetupForSolidFill(ScrnInfoPtr pScrn, int color, int rop,

--- End Message ---
--- Begin Message ---
Source: xserver-xorg-video-i810
Source-Version: 2:1.7.2-4

We believe that the bug you reported is fixed in the latest version of
xserver-xorg-video-i810, which is due to be installed in the Debian FTP archive:

xserver-xorg-video-i810_1.7.2-4.diff.gz
  to pool/main/x/xserver-xorg-video-i810/xserver-xorg-video-i810_1.7.2-4.diff.gz
xserver-xorg-video-i810_1.7.2-4.dsc
  to pool/main/x/xserver-xorg-video-i810/xserver-xorg-video-i810_1.7.2-4.dsc
xserver-xorg-video-i810_1.7.2-4_i386.deb
  to pool/main/x/xserver-xorg-video-i810/xserver-xorg-video-i810_1.7.2-4_i386.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 383918@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Drew Parsons <dparsons@debian.org> (supplier of updated xserver-xorg-video-i810 package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmaster@debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.7
Date: Sat, 20 Jan 2007 02:29:30 +1100
Source: xserver-xorg-video-i810
Binary: xserver-xorg-video-i810
Architecture: source i386
Version: 2:1.7.2-4
Distribution: unstable
Urgency: low
Maintainer: Debian X Strike Force <debian-x@lists.debian.org>
Changed-By: Drew Parsons <dparsons@debian.org>
Description: 
 xserver-xorg-video-i810 - X.Org X server -- Intel i8xx, i9xx display driver
Closes: 382120 383918
Changes: 
 xserver-xorg-video-i810 (2:1.7.2-4) unstable; urgency=low
 .
   [ Julien Cristau ]
   * Don't build-dep on libdrm-dev on hurd-i386, and don't try to install
     the libI810XvMC library there, as it isn't built without drm.  Thanks to
     Samuel Thibault for the patch! (closes: #383918)
 .
   [ Drew Parsons ]
   * Apply patch 20-i915_bios.patch from upsteam (1.7.4) to help with faulty
     BIOSes (where VBE initialization failed). Closes: #382120.
Files: 
 673d9c899db8d496679432ebee65d442 1282 x11 optional xserver-xorg-video-i810_1.7.2-4.dsc
 b50479991e6334e45255659845209c9e 50978 x11 optional xserver-xorg-video-i810_1.7.2-4.diff.gz
 be2bb9f279afa50b88e4b1925948e99d 161544 x11 optional xserver-xorg-video-i810_1.7.2-4_i386.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.6 (GNU/Linux)

iD8DBQFFsOfxts5wQWQSTkoRAkASAJ0cXkaYmO++yEJvHWI1DpZbt2p+DwCgpVS7
Yb+LZiPkJDsP2aHtOzOTFZ0=
=wi3l
-----END PGP SIGNATURE-----


--- End Message ---

Reply to: