libdrm: Changes to 'ubuntu'

2009-07-05 Thread Christopher Halse Rogers
 debian/changelog   |   11 
 debian/libdrm-nouveau1.symbols |4 
 debian/patches/101_update_libdrm-nouveau_interface |  649 +
 debian/patches/series  |1 
 4 files changed, 664 insertions(+), 1 deletion(-)

New commits:
commit 9b617c80daa7f7a2e3e48d23c58f54d7aa4d5a3d
Author: Christopher James Halse Rogers 
Date:   Mon Jul 6 14:13:41 2009 +1000

Update libdrm-nouveau for 0.0.14 kernel drm interface

diff --git a/debian/changelog b/debian/changelog
index b2e8211..7018fe3 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,17 @@
 libdrm (2.4.11-1ubuntu1) UNRELEASED; urgency=low
 
+  [ Timo Aaltonen ]
   * Merge from Debian unstable.
 
- -- Timo Aaltonen   Fri, 03 Jul 2009 12:04:01 +0300
+  [ Christopher James Halse Rogers ]
+  * Add 101_update_libdrm-nouveau_interface.patch.  Backport several
+libdrm-nouveau commits from upstream which are needed to interface with
+the new 0.0.14 nouveau kernel interface provided by recent nouveau.ko
+(LP: #395700)
+  * debian/libdrm-nouveau1.symbols: Add new symbols introduced in 
+101_update_libdrm-nouveau_interface
+
+ -- Christopher James Halse Rogers   Mon, 06 Jul 2009 
14:12:42 +1000
 
 libdrm (2.4.11-1) unstable; urgency=low
 
diff --git a/debian/libdrm-nouveau1.symbols b/debian/libdrm-nouveau1.symbols
index f9686a7..1805968 100644
--- a/debian/libdrm-nouveau1.symbols
+++ b/debian/libdrm-nouveau1.symbols
@@ -7,7 +7,10 @@ libdrm_nouveau.so.1 libdrm-nouveau1 #MINVER#
  nouveau_bo_handle_...@base 2.4.4
  nouveau_bo_i...@base 2.4.4
  nouveau_bo_...@base 2.4.4
+ nouveau_bo_map_fl...@base 2.4.11-0ubuntu2
+ nouveau_bo_map_ra...@base 2.4.11-0ubuntu2
  nouveau_bo_...@base 2.4.4
+ nouveau_bo_new_t...@base 2.4.11-0ubuntu2
  nouveau_bo_...@base 2.4.4
  nouveau_bo_...@base 2.4.4
  nouveau_bo_taked...@base 2.4.4
@@ -16,6 +19,7 @@ libdrm_nouveau.so.1 libdrm-nouveau1 #MINVER#
  nouveau_bo_un...@base 2.4.4
  nouveau_bo_u...@base 2.4.4
  nouveau_bo_validate_n...@base 2.4.4
+ nouveau_bo_w...@base 2.4.11-0ubuntu2
  nouveau_channel_al...@base 2.4.4
  nouveau_channel_f...@base 2.4.4
  nouveau_device_cl...@base 2.4.4
diff --git a/debian/patches/101_update_libdrm-nouveau_interface 
b/debian/patches/101_update_libdrm-nouveau_interface
new file mode 100644
index 000..ecfb929
--- /dev/null
+++ b/debian/patches/101_update_libdrm-nouveau_interface
@@ -0,0 +1,649 @@
+Backport changes to libdrm-nouveau since 2.4.11
+
+The nouveau drm kernel interface has changed (twice) since the
+2.4.11 release.  We need these updates so that the DDX can 
+use a recent nouveau.ko.
+
+The list of git commits imported is:
+c65a343ed29c24f812ca919f40dfeee948b6f14a
+00fae87f96e1fc5198311feec81866bf9c53d0e1
+2cb4c64d7310904b354365c2cbc263211e9eb4a1
+3d4bfe8c893d016ef43d1ebf28e4607aa1f540a4
+Index: libdrm-2.4.11/libdrm/nouveau/libdrm_nouveau.pc.in
+===
+--- libdrm-2.4.11.orig/libdrm/nouveau/libdrm_nouveau.pc.in 2009-07-03 
09:44:58.969261108 +1000
 libdrm-2.4.11/libdrm/nouveau/libdrm_nouveau.pc.in  2009-07-03 
09:45:36.937298103 +1000
+@@ -5,6 +5,6 @@
+ 
+ Name: libdrm_nouveau
+ Description: Userspace interface to nouveau kernel DRM services
+-Version: 0.5
++Version: 0.6
+ Libs: -L${libdir} -ldrm_nouveau
+ Cflags: -I${includedir} -I${includedir}/drm -I${includedir}/nouveau
+Index: libdrm-2.4.11/libdrm/nouveau/nouveau_bo.c
+===
+--- libdrm-2.4.11.orig/libdrm/nouveau/nouveau_bo.c 2009-07-03 
09:44:59.197260823 +1000
 libdrm-2.4.11/libdrm/nouveau/nouveau_bo.c  2009-07-03 09:45:36.937298103 
+1000
+@@ -20,6 +20,9 @@
+  * SOFTWARE.
+  */
+ 
++#ifdef HAVE_CONFIG_H
++#include 
++#endif
+ #include 
+ #include 
+ #include 
+@@ -42,6 +45,19 @@
+ }
+ 
+ static int
++nouveau_bo_info(struct nouveau_bo_priv *nvbo, struct drm_nouveau_gem_info 
*arg)
++{
++  nvbo->handle = nvbo->base.handle = arg->handle;
++  nvbo->domain = arg->domain;
++  nvbo->size = nvbo->base.size = arg->size;
++  nvbo->offset = arg->offset;
++  nvbo->map_handle = arg->map_handle;
++  nvbo->base.tile_mode = arg->tile_mode;
++  nvbo->base.tile_flags = arg->tile_flags;
++  return 0;
++}
++
++static int
+ nouveau_bo_allocated(struct nouveau_bo_priv *nvbo)
+ {
+   if (nvbo->sysmem || nvbo->handle || (nvbo->flags & NOUVEAU_BO_PIN))
+@@ -152,7 +168,8 @@
+   if (ret)
+   return ret;
+ 
+-  nvbo->handle = req.map_handle;
++  nvbo->handle =
++  nvbo->map_handle = req.map_handle;
+   nvbo->size = req.size;
+   nvbo->offset = req.offset;
+   if (req.flags & (NOUVEAU_MEM_AGP | NOUVEAU_MEM_PCI))
+@@ -169,6 +186,7 @@
+ {
+   struct nouveau_device_priv *nvdev = nouveau_device(nvbo->base.device);
+   struct drm_nouveau_gem_new req;
++  struct drm_nouveau_gem_info *info = &req.info;
+   int ret;
+ 
+   if (

Bug#535918: fonts diagonally chopped

2009-07-05 Thread jidanni
Package: xserver-xorg-core

Starting two weeks ago, I had to do
dpkg: warning: downgrading xserver-common from 2:1.6.1.901-3 to 2:1.6.1.901-2.
dpkg: warning: downgrading xserver-xorg-core from 2:1.6.1.901-3 to 
2:1.6.1.901-2.
or else throughout each icewm window and tool icon, xterm, emacs etc,
became like http://imagebin.ca/view/UprOUk.html (posted there due to
Bug#535916 (can't send PNG attachment to a bug)).



-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#534766: confirmation, well, almost

2009-07-05 Thread Juha Jäykkä
I have the (almost) same symptoms: corrupt fonts, corrupt colours, corrupt 
you-name-it, using xserver-xorg-video-intel 2:2.7.99.901-2 from experimental. 
And also no DRI, no DRI2. Similar problems plague all earlier versions of the 
driver as well (to some extent at least). The recompliation mentioned in the 
bug report logs version 2:2.7.99.901-3, from 
http://people.debian.org/~bgoglin/rebuilds/Xserver1.6-ABIbreak/intel/, however 
is free of all these problems, and DOES have DRI2 (I do not know about DRI, 
but who cares about that anyway if DRI2 works?).

The h/w in question is pci-id 8086:2a42, i.e. Intel 4500.

I think the 99.901 in experimental should be replaced by the -3 version...

Cheers,
Juha



-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#535892: X semi-freeze with Mobile 945GME

2009-07-05 Thread Joey Hess
Package: xserver-xorg-video-intel
Version: 2:2.7.1-1
Severity: important

I tried upgrading again from the testing version after seeing
hangs with the unstable version this spring and using the testing
version of X to avoid them. But within days I was experiencing
similar symptoms to those reported in #527349.

- One time I was using X and suddently the screen was completly
corrupted, almost as if the mode was set wrong.

- Twice, my window manager (xmonad) seemed to get stuck and
stopped responding to events like window changes, keypresses,
clicking on workspaces in the gnome panel, etc, but I could
continue editing an image in the gimp. And after 5 minutes, the
window manager seemed to get all the pending events at once, and
after responding to them all, was ok again.

- Several times, X seemed to lock up. However, this was not
a complete lock up; I could switch to the console. I was also
able to move the mouse, and could even use the mouse to 
highlight text in fbreader, as well as drag to scroll. But
I could not click on anything else on the desktop, nor
could I change windows, nor did the keyboard work.

At least during this last event, the kernel logged this:

[27116.246570] [drm:i915_get_vblank_counter] *ERROR* trying to get vblank count 
for disabled pipe 0
[27150.839488] [drm:i915_get_vblank_counter] *ERROR* trying to get vblank count 
for disabled pipe 0
[27755.964745] [drm:i915_get_vblank_counter] *ERROR* trying to get vblank count 
for disabled pipe 0

I've now downgraded to the testing version of X again,
although now it's not possible to install unstable's gnome with
testing's X, which is likely to become a problem..

Hardware: Dell Mini 9

-- Package-specific info:
Contents of /var/lib/x11/X.roster:
xserver-xorg

/var/lib/x11/X.md5sum does not exist.

X server symlink status:
lrwxrwxrwx 1 root root 13 Dec 16  2008 /etc/X11/X -> /usr/bin/Xorg
-rwxr-xr-x 1 root root 1718548 Feb 19 22:24 /usr/bin/Xorg

Contents of /var/lib/x11/xorg.conf.roster:
xserver-xorg

VGA-compatible devices on PCI bus:
00:02.0 VGA compatible controller: Intel Corporation Mobile 945GME Express 
Integrated Graphics Controller (rev 03)

/var/lib/x11/xorg.conf.md5sum does not exist.

Xorg X server configuration file status:
-rw-r--r-- 1 root root 1755 Apr 11 22:30 /etc/X11/xorg.conf

Contents of /etc/X11/xorg.conf:
# xorg.conf (X.Org X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf manual page.
# (Type "man xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
#   sudo dpkg-reconfigure -phigh xserver-xorg

Section "InputDevice"
Identifier  "Generic Keyboard"
Driver  "kbd"
Option  "XkbRules"  "xorg"
Option  "XkbModel"  "pc104"
Option  "XkbLayout" "us"
EndSection

#Section "InputDevice"
#   Identifier  "Configured Mouse"
#   Driver  "mouse"
#EndSection

Section "Device"
Identifier  "Configured Video Device"
EndSection

Section "Monitor"
Identifier  "Configured Monitor"
EndSection

Section "Screen"
Identifier  "Default Screen"
Monitor "Configured Monitor"
EndSection

Section "InputDevice"
Identifier  "Synaptics Touchpad"
Driver  "synaptics"
Option  "SendCoreEvents""true"
Option  "Device" "/dev/psaux"
Option  "Protocol" "auto-dev"
Option  "SHMConfig" "on"
Option  "TapButton1""1"
Option  "TapButton2""2"
Option  "TapButton3""3"
EndSection

Section "ServerLayout"
Identifier "Default Server Layout"
Screen "Default Screen"
InputDevice "Generic Keyboard" "Core Keyboard"
InputDevice "Synaptics Touchpad" "Core Pointer"
EndSection

Section "ServerFlags"
Option  "DontZap"   "false"
EndSection


Xorg X server log files on system:
-rw-r--r-- 1 root root 20723 Dec 17  2008 /var/log/Xorg.2.log
-rw-r--r-- 1 root root 40606 Jul  5 15:14 /var/log/Xorg.0.log

Contents of most recent Xorg X server log file
/var/log/Xorg.0.log:

X.Org X Server 1.4.2
Release Date: 11 June 2008
X Protocol Version 11, Revision 0
Build Operating System: Linux Debian (xorg-server 2:1.4.2-11)
Current Operating System: Linux gnu 2.6.30-1-686 #1 SMP Sun Jun 14 16:11:32 UTC 
2009 i686
Build Date: 20 February 2009  03:06:29AM
 
Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
Module Loader present
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (

Processed: submitter 513071, submitter 522354, submitter 522303, submitter 367026, submitter 511455 ...

2009-07-05 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> submitter 513071 crazycsh...@gmail.com
Bug#513071: Regression: for some hosts etch can connect but lenny can't 
(password auth)
Changed Bug submitter from Daniel Dickinson  to 
crazycsh...@gmail.com.

> submitter 522354 crazycsh...@gmail.com
Bug#522354: kmymoney2: Crashes when opening a custom report
Changed Bug submitter from Daniel Dickinson  to 
crazycsh...@gmail.com.

> submitter 522303 crazycsh...@gmail.com
Bug#522303: xfburn: Hangs when Burn Image pressed before drive has settled
Changed Bug submitter from Daniel Dickinson  to 
crazycsh...@gmail.com.

> submitter 367026 crazycsh...@gmail.com
Bug#367026: linux-image-2.6.15-1-486: HID sermouse driver fails to detect 
Logitech mouse on ttyS0
Changed Bug submitter from csh...@bmts.com to crazycsh...@gmail.com.

> submitter 511455 crazycsh...@gmail.com
Bug#511455: xorg: Second (right-hand) screen doesn't let mouse got back to left 
hand screen
Changed Bug submitter from Daniel Dickinson  to 
crazycsh...@gmail.com.

> submitter 512096 crazycsh...@gmail.com
Bug#512096: screem: DBus error - closing shared connection
Changed Bug submitter from Daniel Dickinson  to 
crazycsh...@gmail.com.

> submitter 512477 crazycsh...@gmail.com
Bug#512477: picocom: Received uses send command if a filename is specified when 
prompted
Changed Bug submitter from Daniel Dickinson  to 
crazycsh...@gmail.com.

> submitter 516668 crazycsh...@gmail.com
Bug#516668: screen: Screen fails to properly handle backspace in some terminals 
/ sessions
Changed Bug submitter from Daniel Dickinson  to 
crazycsh...@gmail.com.

> submitter 516796 crazycsh...@gmail.com
Bug#516796: lxpanel: Does not work with 
/usr/share/applications/kde/application.desktop
Changed Bug submitter from Daniel Dickinson  to 
crazycsh...@gmail.com.

> submitter 517190 crazycsh...@gmail.com
Bug#517190: lxde: Does not support the Debian Menu
Changed Bug submitter from Daniel Dickinson  to 
crazycsh...@gmail.com.

> submitter 517463 crazycsh...@gmail.com
Bug#517463: debpartial-mirror: get_sources = true doesn't get sources
Changed Bug submitter from Daniel Dickinson  to 
crazycsh...@gmail.com.

> submitter 517797 crazycsh...@gmail.com
Bug#517797: xscreensaver: Does not correctly handle differing horizontal and 
vertical DPI
Changed Bug submitter from Daniel Dickinson  to 
crazycsh...@gmail.com.

> submitter 517799 crazycsh...@gmail.com
Bug#517799: inkscape: Does not respect different x from y DPI
Changed Bug submitter from Daniel Dickinson  to 
crazycsh...@gmail.com.

> submitter 517800 crazycsh...@gmail.com
Bug#517800: fontconfig: Does not respect differing x and y DPI
Changed Bug submitter from Daniel Dickinson  to 
crazycsh...@gmail.com.

> submitter 518089 crazycsh...@gmail.com
Bug#518089: xserver-xorg: X with resolution autoconfiguration (default) selects 
non-square pixels
Changed Bug submitter from Daniel Dickinson  to 
crazycsh...@gmail.com.

> submitter 518683 crazycsh...@gmail.com
Bug#518683: pcman: Removable devices view has multiple entries for same device
Changed Bug submitter from Daniel Dickinson  to 
crazycsh...@gmail.com.

> submitter 519200 crazycsh...@gmail.com
Bug#519200: k3b: Should recognize cdrskin as cdrecord (it's compatible)
Changed Bug submitter from Daniel Dickinson  to 
crazycsh...@gmail.com.

> submitter 519362 crazycsh...@gmail.com
Bug#519362: kitty: .desktop file should be in /usr/share/applications
Changed Bug submitter from Daniel Dickinson  to 
crazycsh...@gmail.com.

> submitter 522115 crazycsh...@gmail.com
Bug#522115: qemu-launcher: unstable qemu uses -vga std for standard vga not 
-std-vga
Changed Bug submitter from Daniel Dickinson  to 
crazycsh...@gmail.com.

> submitter 522124 crazycsh...@gmail.com
Bug#522124: qemu: graphics beyond VGA hang VM
Changed Bug submitter from Daniel Dickinson  to 
crazycsh...@gmail.com.

> submitter 522214 crazycsh...@gmail.com
Bug#522214: snd-gtk: depends on gamin; fam should be possible to (depend on 
libgamin0?)
Changed Bug submitter from Daniel Dickinson  to 
crazycsh...@gmail.com.

> submitter 522933 crazycsh...@gmail.com
Bug#522933: Selecting Cancel after burn image's auto prompt for blanking disc 
hangs xfburn (uncloseable)
Changed Bug submitter from Daniel Dickinson  to 
crazycsh...@gmail.com.

> submitter 523017 crazycsh...@gmail.com
Bug#523017: debian-cd: Doesn't support local udebs if using a repo that 
requires section: local/debian-installer for local udebs
Changed Bug submitter from Daniel Dickinson  to 
crazycsh...@gmail.com.

> submitter 510928 crazycsh...@gmail.com
Bug#510928: Needs way to set tasksel/desktop with hacking 
/var/cache/debconf/config.dat
Changed Bug submitter from Daniel Dickinson  to 
crazycsh...@gmail.com.

> submitter 519329 crazycsh...@gmail.com
Bug#519329: apt-src: Doesn't recognize codenames (e.g. lenny), but only suites 
(e.g. stable)
Changed Bug submitter from Daniel Dickinson  to 
crazycsh...@gmail.com.

> submitter 520365 crazycsh...@gmail.com
Bug#520365: No pol

Processed: submitter 506050, submitter 484610

2009-07-05 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> submitter 506050 crazycsh...@gmail.com
Bug#506050: Patch from Ubuntu (Explicitly include limits.h for gcc 4.3)
Changed Bug submitter from Nick Ellery  to 
crazycsh...@gmail.com.

> submitter 484610 crazycsh...@gmail.com
Bug#484610: xserver-xorg: Need a convenient way to configure xorg.conf for 
non-autoconfigurable monitors
Changed Bug submitter from Daniel Dickinson  to 
crazycsh...@gmail.com.

>
End of message, stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Processed: closing 530920

2009-07-05 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> # Was dual screen / CorePointer issue
> close 530920
Bug#530920: xserver-xorg-input-mouse: At least in XFCE mouse is generating 
extra clicks
'close' is deprecated; see http://www.debian.org/Bugs/Developer#closing.
Bug closed, send any further explanations to Daniel Dickinson 


>
End of message, stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#535516: marked as done (Please add /usr/lib32/X11/locale to search path on i386)

2009-07-05 Thread Debian Bug Tracking System

Your message dated Sun, 5 Jul 2009 15:22:43 +0100
with message-id <20090705142243.ga8...@radis.liafa.jussieu.fr>
and subject line Re: Bug#535516: Please add /usr/lib32/X11/locale to search 
path on i386
has caused the Debian Bug report #535516,
regarding Please add /usr/lib32/X11/locale to search path on i386
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 this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
535516: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=535516
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: libx11-6
Version: 2:1.2.1-1
Severity: wishlist
File: /usr/lib/libX11.so.6.2.0

Hi,

when running 32bit application on amd64 the 32bit locales can not be
used. The reason for this is that libX11 only searches the following
dirs:

% strings /usr/lib32/libX11.so.6.2.0 | grep locale
setlocale
/usr/share/X11/locale
/usr/lib/X11/locale

It would be real nice if /usr/lib32/X11/locale could be included on
i386 and /usr/lib64/X11/locale (for running 64bit binaries on i386).

MfG
Goswin

-- System Information:
Debian Release: squeeze/sid
  APT prefers transitional-i386
  APT policy: (500, 'transitional-i386'), (500, 'unstable'), (400, 
'unstable-i386'), (1, 'experimental-i386'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.29.4-frosties-1
Locale: LANG=C, LC_CTYPE=de_DE (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages libx11-6 depends on:
ii  libc6 2.9-18 GNU C Library: Shared libraries
ii  libx11-data   2:1.2.1-1  X11 client-side library
ii  libxcb1   1.3-2  X C Binding

libx11-6 recommends no packages.

libx11-6 suggests no packages.

-- debconf information excluded


--- End Message ---
--- Begin Message ---
On Thu, Jul  2, 2009 at 23:09:51 +0200, Goswin Brederlow wrote:

> Package: libx11-6
> Version: 2:1.2.1-1
> Severity: wishlist
> File: /usr/lib/libX11.so.6.2.0
> 
> Hi,
> 
> when running 32bit application on amd64 the 32bit locales can not be
> used. The reason for this is that libX11 only searches the following
> dirs:
> 
> % strings /usr/lib32/libX11.so.6.2.0 | grep locale
> setlocale
> /usr/share/X11/locale
> /usr/lib/X11/locale
> 
> It would be real nice if /usr/lib32/X11/locale could be included on
> i386 and /usr/lib64/X11/locale (for running 64bit binaries on i386).
> 
we don't install anything in /usr/lib/X11/locale, so what's the point
exactly?

Cheers,
Julien

--- End Message ---


Processed: closing 535680

2009-07-05 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> # fixed in sid a while ago, pointless dupe of other bugs
> close 535680
Bug#535680: xterm beep still not working after several bug reports
'close' is deprecated; see http://www.debian.org/Bugs/Developer#closing.
Bug closed, send any further explanations to Justin Piszcz 


>
End of message, stopping processing here.

Please contact me if you need assistance.

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


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Fuull Body Seensuous Massage - Part 1

2009-07-05 Thread Shumate Pigman
Full Body Sensuoous Massage - Part 11 www. via65. com. Ganguly's mother enlists 
priest too help sno's cause


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



How to Talk Dirty Without Turning Her Off - A Girls Guide to Dirty Dialog Bewteen tdhe Sheets

2009-07-05 Thread Nunz
How to Talk Dirty Without Turnniing Her Off - A Girls Guide to Dirty Dialog 
Between the Sheets www. via65. com. Doog helps criminal slip short lveash


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#528709: Problem Solved

2009-07-05 Thread Bob Hauck

Mattia Dongili wrote:

I had the same setup in xorg.conf for several years, but apparently
the latest version of the synaptics driver prefers to be configured
via HAL.  This is not well-documented in the README or NEWS files.
There is a brief mention of auto-configuration and HAL in
README.Debian but then it goes on to describe manual configuration
using xorg.conf, which is seemingly not the proper method now.


well, I wouldn't say "proper".
Anyway, can you suggest a change to the README or NEWS file that would
help clearing this out?
This is really only a problem for people upgrading from a previous 
version who had custom settings in xorg.conf and who also use 
synclient/syndaemon.  At least I didn't notice any problem until I 
realized that syndaemon wasn't working any more.


In terms of that I think it needs to be made clear that if HAL is in use 
then settings changes should now be made via an fdi file, whereas if HAL 
is not in use then changes should be made to xorg.conf as in previous 
versions of the driver.  At least that's how I'm understanding it.


After the discussion of enabling tapping, NEWS says:

   Note that the configuration will not be permanently modified, to do
   so assign the above option values in your xorg.conf or custom fdi file

Maybe it would be better to say something like:

 Note that the configuration will not be permanently modified.  To do so
 assign the above option values in a custom fdi file (if HAL is in use) or
 in xorg.conf (if HAL is not in use).

Similarly, in the README, it mentions both methods but doesn't say 
anything about under what circumstances one or the other is preferred.  
Perhaps you could add something like this to the section on 
auto-configuration:


 If your system is using HAL then a custom fdi file is the preferred way
 to configure the driver.  If you have existing settings in xorg.conf from
 a previous version of the driver and your system is using HAL then those
 settings should be migrated to a custom fdi file.  See the comments in
 the default file for details of the syntax.

Perhaps the post-install script could even notify the user that he 
should read the NEWS file for information on the new configuration method.


--
-| Bob Hauck (Brother Nail Gun of The Short Path)
-| http://www.haucks.org/




--
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#535772: Fixed upstream

2009-07-05 Thread koos vriezen
Downloaded 
http://cgit.freedesktop.org/xorg/driver/xf86-video-intel/snapshot/xf86-video-intel-master.tar.bz2
and applied 
http://ftp.de.debian.org/debian/pool/main/x/xserver-xorg-video-intel/xserver-xorg-video-intel_2.7.99.901-2.diff.gz
and the crash is gone.  Debian diff had some pre-applied conflicts in
xvmc area, that I removed from the diff.

I don't have the time to bisect this, looking at
http://cgit.freedesktop.org/xorg/driver/xf86-video-intel/log/, there
are a few fixes in there.
(my first guess, but who cares, is
http://cgit.freedesktop.org/xorg/driver/xf86-video-intel/commit/?id=cdbf84f20295c8a78624318aa6fdfff3f5c8ce27
)



-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#535827: xterm: alternatives messed up

2009-07-05 Thread Oswald Buddenhagen
Package: xterm
Version: 243-1
Severity: normal

# apt-get install xterm
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following NEW packages will be installed:
  xterm
0 upgraded, 1 newly installed, 0 to remove and 6 not upgraded.
1 not fully installed or removed.
Need to get 0B/487kB of archives.
After this operation, 1417kB of additional disk space will be used.
Selecting previously deselected package xterm.
(Reading database ... 128921 files and directories currently installed.)
Unpacking xterm (from .../archives/xterm_243-1_i386.deb) ...
update-alternatives: error: no alternatives for x-terminal-emulator.
update-alternatives: error: no alternatives for x-terminal-emulator.
Processing triggers for man-db ...
Processing triggers for menu ...
Setting up xterm (243-1) ...
update-alternatives: error: alternative x-terminal-emulator.1.gz can't be slave 
of x-terminal-emulator: it is a master alternative.
dpkg: error processing xterm (--configure):
 subprocess installed post-installation script returned error exit status 2

this might be related to bug #400478.

-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.30.1 (PREEMPT)
Locale: LANG=C, LC_CTYPE=en_US (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

Versions of packages xterm depends on:
ii  libc6 2.9-18 GNU C Library: Shared libraries
ii  libfontconfig12.6.0-4generic font configuration library
ii  libice6   2:1.0.5-1  X11 Inter-Client Exchange library
ii  libncurses5   5.7+20090530-1 shared libraries for terminal hand
ii  libx11-6  2:1.2.1-1  X11 client-side library
ii  libxaw7   2:1.0.5-2  X11 Athena Widget library
ii  libxft2   2.1.13-3   FreeType-based font drawing librar
ii  libxmu6   2:1.0.4-1  X11 miscellaneous utility library
ii  libxt61:1.0.5-3  X11 toolkit intrinsics library
ii  xbitmaps  1.0.1-2Base X bitmaps

Versions of packages xterm recommends:
ii  x11-utils 7.4+1  X11 utilities
ii  xutils1:7.4+3X Window System utility programs m

Versions of packages xterm suggests:
pn  xfonts-cyrillic(no description available)

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



How to Quickly Burqst Out An Ograsm With These Simple and Easy Methods

2009-07-05 Thread Demontigny Fleagle
How to Quickly Burst Out An Orgasm With Thesse Simple and Easy Msethods www. 
via65. com. Airborne pays out millions due to phdosny cold-cure claims


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



66 tSeps To A Sensual Seduction

2009-07-05 Thread surfactants
6 Sjteps To A Senseual Seduction www. via65. com. Malaysian police ned thhe 
29-year career of 'fake' dentist


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Presmature Ejaaculation - Mens' Greatest Awe!

2009-07-05 Thread Folk Yamaki
Premature Ejaculation - Mens' Grzeatest wAe! www. via65. com. Finns get 
mobile-TV, but no pictture orr phones


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#535803: (xfonts-utils_1:7.4+1/avr32): FTBFS: Outdated config.{sub,guess}

2009-07-05 Thread bradsmith
Package: xfonts-utils
Version: 1:7.4+1
Severity: wishlist
User: bradsm...@debian.org
Usertags: avr32

Hi,

Whilst building your package on AVR32, the build failed due to outdated
config.{sub,guess} files.

Full build logs available:

  
http://buildd.debian-ports.org/build.php?pkg=xfonts-utils&arch=avr32&ver=1:7.4+1

(The severity of this bug is wishlist purely because AVR32 is not yet an
official architecture, but otherwise this would of course be serious).

Regards,
Bradley Smith

--
Bradley Smith b...@brad-smith.co.uk
Debian GNU/Linux Developer bradsm...@debian.org
GPG: 0xC718D347   D201 7274 2FE1 A92A C45C EFAB 8F70 629A C718 D347



-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



How to Make Hler Orgasm - 3 Words That Wlil Change Everything!

2009-07-05 Thread Bretana Kanzenbach
How to Make Her Orgasm - 33 Words That Will Change Everythhing! www. via65. 
com. Estranged wife of NYC pastor asys church should bee counted as asset in 
divorce


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#437207: marked as done (xserver-xorg-video-intel: lockup on i855, Error in I830WaitLpRing(), with OpenGL after suspend)

2009-07-05 Thread Debian Bug Tracking System

Your message dated Sun, 05 Jul 2009 09:43:20 +0200
with message-id <4a505998.7010...@ens-lyon.org>
and subject line Re: Bug#437207: xserver-xorg-video-i810: OpenGL crashes, only  
after a suspend
has caused the Debian Bug report #437207,
regarding xserver-xorg-video-intel: lockup on i855, Error in I830WaitLpRing(), 
with OpenGL after suspend
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 this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
437207: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=437207
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: xserver-xorg-video-i810
Version: 2:2.1.0-2
Severity: important

I've consistently found that after a suspend to RAM, many GL applications fail
to render correctly, or sometimes completely lock up the system. GL behaves
fine up until after the first suspend. A workaround is to restart the X server
after each suspend, though this is obviously not ideal.

In more detail, symptoms occur with programs such as bzflag or xmoto, but oddly
enough, never glxgears. Either the rendering will be exceedingly dark, such
that I can't tell if the rendering is otherwise correct or not, or the screen
will fill entirely with multicoloured fuzz and the machine will crash entirely
(can't switch to a virtual terminal, can't ping on the network).

The graphics hardware is reported by the X logs as "Intel Corporation
82852/855GM Integrated Graphics Device rev 2".

Richard


-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)

Kernel: Linux 2.6.20.3-ubuntu1rt (PREEMPT)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages xserver-xorg-video-i810 depends on:
ii  xserver-xorg-video-intel  2:2.1.0-2  X.Org X server -- Intel i8xx, i9xx

xserver-xorg-video-i810 recommends no packages.

-- no debconf information

--- End Message ---
--- Begin Message ---
Version:2:2.3.2-2+lenny6


Richard Thrippleton wrote:
> On Sat Jun 13 08:41, Brice Goglin wrote:
>   
>> On Sat, Aug 11, 2007 at 01:24:40AM +0100, Richard Thrippleton wrote:
>> 
>>> Package: xserver-xorg-video-i810
>>> Version: 2:2.1.0-2
>>> Severity: important
>>>
>>> I've consistently found that after a suspend to RAM, many GL applications 
>>> fail
>>> to render correctly, or sometimes completely lock up the system. GL behaves
>>> fine up until after the first suspend. A workaround is to restart the X 
>>> server
>>> after each suspend, though this is obviously not ideal.
>>>   
>> Does this still happen with latest intel driver in unstable or 
>> experimental?
>> 
> I'm not tracking unstable/experimental, but version 2:2.3.2-2+lenny6 (current
> version in testing I believe) seems not to have the problem. Success!
>   

Ok closing thanks.

Brice


--- End Message ---