xserver-xorg-video-intel: Changes to 'ubuntu-quantal'

2013-10-03 Thread Timo Aaltonen
 debian/changelog |7 +
 debian/patches/fix-possible-clones-computation.patch |  126 +++
 debian/patches/series|1 
 3 files changed, 134 insertions(+)

New commits:
commit e7c37292e6ac8a1c91554b75e80daee008fb942a
Author: Timo Aaltonen 
Date:   Thu Oct 3 09:57:12 2013 +0300

commit -0u2.3

diff --git a/debian/changelog b/debian/changelog
index 527bb16..eaced1d 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+xserver-xorg-video-intel (2:2.20.9-0ubuntu2.3) quantal-proposed; urgency=low
+
+  * Add fix-possible-clones-computation.patch: Backport from 2.20.10 to fix
+clone mode on haswell laptops. (LP: #1202524)
+
+ -- Robert Hooker   Thu, 01 Aug 2013 09:24:13 -0400
+
 xserver-xorg-video-intel (2:2.20.9-0ubuntu2.2) quantal-proposed; urgency=low
 
   * Added patches to add/fix Haswell pci-id's (LP: #1175533)
diff --git a/debian/patches/fix-possible-clones-computation.patch 
b/debian/patches/fix-possible-clones-computation.patch
new file mode 100644
index 000..f7883a6
--- /dev/null
+++ b/debian/patches/fix-possible-clones-computation.patch
@@ -0,0 +1,126 @@
+--- a/src/intel_display.c
 b/src/intel_display.c
+@@ -1435,7 +1435,6 @@
+   intel_output_backlight_init(output);
+ 
+   output->possible_crtcs = kencoder->possible_crtcs;
+-  output->possible_clones = kencoder->possible_clones;
+   output->interlaceAllowed = TRUE;
+ 
+   intel_output->output = output;
+@@ -1680,6 +1679,60 @@
+   drmHandleEvent(mode->fd, &mode->event_context);
+ }
+ 
++static drmModeEncoderPtr
++intel_get_kencoder(struct intel_mode *mode, int num)
++{
++  struct intel_output *iterator;
++  int id = mode->mode_res->encoders[num];
++
++  list_for_each_entry(iterator, &mode->outputs, link)
++  if (iterator->mode_encoder->encoder_id == id)
++  return iterator->mode_encoder;
++
++  return NULL;
++}
++
++/*
++ * Libdrm's possible_clones is a mask of encoders, Xorg's possible_clones is a
++ * mask of outputs. This function sets Xorg's possible_clones based on the
++ * values read from libdrm.
++ */
++static void
++intel_compute_possible_clones(ScrnInfoPtr scrn, struct intel_mode *mode)
++{
++  xf86CrtcConfigPtr config = XF86_CRTC_CONFIG_PTR(scrn);
++  struct intel_output *intel_output, *clone;
++  drmModeEncoderPtr cloned_encoder;
++  uint32_t mask;
++  int i, j, k;
++  CARD32 possible_clones;
++
++  for (i = 0; i < config->num_output; i++) {
++  possible_clones = 0;
++  intel_output = config->output[i]->driver_private;
++
++  mask = intel_output->mode_encoder->possible_clones;
++  for (j = 0; mask != 0; j++, mask >>= 1) {
++
++  if ((mask & 1) == 0)
++  continue;
++
++  cloned_encoder = intel_get_kencoder(mode, j);
++  if (!cloned_encoder)
++  continue;
++
++  for (k = 0; k < config->num_output; k++) {
++  clone = config->output[k]->driver_private;
++  if (clone->mode_encoder->encoder_id ==
++  cloned_encoder->encoder_id)
++  possible_clones |= (1 << k);
++  }
++  }
++
++  config->output[i]->possible_clones = possible_clones;
++  }
++}
++
+ Bool intel_mode_pre_init(ScrnInfoPtr scrn, int fd, int cpp)
+ {
+   intel_screen_private *intel = intel_get_screen_private(scrn);
+@@ -1715,6 +1768,7 @@
+ 
+   for (i = 0; i < mode->mode_res->count_connectors; i++)
+   intel_output_init(scrn, mode, i);
++  intel_compute_possible_clones(scrn, mode);
+ 
+ #ifdef INTEL_PIXMAP_SHARING
+   xf86ProviderSetup(scrn, NULL, "Intel");
+--- a/src/sna/sna_display.c
 b/src/sna/sna_display.c
+@@ -2291,6 +2291,35 @@
+   drmModeFreeConnector(koutput);
+ }
+ 
++/* The kernel reports possible encoder clones, whereas X uses a list of
++ * possible connector clones. This is works when we have a 1:1 mapping
++ * between encoders and connectors, but breaks for Haswell which has a pair
++ * of DP/HDMI connectors hanging off a single encoder.
++ */
++static void
++sna_mode_compute_possible_clones(ScrnInfoPtr scrn)
++{
++  xf86CrtcConfigPtr config = XF86_CRTC_CONFIG_PTR(scrn);
++  unsigned clones[32] = { 0 };
++  int i, j;
++
++  assert(config->num_output <= 32);
++
++  /* Convert from encoder numbering to output numbering */
++  for (i = 0; i < config->num_output; i++) {
++  unsigned mask = config->output[i]->possible_clones;
++  for (j = 0; mask != 0; j++, mask >>= 1) {
++  if ((mask & 1) == 0)
++  continue;
++
++  clones[j] |= 1 << i;
+

xserver-xorg-video-intel: Changes to 'ubuntu'

2013-10-03 Thread Timo Aaltonen
 debian/changelog |5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

New commits:
commit c6cd677fbc0624df060a7b904876b777aabafb2f
Author: Timo Aaltonen 
Date:   Fri Oct 4 07:45:15 2013 +0300

release to saucy, close FFE

diff --git a/debian/changelog b/debian/changelog
index 19ed0ef..0fdf14e 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,7 +1,7 @@
-xserver-xorg-video-intel (2:2.99.903-0ubuntu1) UNRELEASED; urgency=low
+xserver-xorg-video-intel (2:2.99.903-0ubuntu1) saucy; urgency=low
 
   * Merge from unreleased debian git (LP: #103, #1224106, #1228677,
-#1233990)
+#1233990, #1234027)
   * Drop patches that were from upstream.
   * source: Revert to source format 1.0.
   * xmir.patch: Refresh.

commit 5db0896b7a4694bf5450199f0dd5a60d9baa8fef
Author: Timo Aaltonen 
Date:   Fri Oct 4 07:45:00 2013 +0300

close another bug

diff --git a/debian/changelog b/debian/changelog
index 668541e..19ed0ef 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,7 @@
 xserver-xorg-video-intel (2:2.99.903-0ubuntu1) UNRELEASED; urgency=low
 
-  * Merge from unreleased debian git (LP: #103, #1224106, #1228677)
+  * Merge from unreleased debian git (LP: #103, #1224106, #1228677,
+#1233990)
   * Drop patches that were from upstream.
   * source: Revert to source format 1.0.
   * xmir.patch: Refresh.


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1vrxj1-0004ul...@vasks.debian.org



Re: bug triaging - please review bis

2013-10-03 Thread Solveig
Ping about my previous closing session, and here are this night's closed
bugs:

Wontfix closed:
---
* 476265, 368818, 383322, 321357, 457809, 619061, 342817, 370709,
  376132, 394687, 623441

Cheers,

 Solveig

Solveig:
> Hi!
> I did some bug triaging this night. I know nothing about X, so I just
> adressed the really simple ones, but I still would like some review from
> more informed people :)
> 
> Wontfix closed:
> ---
> 
> * 280118, 208493, 215647
> 
> Moreinfo closed:
> 
> 
> * 254563, 436536, 523460, 312718, 588018, 580307, 595173, 423090,
>   601201
> 
> Fixed closed:
> -
> 
> * 359687
> 
> I'll do another session in the next days, but now I go to sleep :)
> 
> Cheers!
> 
> PS: please CC me if you reply, since i'm not on the list.
> 


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/524e1f82.5080...@solveig.org



Bug#394687: marked as done (xserver-xorg-video-tseng: fails to detect Ramdac on ET4000/w32p card after upgrade)

2013-10-03 Thread Debian Bug Tracking System
Your message dated Fri, 04 Oct 2013 01:46:41 +
with message-id <524e1e01.9000...@solveig.org>
and subject line Re: xserver-xorg-video-tseng: fails to detect Ramdac on 
ET4000/w32p card after upgrade - closing
has caused the Debian Bug report #394687,
regarding xserver-xorg-video-tseng: fails to detect Ramdac on ET4000/w32p card 
after upgrade
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.)


-- 
394687: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=394687
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: xserver-xorg-video-tseng
Version: 1:1.1.0-3
Severity: important

Hi,

after upgrading to xorg 7.1.1, X fails to probe the RAMDAC on my card;
7.0.0 worked fine.  Using the option ramdac="ics5341" did not have any
effect.  Attached the xorg.logs from both working and failing version.

Best regards,
- Dietrich

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i586)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17-2-486
Locale: LANG=de_DE@euro, LC_CTYPE=de_DE@euro (charmap=ISO-8859-15)

Versions of packages xserver-xorg-video-tseng depends on:
ii  libc62.3.6.ds1-6 GNU C Library: Shared libraries
ii  xserver-xorg-core2:1.1.1-9   X.Org X server -- core server

xserver-xorg-video-tseng recommends no packages.

-- no debconf information

X Window System Version 7.1.1
Release Date: 12 May 2006
X Protocol Version 11, Revision 0, Release 7.1.1
Build Operating System: UNKNOWN 
Current Operating System: Linux unten 2.6.18-1-486 #1 Fri Sep 29 15:40:22 UTC 
2006 i586
Build Date: 07 July 2006
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, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.1.log", Time: Mon Oct 16 23:25:30 2006
(==) Using config file: "/etc/X11/xorg.conf"
(==) ServerLayout "Default Layout"
(**) |-->Screen "Default Screen" (0)
(**) |   |-->Monitor "Hyndai HCM-421E"
(**) |   |-->Device "Generic Video Card"
(**) |-->Input Device "Generic Keyboard"
(**) Option "XkbRules" "xorg"
(**) XKB: rules: "xorg"
(**) Option "XkbModel" "pc105"
(**) XKB: model: "pc105"
(**) Option "XkbLayout" "de"
(**) XKB: layout: "de"
(**) Option "XkbVariant" "basic"
(**) XKB: variant: "basic"
(==) Keyboard: CustomKeycode disabled
(**) |-->Input Device "Configured Mouse"
(WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
Entry deleted from font path.
(WW) The directory "/usr/lib/X11/fonts/cyrillic" does not exist.
Entry deleted from font path.
(WW) `fonts.dir' not found (or not valid) in "/usr/lib/X11/fonts/100dpi/".
Entry deleted from font path.
(Run 'mkfontdir' on "/usr/lib/X11/fonts/100dpi/").
(WW) `fonts.dir' not found (or not valid) in "/usr/lib/X11/fonts/75dpi/".
Entry deleted from font path.
(Run 'mkfontdir' on "/usr/lib/X11/fonts/75dpi/").
(WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/X11/Type1".
Entry deleted from font path.
(Run 'mkfontdir' on "/usr/share/fonts/X11/Type1").
(WW) The directory "/usr/share/fonts/X11/CID" does not exist.
Entry deleted from font path.
(WW) The directory "/usr/lib/X11/fonts/CID" does not exist.
Entry deleted from font path.
(WW) `fonts.dir' not found (or not valid) in "/usr/lib/X11/fonts/100dpi".
Entry deleted from font path.
(Run 'mkfontdir' on "/usr/lib/X11/fonts/100dpi").
(WW) `fonts.dir' not found (or not valid) in "/usr/lib/X11/fonts/75dpi".
Entry deleted from font path.
(Run 'mkfontdir' on "/usr/lib/X11/fonts/75dpi").
(**) FontPath set to:
unix/:7100,
/usr/share/fonts/X11/misc,
/usr/lib/X11/fonts/misc,
/usr/lib/X11/fonts/Type1,
/usr/share/fonts/X11/100dpi,
/usr/share/fonts/X11/75dpi
(==) RgbPath set to "/etc/X11/rgb"
(==) ModulePath set to "/usr/lib/xorg/modules"
(**) Ignoring ABI Version
(II) Open ACPI successful (/var/run/acpid.socket)
(II) Module ABI versions:
X.Org ANSI C Emulation: 0.3
X.Org Video Driver: 1.0
X.Org XInput driver : 0.6
X.Org Server Extension : 0.3
X.Org Font Renderer : 0.5
(II) Loader running on linux
(II) LoadModule: "bitmap"
(II) Loading /usr/lib/xorg/modules/fonts/libbitmap.so
(II) Module bitmap: vendor="X.Org Foundation"
  

Bug#623441: marked as done (xserver-xorg-video-nouveau: should (indirectly) depend on kernel 2.6.38)

2013-10-03 Thread Debian Bug Tracking System
Your message dated Fri, 04 Oct 2013 01:48:03 +
with message-id <524e1e53.9030...@solveig.org>
and subject line Re: xserver-xorg-video-nouveau: should (indirectly) depend on 
kernel 2.6.38 - closing
has caused the Debian Bug report #623441,
regarding xserver-xorg-video-nouveau: should (indirectly) depend on kernel 
2.6.38
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.)


-- 
623441: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=623441
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: xserver-xorg-video-nouveau
Version: 1:0.0.16+git20101210+8bb8231-2
Severity: important

This problem occurred today after upgrading to the most recent state of
Debian testing.

The package xserver-xorg-video-nouveau was upgraded, but as it does not
depend on a linux 2.6.38, the installed kernel was still version 2.6.32.
Subsequently, the xserver failed to start (logfile included below).

The machine which saw this problem has a nvidia ION chipset:
01:00.0 VGA compatible controller: nVidia Corporation ION VGA (rev b1)

I suggest to make xserver-xorg-video-nouveau depend (indirectly) on
kernel 2.6.38 to resolve this issue.

-- Package-specific info:
X server symlink status:

lrwxrwxrwx 1 root root 13 Feb 26  2010 /etc/X11/X -> /usr/bin/Xorg
-rwxr-xr-x 1 root root 1926464 Mar 26 04:49 /usr/bin/Xorg

VGA-compatible devices on PCI bus:
--
01:00.0 VGA compatible controller [0300]: nVidia Corporation ION VGA 
[10de:087d] (rev b1)

Xorg X server configuration file status:

-rw-r--r-- 1 root root 151 Feb 21 21:29 /etc/X11/xorg.conf

Contents of /etc/X11/xorg.conf:
---
# Minimal xorg.conf for the Nouveau driver

Section "Device"
Identifier  "Default screen"
#   Driver  "nvidia"
Driver  "nouveau"
EndSection

/etc/X11/xorg.conf.d does not exist.

KMS configuration files:

/etc/modprobe.d/i915-kms.conf:
  options i915 modeset=1
/etc/modprobe.d/radeon-kms.conf:
  options radeon modeset=1

Kernel version (/proc/version):
---
Linux version 2.6.38-2-amd64 (Debian 2.6.38-3) (b...@decadent.org.uk) (gcc 
version 4.4.5 (Debian 4.4.5-15) ) #1 SMP Thu Apr 7 04:28:07 UTC 2011

Xorg X server log files on system:
--
-rw-r--r-- 1 root root 15125 Mar 15  2010 /var/log/Xorg.2.log
-rw-r--r-- 1 root root 20685 May 29  2010 /var/log/Xorg.1.log
-rw-r--r-- 1 root root 14183 Sep  7  2010 /var/log/Xorg.22.log
-rw-r--r-- 1 root root 41278 Feb 28 19:57 /var/log/Xorg.21.log
-rw-r--r-- 1 root root 44149 Mar 30 22:39 /var/log/Xorg.20.log
-rw-r--r-- 1 root root 51398 Apr 20 09:58 /var/log/Xorg.0.log

Contents of Xorg X server log file which shows the problem 
(/var/log/Xorg.0.log.old):
-
[55.094] 
X.Org X Server 1.9.5
Release Date: 2011-03-17
[55.094] X Protocol Version 11, Revision 0
[55.094] Build Operating System: Linux 2.6.38-1-amd64 x86_64 Debian
[55.094] Current Operating System: Linux mim 2.6.32-5-amd64 #1 SMP Mon Mar 
7 21:35:22 UTC 2011 x86_64
[55.094] Kernel command line: BOOT_IMAGE=/vmlinuz-2.6.32-5-amd64 
root=/dev/mapper/mim-root ro quiet
[55.094] Build Date: 26 March 2011  03:32:34AM
[55.094] xorg-server 2:1.9.5-1 (Cyril Brulebois ) 
[55.094] Current version of pixman: 0.21.4
[55.094]Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
[55.094] Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[55.095] (==) Log file: "/var/log/Xorg.0.log", Time: Wed Apr 20 08:53:33 
2011
[55.095] (==) Using config file: "/etc/X11/xorg.conf"
[55.095] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[55.096] (==) No Layout section.  Using the first Screen section.
[55.096] (==) No screen section available. Using defaults.
[55.096] (**) |-->Screen "Default Screen Section" (0)
[55.096] (**) |   |-->Monitor ""
[55.097] (==) No device specified for screen "Default Screen Section".
Using the first device section listed.
[55.097] (**) |   |-->Device "Default screen"
[55.097] (==) No monitor specified for screen "Default Screen Section".
Using a default monitor configuration.
[55.097] (==) Automatically adding devices
[5

Bug#376132: marked as done (Very slow rendering of RGBA images)

2013-10-03 Thread Debian Bug Tracking System
Your message dated Fri, 04 Oct 2013 01:44:15 +
with message-id <524e1d6f.2010...@solveig.org>
and subject line Re: Very slow rendering of RGBA images - closing
has caused the Debian Bug report #376132,
regarding Very slow rendering of RGBA images
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.)


-- 
376132: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=376132
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: xserver-xorg-video-ati
Version: 1:6.5.8.0-1
Severity: normal


Rendering RGBA images is awfully slow with ATI cards. Several testing
and unstable users have been confirmed the issue, most of them mentioning
that for them it has been regression after upgrade from 6.8.

Good demonstration is http://kde-apps.org/content/show.php?content=10187
with Konqueror browser. First two screenshots are RGBA, third one is
RGB. Rendering of first two images is really slow, scrolling is sluggish
etc, third one appears instantly and no any problem with scrolling.

01:00.0 VGA compatible controller: ATI Technologies Inc RV350 [Mobility
Radeon 9600 M10] (prog-if 00 [VGA])

# cat /etc/X11/xorg.conf
Section "Files"
FontPath"unix/:7100"# local font server
# if the local font server has problems, we can fall back on these
FontPath"/usr/share/fonts/X11/misc"
FontPath"/usr/lib/X11/fonts/misc"
FontPath"/usr/share/fonts/X11/cyrillic"
FontPath"/usr/lib/X11/fonts/cyrillic"
FontPath"/usr/lib/X11/fonts/100dpi/:unscaled"
FontPath"/usr/lib/X11/fonts/75dpi/:unscaled"
FontPath"/usr/share/fonts/X11/Type1"
FontPath"/usr/lib/X11/fonts/Type1"
FontPath"/usr/share/fonts/X11/CID"
FontPath"/usr/lib/X11/fonts/CID"
FontPath"/usr/lib/X11/fonts/Speedo"
FontPath"/usr/share/fonts/X11/100dpi"
FontPath"/usr/lib/X11/fonts/100dpi"
FontPath"/usr/share/fonts/X11/75dpi"
FontPath"/usr/lib/X11/fonts/75dpi"
EndSection

Section "Module"
Load"bitmap"
Load"dbe"
Load"ddc"
Load"dri"
Load"extmod"
Load"freetype"
Load"glx"
Load"int10"
Load"record"
Load"type1"
Load"vbe"
EndSection

Section "InputDevice"
Identifier  "Generic Keyboard"
Driver  "keyboard"
Option  "CoreKeyboard"
Option  "XkbRules"  "xfree86"
Option  "XkbModel"  "pc105"
Option  "XkbLayout" "ee"
EndSection

Section "InputDevice"
Identifier  "Configured Mouse"
Driver  "mouse"
Option  "CorePointer"
Option  "Device""/dev/psaux"
Option  "Protocol"  "PS/2"
Option  "Emulate3Buttons"   "true"
Option  "ZAxisMapping"  "4 5"
EndSection

Section "Device"
Identifier  "ATI Technologies, Inc. RV350 [Mobility Radeon 9600 
M10]"
Driver  "radeon"
Option  "DMAForXv"  "true"
Option  "BackingStore"  "true"
EndSection

Section "Monitor"
Identifier  "Generic Monitor"
HorizSync   30-60
VertRefresh 50-75
Option  "DPMS"
EndSection

Section "Screen"
Identifier  "Default Screen"
Device  "ATI Technologies, Inc. RV350 [Mobility Radeon 9600 
M10]"
Monitor "Generic Monitor"
DefaultDepth24
SubSection "Display"
Depth   24
Modes   "1400x1050" "1280x960" "1152x864" "1024x768" "800x600" 
"640x480"
EndSubSection
EndSection

Section "Extensions"
Option  "RENDER""Enable"
EndSection

Section "ServerLayout"
Identifier  "Default Layout"
Screen  "Default Screen"
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"
EndSection

Section "DRI"
Mode0666
EndSection


-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17-ck1
Locale: LANG=et_EE.iso8859-15, LC_CTYPE=et_EE.iso8859-15 (charmap=ISO-8859-15)

Versions of packages xserver-xorg-video-ati depends on:
ii  libc6 2.3.6-15   

Bug#619061: marked as done (xserver-xorg-core: introduce /etc/default/ configfile replacing xorg.conf)

2013-10-03 Thread Debian Bug Tracking System
Your message dated Fri, 04 Oct 2013 01:28:13 +
with message-id <524e19ad.3080...@solveig.org>
and subject line Re: xserver-xorg-core: introduce /etc/default/ configfile 
replacing xorg.conf - closing
has caused the Debian Bug report #619061,
regarding xserver-xorg-core: introduce /etc/default/ configfile replacing 
xorg.conf
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.)


-- 
619061: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=619061
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: xserver-xorg-core
Version: 2:1.9.4.901-1
Severity: wishlist

on all computers i own (notably netbooks), one of the first things i do,
is disabling AIGLX (i never understood, what importance it has to get
fance desktop effects, justifying setting that as a default).

just to disable, i need to create a basic, working xorg.conf for only
the line "AIGLX" "off". it's rather a waste.

so, i'd prefer to have a file in /etc/default/ where i could define
AIGLX to be disabled and Xorg, when starting takes that into account
when creating its configuration.

i cvould still profit from Xorg's dynamic autoconfiguration and, yet,
would not have to sacrify resources to fancy effects i have no use for.

-- Package-specific info:
X server symlink status:

lrwxrwxrwx 1 root root 13 Jul 28  2008 /etc/X11/X -> /usr/bin/Xorg
-rwxr-xr-x 1 root root 1926304 Mar  7 16:48 /usr/bin/Xorg

Diversions concerning libGL are in place

diversion of /usr/lib/libGL.so to /usr/lib/nvidia/diversions/libGL.so by 
libgl1-nvidia-alternatives
diversion of /usr/lib/libGL.so.1 to /usr/lib/nvidia/diversions/libGL.so.1 by 
libgl1-nvidia-alternatives
diversion of /usr/lib32/libGL.so to /usr/lib32/nvidia/diversions/libGL.so by 
libgl1-nvidia-alternatives-ia32
diversion of /usr/lib32/libGL.so.1 to /usr/lib32/nvidia/diversions/libGL.so.1 
by libgl1-nvidia-alternatives-ia32
diversion of /usr/lib/xorg/modules/extensions/libglx.so to 
/usr/lib/nvidia/diversions/libglx.so by libglx-nvidia-alternatives
diversion of /usr/lib/libGL.so.1.2 to /usr/lib/nvidia/diversions/libGL.so.1.2 
by libgl1-nvidia-alternatives
diversion of /usr/lib/debug/usr/lib/xorg/modules/extensions/libglx.so to 
/usr/lib/nvidia/diversions/libglx.so.dbg by libglx-nvidia-alternatives
diversion of /usr/lib32/libGL.so.1.2 to 
/usr/lib32/nvidia/diversions/libGL.so.1.2 by libgl1-nvidia-alternatives-ia32

VGA-compatible devices on PCI bus:
--
01:00.0 VGA compatible controller [0300]: nVidia Corporation G84M [Quadro NVS 
140M] [10de:0429] (rev a1)

Xorg X server configuration file status:

-rw-r--r-- 1 root root 1636 Jan 29  2010 /etc/X11/xorg.conf

Contents of /etc/X11/xorg.conf:
---
# nvidia-settings: X configuration file generated by nvidia-settings
# nvidia-settings:  version 1.0  (pbuilder@pc1605)  Wed Jan  6 11:42:23 UTC 2010


Section "ServerLayout"
Identifier "Layout0"
Screen  0  "Screen0" 0 0
InputDevice"Keyboard0" "CoreKeyboard"
InputDevice"Mouse0" "CorePointer"
Option "Xinerama" "0"
EndSection

Section "Files"
EndSection

Section "InputDevice"

# generated from default
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "auto"
Option "Device" "/dev/psaux"
Option "Emulate3Buttons" "no"
Option "ZAxisMapping" "4 5"
EndSection

Section "InputDevice"

# generated from default
Identifier "Keyboard0"
Driver "kbd"
EndSection

Section "Monitor"

# HorizSync source: edid, VertRefresh source: edid
Identifier "Monitor0"
VendorName "Unknown"
ModelName  "ViewSonic VA1916wSERIES"
HorizSync   24.0 - 82.0
VertRefresh 50.0 - 75.0
Option "DPMS"
EndSection

Section "Device"
Identifier "Device0"
Driver "nvidia"
VendorName "NVIDIA Corporation"
BoardName  "Quadro NVS 140M"
EndSection

Section "Screen"
Identifier "Screen0"
Device "Device0"
Monitor"Monitor0"
DefaultDepth24
Option "TwinView" "1"
Option "TwinViewXineramaInfoOrder" "DFP-0"
Option "metamodes" "CRT: 1440x900 +0+0, DFP: 1680x1050 +1440+0; 
CRT: 1440x900 +0+0"
SubSection "Display"
Depth   24
EndSubSection
EndSection


/etc/X11/xorg.conf.d does not exist.

/etc/modprobe.d contains no KMS configuration files.

Kernel version (/proc/version):
-

Bug#321357: marked as done (xbase-clients: [xset] allowing autorepeat for a single key does not work)

2013-10-03 Thread Debian Bug Tracking System
Your message dated Fri, 04 Oct 2013 01:19:47 +
with message-id <524e17b3.6040...@solveig.org>
and subject line Re: xbase-clients: [xset] allowing autorepeat for a single key 
does not work - closing
has caused the Debian Bug report #321357,
regarding xbase-clients: [xset] allowing autorepeat for a single key does not 
work
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.)


-- 
321357: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=321357
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: xbase-clients
Version: 4.3.0.dfsg.1-14
Severity: normal

Switching autorepeat off for all keys and allowing it for a single key
does not work.

Switching autorepeat on for all keys but space does work as expected:

$ xset r
$ xset -r 65

But:

$ xset -r
$ xset r 65

does not work. I get no autorepeat for the space key.
I also have tried it with some letter keys, same effect.


-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (750, 'testing'), (650, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Kernel: Linux 2.6.12.3
Locale: LANG=C, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages xbase-clients depends on:
ii  cpp4:3.3.5-3 The GNU C preprocessor (cpp)
ii  libc6  2.3.2.ds1-22  GNU C Library: Shared libraries an
ii  libdps14.3.0.dfsg.1-14   Display PostScript (DPS) client li
ii  libexpat1  1.95.8-3  XML parsing C library - runtime li
ii  libfontconfig1 2.3.1-2   generic font configuration library
ii  libfreetype6   2.1.7-2.4 FreeType 2 font engine, shared lib
ii  libgcc11:3.4.3-13GCC support library
ii  libice64.3.0.dfsg.1-14   Inter-Client Exchange library
ii  libncurses55.4-4 Shared libraries for terminal hand
ii  libpng12-0 1.2.8rel-1PNG library - runtime
ii  libsm6 4.3.0.dfsg.1-14   X Window System Session Management
ii  libstdc++5 1:3.3.5-13The GNU Standard C++ Library v3
ii  libxaw74.3.0.dfsg.1-14   X Athena widget set library
ii  libxcursor11.1.3-1   X cursor management library
ii  libxext6   4.3.0.dfsg.1-14   X Window System miscellaneous exte
ii  libxft22.1.7-1   FreeType-based font drawing librar
ii  libxi6 4.3.0.dfsg.1-14   X Window System Input extension li
ii  libxmu64.3.0.dfsg.1-14   X Window System miscellaneous util
ii  libxmuu1   4.3.0.dfsg.1-14   lightweight X Window System miscel
ii  libxpm44.3.0.dfsg.1-14   X pixmap library
ii  libxrandr2 4.3.0.dfsg.1-14   X Window System Resize, Rotate and
ii  libxrender10.8.3-7   X Rendering Extension client libra
ii  libxt6 4.3.0.dfsg.1-14   X Toolkit Intrinsics
ii  libxtrap6  4.3.0.dfsg.1-14   X Window System protocol-trapping 
ii  libxtst6   4.3.0.dfsg.1-14   X Window System event recording an
ii  libxv1 4.3.0.dfsg.1-14   X Window System video extension li
ii  xfree86-common 4.3.0.dfsg.1-14   X Window System (XFree86) infrastr
ii  xlibmesa-gl [libgl1]   4.3.0.dfsg.1-14   Mesa 3D graphics library [XFree86]
ii  xlibmesa-glu [libglu1] 4.3.0.dfsg.1-14   Mesa OpenGL utility library [XFree
ii  xlibs  4.3.0.dfsg.1-14   X Keyboard Extension (XKB) configu
ii  xlibs-data 4.3.0.dfsg.1-14   X Window System client data
ii  zlib1g 1:1.2.2-4.sarge.2 compression library - runtime

-- debconf information:
* xbase-clients/default_100dpi:
* xbase-clients/default_nolisten_tcp:

--- End Message ---
--- Begin Message ---
Hi! I'm closing this bug, since it was tagged "wontfix" for some
years, without answer. If you have new reasons to point out this
problem, please feel free to re-open it.--- End Message ---


Bug#383322: marked as done (Missing manpage "man.conf")

2013-10-03 Thread Debian Bug Tracking System
Your message dated Fri, 04 Oct 2013 01:05:09 +
with message-id <524e1445.2020...@solveig.org>
and subject line Re: Missing manpage "man.conf" - closing
has caused the Debian Bug report #383322,
regarding Missing manpage "man.conf"
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.)


-- 
383322: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=383322
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: xbase-clients
Version: 4.3.0.dfsg.1-14sarge1
Severity: normal

Hello Maintainer,

in "man 1 xman" in Section "BSD and Linux Systems" they are talking
about the file "/etc/man.conf" and the "man 5 man.conf".

If I create the file /etc/man.conf it works like described but it
is difficult to find out, HOW it works without the manpage.

I have checkd the Internet and the manpage exist but was not able
to download it anywhere...  :-/

Since X.org is based in XFree86, please can you check it ot?

(Since I have not more an internet connection at Home, I can not
more install TESTING and UNSTABLE to check the upcoming Release
before releasing.  Sorry, but Intenet is to expensive currently
because I have problems with my Job and Health)

Thanks and Greetings
Michelle Konzack
Systemadministrator
Tamay Dogan Network
Debian GNU/Linux Consultant


-- System Information
Debian Release: 3.1
Kernel Version: Linux michelle1.private 2.4.27-2-386 #1 Wed Aug 17 09:33:35 UTC 
2005 i686 GNU/Linux


Versions of the packages xbase-clients depends on:
ii  cpp3.3.5-3The GNU C preprocessor (cpp)
ii  libc6  2.3.2.ds1-22   GNU C Library: Shared libraries and Timezone
ii  libdps14.3.0.dfsg.1-1 Display PostScript (DPS) client library
ii  libexpat1  1.95.8-3   XML parsing C library - runtime library
ii  libfontconfig1 2.3.1-2generic font configuration library (shared l
ii  libfreetype6   2.1.7-2.4  FreeType 2 font engine, shared library files
ii  libgcc13.4.3-13   GCC support library
ii  libice64.3.0.dfsg.1-1 Inter-Client Exchange library
ii  libncurses55.4-4  Shared libraries for terminal handling
ii  libpng12-0 1.2.8rel-1 PNG library - runtime
ii  libsm6 4.3.0.dfsg.1-1 X Window System Session Management library
ii  libstdc++5 3.3.5-13   The GNU Standard C++ Library v3
ii  libxaw74.3.0.dfsg.1-1 X Athena widget set library
ii  libxcursor11.1.3-1X cursor management library
ii  libxext6   4.3.0.dfsg.1-1 X Window System miscellaneous extension libr
ii  libxft22.1.7-1FreeType-based font drawing library for X
ii  libxi6 4.3.0.dfsg.1-1 X Window System Input extension library
ii  libxmu64.3.0.dfsg.1-1 X Window System miscellaneous utility librar
ii  libxmuu1   4.3.0.dfsg.1-1 lightweight X Window System miscellaneous ut
ii  libxpm44.3.0.dfsg.1-1 X pixmap library
ii  libxrandr2 4.3.0.dfsg.1-1 X Window System Resize, Rotate and Reflectio
ii  libxrender10.8.3-7X Rendering Extension client library
ii  libxt6 4.3.0.dfsg.1-1 X Toolkit Intrinsics
ii  libxtrap6  4.3.0.dfsg.1-1 X Window System protocol-trapping extension 
ii  libxtst6   4.3.0.dfsg.1-1 X Window System event recording and testing 
ii  libxv1 4.3.0.dfsg.1-1 X Window System video extension library
ii  xfree86-common 4.3.0.dfsg.1-1 X Window System (XFree86) infrastructure
ii  xlibmesa-gl4.3.0.dfsg.1-1 Mesa 3D graphics library [XFree86]
ii  xlibmesa-glu   4.3.0.dfsg.1-1 Mesa OpenGL utility library [XFree86]
ii  xlibs  4.3.0.dfsg.1-1 X Keyboard Extension (XKB) configuration dat
ii  xlibs-data 4.3.0.dfsg.1-1 X Window System client data
ii  zlib1g 1.2.2-4.sarge. compression library - runtime
xlibmesa-gl Version: 4.3.0.dfsg.1-14sarge1 (Provides virtual package libgl1)
ii  xlibmesa-gl4.3.0.dfsg.1-1 Mesa 3D graphics library [XFree86]
^^^ (Provides virtual package libgl1)
xlibmesa-gluVersion: 4.3.0.dfsg.1-14sarge1 (Provides virtual package 
libglu1)
ii  xlibmesa-glu   4.3.0.dfsg.1-1 Mesa OpenGL utility library [XFree86]
^^^ (Provides virtual package libglu1)


-- 
Linux-User #280138 with the Linux Counter, http://counter.li.org/
# Debian GNU/Linux Consultant #
Michelle Konzack   Apt. 917  ICQ #328449886
   50, rue de Soultz MSM LinuxMichi
0033/6/6192519367100 Strasbourg/France   IRC #Debian (irc.icq.com)


--- End Message ---
--- Begin Message ---
Hi! I'm closing this bug, since it was tagged "wontfix" for some
years, w

Bug#368818: marked as done (x11-common: insufficient error checking in Xsession can prevent users from logging in)

2013-10-03 Thread Debian Bug Tracking System
Your message dated Fri, 04 Oct 2013 00:56:04 +
with message-id <524e1224.6040...@solveig.org>
and subject line Re: x11-common: insufficient error checking in Xsession can 
prevent users from logging in - closing
has caused the Debian Bug report #368818,
regarding x11-common: insufficient error checking in Xsession can prevent users 
from logging in
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.)


-- 
368818: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=368818
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: x11-common
Version: 6.9.0.dfsg.1-6
Severity: normal

If fold is given zero columns as an argument, it dies with the error
message below. If the $COLUMNS enivornment variable is for some reason
set to zero, then the command "fold -s -w ${COLUMNS:-80}" in
Xsessions's message functions will cause xinit to die with only the
following output in .xsession-errors:

Xsession: X session started for iseggev at Wed May 24 23:51:20 CDT 2006
fold: invalid number of columns: `0'

The result is that the user cannot log in. This can be fixed by
setting COLUMNS=80 by hand in Xsession.

Clearly the ultimate cause is some underlying bug which I have yet to
identify. I would appreciate help in tracking down that bug as well,
but given the ugly results for X and simple work around, (test
COLUMNS and set it to 80 if it equals zero), I'm filing this bug. 

This never happened to me in the past; it started happening today
after an upgrade. Kdm and curses seem like the most likely culprits of
the packages upgraded today. The really wierd thing is that it only
happens for some accounts and not others. I don't entirely understand
the X login process, which makes it difficult for me to figure out
exactly why this is happening. Any help would be appreciated.

Thanks,

Itai 



-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (990, 'testing'), (110, 'unstable'), (10, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.16cavy1
Locale: LANG=he_IL.UTF-8, LC_CTYPE=he_IL.UTF-8 (charmap=UTF-8)

Versions of packages x11-common depends on:
ii  debconf [debconf-2.0] 1.5.1  Debian configuration management sy
ii  debianutils   2.16   Miscellaneous utilities specific t
ii  lsb-base  3.1-5  Linux Standard Base 3.1 init scrip

x11-common recommends no packages.

-- debconf information:
  x11-common/experimental_packages:

--- End Message ---
--- Begin Message ---
Hi! I'm closing this bug, since it was tagged "wontfix" for some
years, without answer. If you have new reasons to point out this
problem, please feel free to re-open it.--- End Message ---


Bug#476265: marked as done (xinit: use /etc/default for -nolisten tcp in /etc/X11/xinit/xserverrc)

2013-10-03 Thread Debian Bug Tracking System
Your message dated Fri, 04 Oct 2013 00:54:29 +
with message-id <524e11c5.3040...@solveig.org>
and subject line Re: xinit: use /etc/default for -nolisten tcp in 
/etc/X11/xinit/xserverrc - closing
has caused the Debian Bug report #476265,
regarding xinit: use /etc/default for -nolisten tcp in /etc/X11/xinit/xserverrc
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.)


-- 
476265: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=476265
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: xinit
Version: 1.0.8-1
Severity: normal


DSCRIPTION

The default installation of /etc/X11/xinit/xserverrc reads:

exec /usr/bin/X11/X -nolisten tcp

 The default settings understandably block the TCP
 connections, but offer no easy way to have local settings --
 other than modifying the file directly; which unfortunately
 would cause conflicts during upgrade.

SUGGESTION

The options passed to X could be made configurable with following
change:

1. introduce /etc/default/xserverrc

   # Comment this out to enable TCP connections
   X_OPT="-nolisten tcp"

2. Have /etc/X11/xinit/xserverrc read:

   [ -f /etc/default/xserverrc ] && . /etc/default/xserverrc
   exec /usr/bin/X11/X $X_OPT

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

Kernel: Linux 2.6.22-2-686 (SMP w/1 CPU core)
Locale: LANG=en_DK.UTF-8, LC_CTYPE=en_DK.UTF-8 (charmap=ANSI_X3.4-1968) 
(ignored: LC_ALL set to C)
Shell: /bin/sh linked to /bin/dash

Versions of packages xinit depends on:
ii  cpp   4:4.2.3-7  The GNU C preprocessor (cpp)
ii  libc6 2.7-10 GNU C Library: Shared libraries
ii  libx11-6  2:1.0.3-7  X11 client-side library

xinit recommends no packages.

-- no debconf information


--- End Message ---
--- Begin Message ---
Hi! I'm closing this bug, since it was tagged "wontfix" for some
years, without answer. If you have new reasons to point out this
problem, please feel free to re-open it.--- End Message ---


Bug#197154: marked as done (xutils: want postinst script to walk all font directories)

2013-10-03 Thread Debian Bug Tracking System
Your message dated Fri, 04 Oct 2013 00:47:49 +
with message-id <524e1035.5060...@solveig.org>
and subject line Re: xutils: want postinst script to walk all font directories 
- closing
has caused the Debian Bug report #197154,
regarding xutils: want postinst script to walk all font directories
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.)


-- 
197154: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=197154
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: xutils
Severity: wishlist

Now all font packages depend on xutils and invoke
update-fonts-{dirs,alias,scale} by themselves.  Thats why packages
providing Type1 fonts (as gsfonts and scalable-cyrfonts) have to be
doubled -- one version for defoma and another for X.  If xutils cares
to setup the font directories properly there will be no need to double
these font packages.  There can be only one version which depends on
defoma and invokes update-fonts-* _only if_ these commands are
installed.  In that case if xutils gets installed latter it cares to
setup the font directories.

I decided to split scalable-cyrfonts as type1-cyrillic, type1-teams
and type1-oldslavic.  For now these packages depend on xutils but it
would be nice if I could remove this dependency.

Anton Zinoviev

--- End Message ---
--- Begin Message ---
Hi! I'm closing this bug, since it was tagged "moreinfo" and "wontfix"
for over 10 years
without answer. If you still encounter this problem, please feel free
to re-open it.--- End Message ---


xorg-server: Changes to 'ubuntu'

2013-10-03 Thread Timo Aaltonen
 debian/changelog |   10 +++---
 debian/patches/include-selection-h.patch |   12 
 debian/patches/series|1 -
 3 files changed, 3 insertions(+), 20 deletions(-)

New commits:
commit 1073da625435541993aa28049a4cabbcbe925c0b
Author: Timo Aaltonen 
Date:   Thu Oct 3 17:07:43 2013 +0300

merge changes with the rejected upload and release a real -3ubuntu1

diff --git a/debian/changelog b/debian/changelog
index 4064d43..d14bd68 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,5 +1,6 @@
-xorg-server (2:1.14.3-3ubuntu2) UNRELEASED; urgency=low
+xorg-server (2:1.14.3-3ubuntu1) saucy; urgency=low
 
+  * Merge from unreleased debian git.
   * rrcrtc-brackets-are-hard.patch: Replace xf86-detach-scanout.patch
 with this patch from Fedora. Should fix crashers on hybrid systems
 (LP: #1210025)
@@ -7,12 +8,6 @@ xorg-server (2:1.14.3-3ubuntu2) UNRELEASED; urgency=low
 
  -- Timo Aaltonen   Thu, 03 Oct 2013 15:30:22 +0300
 
-xorg-server (2:1.14.3-3ubuntu1) saucy; urgency=low
-
-  * Merge from unreleased debian git.
-
- -- Timo Aaltonen   Thu, 03 Oct 2013 12:54:24 +0300
-
 xorg-server (2:1.14.3-4) UNRELEASED; urgency=low
 
   * rules: Drop defoma support from the font path. (Closes: #689233,

commit 164027e386b0cb7b6482b7b038f0f16fe2d38b90
Author: Timo Aaltonen 
Date:   Thu Oct 3 17:01:52 2013 +0300

Drop include-selection-h.patch, not needed anymore.

diff --git a/debian/changelog b/debian/changelog
index 7e71f33..4064d43 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -3,6 +3,7 @@ xorg-server (2:1.14.3-3ubuntu2) UNRELEASED; urgency=low
   * rrcrtc-brackets-are-hard.patch: Replace xf86-detach-scanout.patch
 with this patch from Fedora. Should fix crashers on hybrid systems
 (LP: #1210025)
+  * Drop include-selection-h.patch, not needed anymore.
 
  -- Timo Aaltonen   Thu, 03 Oct 2013 15:30:22 +0300
 
diff --git a/debian/patches/include-selection-h.patch 
b/debian/patches/include-selection-h.patch
deleted file mode 100644
index e145c36..000
--- a/debian/patches/include-selection-h.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff --git a/dix/window.c b/dix/window.c
-index 49ef4a0..5b87238 100644
 a/dix/window.c
-+++ b/dix/window.c
-@@ -110,6 +110,7 @@ Equipment Corporation.
- #include "input.h"
- #include "inputstr.h"
- #include "resource.h"
-+#include "selection.h"
- #include "colormapst.h"
- #include "cursorstr.h"
- #include "dixstruct.h"
diff --git a/debian/patches/series b/debian/patches/series
index 6e482a1..69b99c3 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -54,7 +54,6 @@ autoconfig-fixup-tell-changed-so-randr-clients-can-t.patch
 rrcrtc-brackets-are-hard.patch
 
 config-add-no-removal.patch
-include-selection-h.patch
 
 glx-remove-current-context-cache.patch
 glx-fix-memory-leak.patch


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1vrq7s-00060y...@vasks.debian.org



xserver-xorg-video-r128: Changes to 'upstream-unstable'

2013-10-03 Thread Tormod Volden
 configure.ac  |2 +-
 src/r128_driver.c |2 +-
 src/r128_exa_render.c |2 +-
 src/r128_probe.c  |5 -
 src/r128_video.c  |4 ++--
 5 files changed, 9 insertions(+), 6 deletions(-)

New commits:
commit ccdfcf5c05ccade823c9734212dcb865d8958cbb
Author: Tormod Volden 
Date:   Wed Oct 2 20:36:38 2013 +0200

r128: bump to version 6.9.2

Signed-off-by: Tormod Volden 

diff --git a/configure.ac b/configure.ac
index 38dc9bd..56554ec 100644
--- a/configure.ac
+++ b/configure.ac
@@ -23,7 +23,7 @@
 # Initialize Autoconf
 AC_PREREQ([2.60])
 AC_INIT([xf86-video-r128],
-[6.9.1],
+[6.9.2],
 [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],
 [xf86-video-r128])
 AC_CONFIG_SRCDIR([Makefile.am])

commit 255cf857af35e4024486cbc2693872d020f09a29
Author: Connor Behan 
Date:   Mon Sep 30 23:24:54 2013 -0700

Specify NULL for the platform probe function

Apparently this has been required by the ABI since server 1.13.

Signed-off-by: Connor Behan 

diff --git a/src/r128_probe.c b/src/r128_probe.c
index 15e4a77..7f1fbda 100644
--- a/src/r128_probe.c
+++ b/src/r128_probe.c
@@ -379,6 +379,9 @@ _X_EXPORT DriverRec R128 =
 NULL,
 #ifdef XSERVER_LIBPCIACCESS
 r128_device_match,
-r128_pci_probe
+r128_pci_probe,
+#endif
+#ifdef XSERVER_PLATFORM_BUS
+NULL
 #endif
 };

commit a98077959a65dfda1db900373969bd08479d3e43
Author: Connor Behan 
Date:   Mon Sep 30 21:12:20 2013 -0700

Minor spacing changes

A log message needed a space added, two source files needed whitespace
removed.

Signed-off-by: Connor Behan 

diff --git a/src/r128_driver.c b/src/r128_driver.c
index f47c7e3..72d9e3c 100644
--- a/src/r128_driver.c
+++ b/src/r128_driver.c
@@ -2269,7 +2269,7 @@ Bool R128ScreenInit(SCREEN_INIT_ARGS_DECL)
 #ifdef RENDER
 info->RenderAccel = xf86ReturnOptValBool(info->Options, 
OPTION_RENDERACCEL, TRUE);
 if (info->RenderAccel)
-xf86DrvMsg(pScrn->scrnIndex, X_INFO, "Acceleration of RENDER 
operations will be enabled"
+xf86DrvMsg(pScrn->scrnIndex, X_INFO, "Acceleration of RENDER 
operations will be enabled "
 "upon successful loading of DRI 
and EXA\n");
 #endif
 #endif
diff --git a/src/r128_exa_render.c b/src/r128_exa_render.c
index f31bdf3..f00536e 100644
--- a/src/r128_exa_render.c
+++ b/src/r128_exa_render.c
@@ -102,7 +102,7 @@ R128SolidPixmap(ScreenPtr pScreen, uint32_t solid)
return NULL;
 }
 info->ExaDriver->WaitMarker(pScreen, 0);
-
+
 #if X_BYTE_ORDER == X_BIG_ENDIAN
 if (pScrn->bitsPerPixel == 32)
R128CopySwap(info->ExaDriver->memoryBase + exaGetPixmapOffset(pPix), 
(uint8_t*)&solid, 4,
diff --git a/src/r128_video.c b/src/r128_video.c
index bb5a655..dccaa42 100644
--- a/src/r128_video.c
+++ b/src/r128_video.c
@@ -673,7 +673,7 @@ R128DisplayVideo422(
 v_inc_shift++;
 if (pScrn->currentMode->Flags & V_DBLSCAN)
 v_inc_shift--;
-
+
 rmx_active = INREG(R128_FP_VERT_STRETCH) & R128_VERT_STRETCH_ENABLE;
 if (rmx_active) {
 v_inc = ((src_h * pScrn->currentMode->CrtcVDisplay / info->PanelYRes) 
<< v_inc_shift) / drw_h;
@@ -757,7 +757,7 @@ R128DisplayVideo420(
 v_inc_shift++;
 if (pScrn->currentMode->Flags & V_DBLSCAN)
 v_inc_shift--;
-
+
 rmx_active = INREG(R128_FP_VERT_STRETCH) & R128_VERT_STRETCH_ENABLE;
 if (rmx_active) {
 v_inc = ((src_h * pScrn->currentMode->CrtcVDisplay / info->PanelYRes) 
<< v_inc_shift) / drw_h;


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1vrpmr-0003f6...@vasks.debian.org



xserver-xorg-video-r128: Changes to 'debian-unstable'

2013-10-03 Thread Tormod Volden
 ChangeLog |   29 +
 configure.ac  |2 +-
 debian/changelog  |6 ++
 src/r128_driver.c |2 +-
 src/r128_exa_render.c |2 +-
 src/r128_probe.c  |5 -
 src/r128_video.c  |4 ++--
 7 files changed, 44 insertions(+), 6 deletions(-)

New commits:
commit 0abe69fa44a3ce74f9b0556d67c44f2780f60993
Author: Tormod Volden 
Date:   Thu Oct 3 22:37:20 2013 +0200

Update changelogs for new upstream release

diff --git a/ChangeLog b/ChangeLog
index fd4d598..59225ae 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,32 @@
+commit ccdfcf5c05ccade823c9734212dcb865d8958cbb
+Author: Tormod Volden 
+Date:   Wed Oct 2 20:36:38 2013 +0200
+
+r128: bump to version 6.9.2
+
+Signed-off-by: Tormod Volden 
+
+commit 255cf857af35e4024486cbc2693872d020f09a29
+Author: Connor Behan 
+Date:   Mon Sep 30 23:24:54 2013 -0700
+
+Specify NULL for the platform probe function
+
+Apparently this has been required by the ABI since server 1.13.
+
+Signed-off-by: Connor Behan 
+
+commit a98077959a65dfda1db900373969bd08479d3e43
+Author: Connor Behan 
+Date:   Mon Sep 30 21:12:20 2013 -0700
+
+Minor spacing changes
+
+A log message needed a space added, two source files needed whitespace
+removed.
+
+Signed-off-by: Connor Behan 
+
 commit aca6aa127f43deeed42c4d3bef8d1e6a735b4c50
 Author: Connor Behan 
 Date:   Fri Mar 8 01:02:22 2013 -0800
diff --git a/debian/changelog b/debian/changelog
index 1115e42..624dc0e 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+xserver-xorg-video-r128 (6.9.2-1) UNRELEASED; urgency=low
+
+  * New upstream release
+
+ -- Tormod Volden   Thu, 03 Oct 2013 22:32:00 +0200
+
 xserver-xorg-video-r128 (6.9.1-1) unstable; urgency=low
 
   [ Maarten Lankhorst ]

commit ccdfcf5c05ccade823c9734212dcb865d8958cbb
Author: Tormod Volden 
Date:   Wed Oct 2 20:36:38 2013 +0200

r128: bump to version 6.9.2

Signed-off-by: Tormod Volden 

diff --git a/configure.ac b/configure.ac
index 38dc9bd..56554ec 100644
--- a/configure.ac
+++ b/configure.ac
@@ -23,7 +23,7 @@
 # Initialize Autoconf
 AC_PREREQ([2.60])
 AC_INIT([xf86-video-r128],
-[6.9.1],
+[6.9.2],
 [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg],
 [xf86-video-r128])
 AC_CONFIG_SRCDIR([Makefile.am])

commit 255cf857af35e4024486cbc2693872d020f09a29
Author: Connor Behan 
Date:   Mon Sep 30 23:24:54 2013 -0700

Specify NULL for the platform probe function

Apparently this has been required by the ABI since server 1.13.

Signed-off-by: Connor Behan 

diff --git a/src/r128_probe.c b/src/r128_probe.c
index 15e4a77..7f1fbda 100644
--- a/src/r128_probe.c
+++ b/src/r128_probe.c
@@ -379,6 +379,9 @@ _X_EXPORT DriverRec R128 =
 NULL,
 #ifdef XSERVER_LIBPCIACCESS
 r128_device_match,
-r128_pci_probe
+r128_pci_probe,
+#endif
+#ifdef XSERVER_PLATFORM_BUS
+NULL
 #endif
 };

commit a98077959a65dfda1db900373969bd08479d3e43
Author: Connor Behan 
Date:   Mon Sep 30 21:12:20 2013 -0700

Minor spacing changes

A log message needed a space added, two source files needed whitespace
removed.

Signed-off-by: Connor Behan 

diff --git a/src/r128_driver.c b/src/r128_driver.c
index f47c7e3..72d9e3c 100644
--- a/src/r128_driver.c
+++ b/src/r128_driver.c
@@ -2269,7 +2269,7 @@ Bool R128ScreenInit(SCREEN_INIT_ARGS_DECL)
 #ifdef RENDER
 info->RenderAccel = xf86ReturnOptValBool(info->Options, 
OPTION_RENDERACCEL, TRUE);
 if (info->RenderAccel)
-xf86DrvMsg(pScrn->scrnIndex, X_INFO, "Acceleration of RENDER 
operations will be enabled"
+xf86DrvMsg(pScrn->scrnIndex, X_INFO, "Acceleration of RENDER 
operations will be enabled "
 "upon successful loading of DRI 
and EXA\n");
 #endif
 #endif
diff --git a/src/r128_exa_render.c b/src/r128_exa_render.c
index f31bdf3..f00536e 100644
--- a/src/r128_exa_render.c
+++ b/src/r128_exa_render.c
@@ -102,7 +102,7 @@ R128SolidPixmap(ScreenPtr pScreen, uint32_t solid)
return NULL;
 }
 info->ExaDriver->WaitMarker(pScreen, 0);
-
+
 #if X_BYTE_ORDER == X_BIG_ENDIAN
 if (pScrn->bitsPerPixel == 32)
R128CopySwap(info->ExaDriver->memoryBase + exaGetPixmapOffset(pPix), 
(uint8_t*)&solid, 4,
diff --git a/src/r128_video.c b/src/r128_video.c
index bb5a655..dccaa42 100644
--- a/src/r128_video.c
+++ b/src/r128_video.c
@@ -673,7 +673,7 @@ R128DisplayVideo422(
 v_inc_shift++;
 if (pScrn->currentMode->Flags & V_DBLSCAN)
 v_inc_shift--;
-
+
 rmx_active = INREG(R128_FP_VERT_STRETCH) & R128_VERT_STRETCH_ENABLE;
 if (rmx_active) {
 v_inc = ((src_h * pScrn->currentMode->CrtcVDisplay / info->PanelYRes) 
<< v_inc_shift) / drw_h;
@@ -757,7 +757,7 @@ R128DisplayVideo420(
 v_inc_shift++;
 if (pScrn->currentMode->Flags & V_DBLSCAN)
 v_inc_shift--;
-
+
 rmx_active = INREG(R12

xorg-server: Changes to 'ubuntu'

2013-10-03 Thread Timo Aaltonen
 ChangeLog |  135 ++
 configure.ac  |6 
 debian/changelog  |   41 +++
 debian/control|1 
 debian/patches/os-move-arpa-inet.h-for-any-win32-system.patch |   42 +++
 debian/patches/series |2 
 debian/patches/xfree86-hurd-include-hurd.h.patch  |   53 +++
 debian/rules  |5 
 hw/kdrive/src/kinput.c|2 
 9 files changed, 279 insertions(+), 8 deletions(-)

New commits:
commit db47cd69aacbfc2ac985024aa13ecfa8568b3cb3
Author: Timo Aaltonen 
Date:   Thu Oct 3 12:55:16 2013 +0300

release to saucy

diff --git a/debian/changelog b/debian/changelog
index 1723281..83fe687 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+xorg-server (2:1.14.3-3ubuntu1) saucy; urgency=low
+
+  * Merge from unreleased debian git.
+
+ -- Timo Aaltonen   Thu, 03 Oct 2013 12:54:24 +0300
+
 xorg-server (2:1.14.3-4) UNRELEASED; urgency=low
 
   * rules: Drop defoma support from the font path. (Closes: #689233,

commit 14b38b7f3a6896871bbc38aa8e537c1161ac5a17
Author: Timo Aaltonen 
Date:   Wed Sep 25 16:30:43 2013 +0300

closes #689233

diff --git a/debian/changelog b/debian/changelog
index 0749068..15ec5ee 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,7 @@
 xorg-server (2:1.14.3-4) UNRELEASED; urgency=low
 
-  * rules: Drop defoma support from the font path. (LP: #986061)
+  * rules: Drop defoma support from the font path. (Closes: #689233,
+LP: #986061)
 
  -- Timo Aaltonen   Wed, 25 Sep 2013 15:53:06 +0300
 

commit 3f53c7f2feb724f98c2c6200e2a2f293c8e72abb
Author: Timo Aaltonen 
Date:   Wed Sep 25 15:54:14 2013 +0300

rules: Drop defoma support from the font path. (LP: #986061)

diff --git a/debian/changelog b/debian/changelog
index 6fdfe99..0749068 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+xorg-server (2:1.14.3-4) UNRELEASED; urgency=low
+
+  * rules: Drop defoma support from the font path. (LP: #986061)
+
+ -- Timo Aaltonen   Wed, 25 Sep 2013 15:53:06 +0300
+
 xorg-server (2:1.14.3-3) unstable; urgency=low
 
   * Upload to unstable.
diff --git a/debian/rules b/debian/rules
index c42d3ee..9933dc8 100755
--- a/debian/rules
+++ b/debian/rules
@@ -116,7 +116,7 @@ confflags += \
 --disable-install-setuid
 
 confflags_main = \
-   
--with-default-font-path="/usr/share/fonts/X11/misc,/usr/share/fonts/X11/cyrillic,/usr/share/fonts/X11/100dpi/:unscaled,/usr/share/fonts/X11/75dpi/:unscaled,/usr/share/fonts/X11/Type1,/usr/share/fonts/X11/100dpi,/usr/share/fonts/X11/75dpi,/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType,built-ins"
 \
+   
--with-default-font-path="/usr/share/fonts/X11/misc,/usr/share/fonts/X11/cyrillic,/usr/share/fonts/X11/100dpi/:unscaled,/usr/share/fonts/X11/75dpi/:unscaled,/usr/share/fonts/X11/Type1,/usr/share/fonts/X11/100dpi,/usr/share/fonts/X11/75dpi,built-ins"
 \
--enable-aiglx \
--enable-glx-tls \
--enable-registry \

commit 96eaa187b9c10dcea4e5e335a4c283f7ce4ce463
Author: Julien Cristau 
Date:   Sun Sep 22 16:32:33 2013 +0200

Upload to unstable.

diff --git a/debian/changelog b/debian/changelog
index 112b9cc..c265855 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+xorg-server (2:1.14.3-3) unstable; urgency=low
+
+  * Upload to unstable.
+
+ -- Julien Cristau   Sun, 22 Sep 2013 16:32:19 +0200
+
 xorg-server (2:1.14.3-2) experimental; urgency=low
 
   * Delete test-driver on clean.

commit 4cf9fe0f18eb88e85eb01ca0e3a26c5f16ebef2d
Author: Julien Cristau 
Date:   Fri Sep 20 00:21:49 2013 +0200

Upload to experimental

diff --git a/debian/changelog b/debian/changelog
index 7201546..112b9cc 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,10 +1,10 @@
-xorg-server (2:1.14.3-2) UNRELEASED; urgency=low
+xorg-server (2:1.14.3-2) experimental; urgency=low
 
   * Delete test-driver on clean.
   * Add a couple patches to fix FTBFS on hurd (closes: #720736).  Thanks, Pino
 Toscano!
 
- -- Julien Cristau   Mon, 16 Sep 2013 01:22:24 +0200
+ -- Julien Cristau   Fri, 20 Sep 2013 00:21:41 +0200
 
 xorg-server (2:1.14.3-1) experimental; urgency=low
 

commit e9e6da833df164266653fc4f7585536281bab847
Author: Julien Cristau 
Date:   Fri Sep 20 00:09:09 2013 +0200

Add a couple patches to fix FTBFS on hurd (closes: #720736).

Thanks, Pino Toscano!

diff --git a/debian/changelog b/debian/changelog
index c232113..7201546 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,8 @@
 xorg-server (2:1.14.3-2) UNRELEASED; urgency=low
 
   * Delete test-driver on clean.
+  * Add a couple patches to fix FTBFS on hurd (closes: #720736).  Thanks, Pino
+Toscano!
 
  -- Julien Cristau   Mon, 16 Sep 2013 01:22:24 +0200

libx11_1.6.2-1_amd64.changes ACCEPTED into unstable

2013-10-03 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 03 Oct 2013 09:46:46 +0200
Source: libx11
Binary: libx11-6 libx11-6-udeb libx11-data libx11-6-dbg libx11-dev libx11-xcb1 
libx11-xcb1-dbg libx11-xcb-dev libx11-doc
Architecture: source amd64 all
Version: 2:1.6.2-1
Distribution: unstable
Urgency: low
Maintainer: Debian X Strike Force 
Changed-By: Maarten Lankhorst 
Description: 
 libx11-6   - X11 client-side library
 libx11-6-dbg - X11 client-side library (debug package)
 libx11-6-udeb - X11 client-side library (udeb)
 libx11-data - X11 client-side library
 libx11-dev - X11 client-side library (development headers)
 libx11-doc - X11 client-side library (development documentation)
 libx11-xcb-dev - Xlib/XCB interface library (development headers)
 libx11-xcb1 - Xlib/XCB interface library
 libx11-xcb1-dbg - Xlib/XCB interface library (debug package)
Closes: 613820
Changes: 
 libx11 (2:1.6.2-1) unstable; urgency=low
 .
   [ Julien Cristau ]
   * So apparently the 64-bit powerpc port is called ppc64 (closes: #613820).
 .
   [ Maarten Lankhorst ]
   * New upstream release.
Checksums-Sha1: 
 2369fcee380e9d7d8c7cf90a67494387bb18f495 2482 libx11_1.6.2-1.dsc
 351ae5bad88bb2b54b7f749f6096b518a3b13b29 3119924 libx11_1.6.2.orig.tar.gz
 195ac897e9957d2e44c69832a539e43d2829e892 82580 libx11_1.6.2-1.diff.gz
 bc0342f2a0f236908a482d344fc3d764b0a19da0 716378 libx11-6_1.6.2-1_amd64.deb
 35c1814c523b285e0e0930481cfd7f99c74ef290 552890 
libx11-6-udeb_1.6.2-1_amd64.udeb
 af3c9598bfdf2ea1a2b691d64ba47d3c516a3597 1134184 libx11-6-dbg_1.6.2-1_amd64.deb
 5480ca95e78711db59a355303298dec730f79209 784888 libx11-dev_1.6.2-1_amd64.deb
 3632482fa13ad1e3082aea2340ba8b34c08088f8 162342 libx11-xcb1_1.6.2-1_amd64.deb
 1a0e652c7c2e4ffbde04183cf6156e215905859d 173212 
libx11-xcb1-dbg_1.6.2-1_amd64.deb
 898941b94063685f52a956d594a7b28d839a3111 164284 
libx11-xcb-dev_1.6.2-1_amd64.deb
 0a006ebc2bcc879228ad8c293358dac1ab5e3da6 124856 libx11-data_1.6.2-1_all.deb
 d210f1ed63599542169c6dcea935368f75728685 2019510 libx11-doc_1.6.2-1_all.deb
Checksums-Sha256: 
 b2f6062a83c05113c041a1a982491598a4931c13cfa6e3c130ef48eb77a2a6e8 2482 
libx11_1.6.2-1.dsc
 b93739bcd517723121f508bcaf0c213c1bae9c5eacffdca571ff0d86c30ead3e 3119924 
libx11_1.6.2.orig.tar.gz
 d466857099f74fa63db2e740fd039ea3e3a8e7a925b5c7efe53176269c4d 82580 
libx11_1.6.2-1.diff.gz
 702592b07611f535b51f0fb6beb3d2cc538e2034e103397ae9184685d1796da4 716378 
libx11-6_1.6.2-1_amd64.deb
 813d0ac051a2e057a82152b6b22aa1720b3b0182883a5ff546b301e2fdc96d93 552890 
libx11-6-udeb_1.6.2-1_amd64.udeb
 64faac34c71b49e451adad3bbad6b7ee4648c97675a21e130084ffe5c3c5db54 1134184 
libx11-6-dbg_1.6.2-1_amd64.deb
 6937a7dcbeae56840d08791607edd5fad1627097d65e4c2b153f2f6b007963e3 784888 
libx11-dev_1.6.2-1_amd64.deb
 06f52e6f3c32653a67be225e76e8872151ed6692753314979b573bd15b6c540b 162342 
libx11-xcb1_1.6.2-1_amd64.deb
 66cda6998bdfa727605552739a0ebf3cbabac90b13400e7c550f252b19616025 173212 
libx11-xcb1-dbg_1.6.2-1_amd64.deb
 3ff7febae22fb47b0842593ce99fc3ec3121b9d5ac5c2d2568fcb0608f69e4dd 164284 
libx11-xcb-dev_1.6.2-1_amd64.deb
 ad7307c8773e2df7bfab4ab9dbe810abd0dd1d601069843c60267571b8200abd 124856 
libx11-data_1.6.2-1_all.deb
 baa7db6fd731a376f22af4696bc528417c1a7eeded3aaf269f1ca00e16fdb87a 2019510 
libx11-doc_1.6.2-1_all.deb
Files: 
 6c26bf352a307f45d9beec9ce9cca7fb 2482 x11 optional libx11_1.6.2-1.dsc
 7e17129e1678355d8268883ee31a6edf 3119924 x11 optional libx11_1.6.2.orig.tar.gz
 932e26c1b12b47f3dd05ea230dce8d9d 82580 x11 optional libx11_1.6.2-1.diff.gz
 184a34ace92c47eb13b877871ab3bac5 716378 libs optional 
libx11-6_1.6.2-1_amd64.deb
 998ae1e073f2c78b9b9d3e99303dbfbe 552890 debian-installer optional 
libx11-6-udeb_1.6.2-1_amd64.udeb
 9f3670a1dc5292dec75c6b22439823aa 1134184 debug extra 
libx11-6-dbg_1.6.2-1_amd64.deb
 5aedbef87eff2c3281d72429418ee4eb 784888 libdevel optional 
libx11-dev_1.6.2-1_amd64.deb
 82e3fdd74adcd17fb4dd190d357e3daa 162342 libs optional 
libx11-xcb1_1.6.2-1_amd64.deb
 1ad307c007679173becb782e18948dd8 173212 debug extra 
libx11-xcb1-dbg_1.6.2-1_amd64.deb
 3723449a088f5336225638739df01dc5 164284 libdevel optional 
libx11-xcb-dev_1.6.2-1_amd64.deb
 e482dd77d1506638e3ae497b16152e2a 124856 x11 optional 
libx11-data_1.6.2-1_all.deb
 3a2d5879fb39a3d1eff50bbb1d542e6e 2019510 doc optional 
libx11-doc_1.6.2-1_all.deb
Package-Type: udeb

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

iQIcBAEBAgAGBQJSTSI2AAoJEP5VjHKmcBPD8RoP/2FfCdvintHgOc2nwncsOLOI
UNXrh1rLk9FJouGSPRQ8QsbQ1j1F2fDWVjddMu2+FsEx+9nImMbDYwA6MNPUa1Tf
uYHtSbYwvRcaxeq4Prapnihs22LBdR6G34tq8CGJ9eQRptrXha9rjlsnEik3FfGR
2XWX/ueLAWl9cVLNIf4aj7aGMszMFF3c4rthp9FLcFc43lrIujhmdf3Jg/XOqMkz
07fK5a57V7fIqGh6wrem2EAd24e9CH9WRwKIXJYSLFtLrUWL/Vb47HLRN87YINFP
USCo8IBjRfg1s3gq8KlgIx3tWcskBYUeo1gblZelXPFfIOM5unBltAZhoJ/1M0kW
pevkflPRqVcY7RgM+3iaHEWF3sxISJlmp4OMjjHrhVFwQir4WpnwWZQ3CvLZXPJN
k/QnK1WMNj7jbxMGiaa31rkbIvDCnpK0SfYRBEP1W0q88vXXjxe7zM7qW7JfHXP8
A014/W9BTInQbWFYy/wx3cF5Vp63Y24jVqMDyHt+961nFCSeEe/9I/P2B

Bug#613820: marked as done (Please support ppc64)

2013-10-03 Thread Debian Bug Tracking System
Your message dated Thu, 03 Oct 2013 09:22:13 +
with message-id 
and subject line Bug#613820: fixed in libx11 2:1.6.2-1
has caused the Debian Bug report #613820,
regarding Please support ppc64
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.)


-- 
613820: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=613820
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: libx11
Version: 1.4.1-4
Severity: wishlist
Tags: patch

Please support ppc64.

Regards,
--
Hiroyuki Yamamoto
A75D B285 7050 4BF9 AEDA  91AC 3A10 59C6 5203 04DC
diff -Nurd libx11-1.4.1.orig/debian/libx11-6.symbols libx11-1.4.1/debian/libx11-6.symbols
--- libx11-1.4.1.orig/debian/libx11-6.symbols	2011-02-17 22:34:10.0 +0900
+++ libx11-1.4.1/debian/libx11-6.symbols	2011-02-17 22:36:49.0 +0900
@@ -791,7 +791,7 @@
  _XCopyEventCookie@Base 2:1.2.99.901
  (optional)_XCopyToArg@Base 0 1
  _XCreateMutex_fn@Base 0
- (arch=alpha amd64 kfreebsd-amd64 ia64 sparc64)_XData32@Base 0
+ (arch=alpha amd64 kfreebsd-amd64 ia64 ppc64 sparc64)_XData32@Base 0
  _XDefaultError@Base 0
  _XDefaultIOError@Base 0
  (optional)_XDefaultOpenIM@Base 0 1
@@ -852,7 +852,7 @@
  _XProcessInternalConnection@Base 0
  _XProcessWindowAttributes@Base 0
  _XPutBackEvent@Base 0
- (arch=alpha amd64 kfreebsd-amd64 ia64 sparc64)_XRead32@Base 0
+ (arch=alpha amd64 kfreebsd-amd64 ia64 ppc64 sparc64)_XRead32@Base 0
  _XRead@Base 0
  _XReadEvents@Base 0
  _XReadPad@Base 0
@@ -1100,9 +1100,9 @@
  (optional)_XkbInternAtomFunc@Base 0 1
  (optional)_XkbNoteCoreMapChanges@Base 0 1
  (optional)_XkbPeekAtReadBuffer@Base 0 1
- (optional|arch=alpha amd64 kfreebsd-amd64 ia64 sparc64)_XkbReadBufferCopy32@Base 0 1
+ (optional|arch=alpha amd64 kfreebsd-amd64 ia64 ppc64 sparc64)_XkbReadBufferCopy32@Base 0 1
  (optional)_XkbReadBufferCopyKeySyms@Base 0 1
- (optional|arch=alpha amd64 kfreebsd-amd64 ia64 sparc64)_XkbReadCopyData32@Base 0 1
+ (optional|arch=alpha amd64 kfreebsd-amd64 ia64 ppc64 sparc64)_XkbReadCopyData32@Base 0 1
  (optional)_XkbReadCopyKeySyms@Base 0 1
  (optional)_XkbReadGetCompatMapReply@Base 0 1
  (optional)_XkbReadGetGeometryReply@Base 0 1
@@ -,7 +,7 @@
  (optional)_XkbReadGetNamesReply@Base 0 1
  (optional)_XkbReloadDpy@Base 0 1
  (optional)_XkbSkipReadBufferData@Base 0 1
- (optional|arch=alpha amd64 kfreebsd-amd64 ia64 sparc64)_XkbWriteCopyData32@Base 0 1
+ (optional|arch=alpha amd64 kfreebsd-amd64 ia64 ppc64 sparc64)_XkbWriteCopyData32@Base 0 1
  (optional)_XkbWriteCopyKeySyms@Base 0 1
  (optional)_XkeyTable@Base 0 1
  (optional)_XlcAddCT@Base 0 1
--- End Message ---
--- Begin Message ---
Source: libx11
Source-Version: 2:1.6.2-1

We believe that the bug you reported is fixed in the latest version of
libx11, which is due to be installed in the Debian FTP archive.

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 613...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Maarten Lankhorst  (supplier of updated libx11 
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 ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 03 Oct 2013 09:46:46 +0200
Source: libx11
Binary: libx11-6 libx11-6-udeb libx11-data libx11-6-dbg libx11-dev libx11-xcb1 
libx11-xcb1-dbg libx11-xcb-dev libx11-doc
Architecture: source amd64 all
Version: 2:1.6.2-1
Distribution: unstable
Urgency: low
Maintainer: Debian X Strike Force 
Changed-By: Maarten Lankhorst 
Description: 
 libx11-6   - X11 client-side library
 libx11-6-dbg - X11 client-side library (debug package)
 libx11-6-udeb - X11 client-side library (udeb)
 libx11-data - X11 client-side library
 libx11-dev - X11 client-side library (development headers)
 libx11-doc - X11 client-side library (development documentation)
 libx11-xcb-dev - Xlib/XCB interface library (development headers)
 libx11-xcb1 - Xlib/XCB interface library
 libx11-xcb1-dbg - Xlib/XCB interface library (debug package)
Closes: 613820
Changes: 
 libx11 (2:1.6.2-1) unstable; urgency=low
 .
   [ Julien Cristau ]
   * So apparently the 64-bit powerpc port is called ppc64 (closes: #613820).
 .
   [ Maarten Lankhorst ]
   * New upstream release.
Checksums-Sha1: 
 2369fcee380e9d7d8c7cf90a67494387bb18f495 2482 libx11_1.6.2-1.dsc
 351ae5bad88bb2b54b7f749f6096b518a3b13b29 3119924 libx1

libx11: Changes to 'refs/tags/libx11-2%1.6.2-1'

2013-10-03 Thread Maarten Lankhorst
Tag 'libx11-2%1.6.2-1' created by Maarten Lankhorst 
 at 2013-10-03 07:51 +

Debian release 2:1.6.2-1
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)

iQIcBAABAgAGBQJSTSIDAAoJEP5VjHKmcBPDd80QALvtx73Ryneb3T/2Lw9dRHxM
iyKJCIR3s/QMM17n2mpiSpc5kk3fXHOQfWJfRWRk68+YqbTnNK36cd7dCpuplVhv
N7UxzbYcLF+ZhGfA/q06EUtBVa5i/GSykdQPvC8ot8k0RvPwQXEdfBoRZJxuqFtA
pR1JTlgg2vp1heVx9o9Kx2uXiNibu+7n2SZYEULNn0rwQXKJ4fb2UoyTSUy7cng7
lb8vSo40ompk4D7SDgcWP+sOMz6FHFNNIbkenbj/RIRiQlY6+KhtyYjuoM7dSAGJ
IZVtmfG/jcjUOvWfXBhY3nlVYS+MFeP+INz5nNrGBX+nHx7T0etrmNra+hYsa+Dv
NR6MaIxroPTSM+hHrNOtajVdTTx3eTOwqze4yx2/gKKXtNzadFIe/SYE0cMbg04m
NCaL+jcGPr+BsglrQ6m/QUE0CqFEIc5TskhgM1P3sRhECGHP9u9uRHTokwMg2wjP
z8rierRPPgDszXgzZfRbg6kkuEu63+GkhWcWxJJoWuxubphWbQ7Nt8gvr4Sg/XX0
sDzxKAsKMfM2/eBTQwipyyXvqkEPj9QHL8cy3wuyFoSBLOPN0KwII4Ncp3Gst2KK
mONjsPeD8E6UEjhmtMvxNMiYuOONqVrzJSG3X6Id73382EfxFLoBw0FzDMDAc9SX
eXHcDeBRyY7AQyReIvig
=OF7r
-END PGP SIGNATURE-

Changes since libx11-2_1.6.1-1:
Alan Coopersmith (28):
  Fix file leak on malloc error in XlcDL.c:resolve_object()
  lcfile: skip over any null entries in args list
  xlibi18n: convert sprintf calls to snprintf
  ximcp/imRm.c: convert sprintf calls to snprintf
  omGeneric.c: convert sprintf calls to snprintf
  Avoid memory leak/corruption if realloc fails in XlcDL.c:resolve_object()
  lcDB.c: ensure buffer size is updated correctly if realloc fails
  Avoid memory leak/corruption if realloc fails in imLcPrs.c:parseline()
  Avoid memory leak/corruption if realloc fails in Xregion.h:MEMCHECK macro
  miRegionCopy(): handle realloc failure better
  miRegionOp(): ensure region size is not updated if realloc fails
  Delete unused XKB_INSURE_SIZE macro from XKBlibint.h
  init_om: remove unneeded extra copy of string to local buffer
  Constify lc_name argument to _XlcLocaleDirName() & _XlcLocaleLibDirName()
  Fix const handling in XSetLocaleModifiers
  xlibi18n: Fix a bunch of const cast warnings
  i18n modules: Fix some const cast warnings
  xlibi18n: fix argsize argument to _XlcParsePath
  Remove even more casts of return values from Xmalloc/Xrealloc
  Don't cast sizeof() results to unsigned when passing to Xmalloc/Xcalloc
  Remove unnecessary casts of pointers to (char *) in calls to Xfree()
  Remove long unused src/udcInf.c
  Fix overflow checks in _XkbReadKeySyms when key_sym_map is already created
  Reindent XKB code to X.Org standard style
  Rearrange some variable declarations & initializations in XKB
  Stop checking for HAVE_DIX_CONFIG_H on the client side
  Bug 68413 - [Bisected]Error in `xterm': realloc(): invalid next size
  libX11 1.6.2

Benno Schulenberg (1):
  nls: Adding more accessible compose sequences for J́ and j́.

Egbert Eich (2):
  XIM: Fix race on focus change: set 'FABRICATED' only when keyev filters 
in place.
  XIM: Fix sync problem on focus change.

Gaetan Nadon (1):
  makekeys: don't need to use target-specific CFLAGS

ISHIKAWA,chiaki (1):
  Fix bogus timestamp generated by XIM

James Cloos (1):
  nls/en_US.UTF-8/Compose.pre: Fix typo.

Julien Cristau (2):
  Add missing locales to configure.ac
  So apparently the 64-bit powerpc port is called ppc64 (closes: #613820).

Maarten Lankhorst (3):
  Merge branch 'upstream-unstable' into debian-unstable
  New upstream release.
  release to unstable

---
 ChangeLog  |  494 +
 configure.ac   |4 
 debian/changelog   |   10 
 debian/libx11-6.symbols|   10 
 include/X11/Xregion.h  |7 
 modules/im/ximcp/imCallbk.c|   17 
 modules/im/ximcp/imDefIc.c |   79 +
 modules/im/ximcp/imDefIm.c |   40 
 modules/im/ximcp/imDefLkup.c   |   33 
 modules/im/ximcp/imDispch.c|2 
 modules/im/ximcp/imExten.c |6 
 modules/im/ximcp/imInsClbk.c   |2 
 modules/im/ximcp/imInt.c   |4 
 modules/im/ximcp/imLcIc.c  |2 
 modules/im/ximcp/imLcIm.c  |2 
 modules/im/ximcp/imLcPrs.c |   35 
 modules/im/ximcp/imRm.c|   60 -
 modules/im/ximcp/imRmAttr.c|   12 
 modules/im/ximcp/imThaiIc.c|   10 
 modules/im/ximcp/imThaiIm.c|2 
 modules/im/ximcp/imTrX.c   |2 
 modules/im/ximcp/imTrans.c |   10 
 modules/im/ximcp/imTransR.c|8 
 modules/lc/def/lcDefConv.c |8 
 modules/lc/gen/lcGenConv.c |   28 
 modules/lc/xlocale/lcEuc.c |4 
 modules/lc/xlocale/lcJis.c |8 
 modules/lc/xlocale/lcSjis.c|4 
 modules/om/generic/omGeneric.c |   57 -
 nls/en_US.UTF-8/Compose.pre|8 
 src/Context.c  |   12 
 src/FetchName.c|  

Processing of libx11_1.6.2-1_amd64.changes

2013-10-03 Thread Debian FTP Masters
libx11_1.6.2-1_amd64.changes uploaded successfully to localhost
along with the files:
  libx11_1.6.2-1.dsc
  libx11_1.6.2.orig.tar.gz
  libx11_1.6.2-1.diff.gz
  libx11-6_1.6.2-1_amd64.deb
  libx11-6-udeb_1.6.2-1_amd64.udeb
  libx11-6-dbg_1.6.2-1_amd64.deb
  libx11-dev_1.6.2-1_amd64.deb
  libx11-xcb1_1.6.2-1_amd64.deb
  libx11-xcb1-dbg_1.6.2-1_amd64.deb
  libx11-xcb-dev_1.6.2-1_amd64.deb
  libx11-data_1.6.2-1_all.deb
  libx11-doc_1.6.2-1_all.deb

Greetings,

Your Debian queue daemon (running on host franck.debian.org)


-- 
To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1vrdkg-0004en...@franck.debian.org



libx11: Changes to 'debian-unstable'

2013-10-03 Thread Maarten Lankhorst
 ChangeLog  |  494 +
 configure.ac   |4 
 debian/changelog   |8 
 include/X11/Xregion.h  |7 
 modules/im/ximcp/imCallbk.c|   17 
 modules/im/ximcp/imDefIc.c |   79 +
 modules/im/ximcp/imDefIm.c |   40 
 modules/im/ximcp/imDefLkup.c   |   33 
 modules/im/ximcp/imDispch.c|2 
 modules/im/ximcp/imExten.c |6 
 modules/im/ximcp/imInsClbk.c   |2 
 modules/im/ximcp/imInt.c   |4 
 modules/im/ximcp/imLcIc.c  |2 
 modules/im/ximcp/imLcIm.c  |2 
 modules/im/ximcp/imLcPrs.c |   35 
 modules/im/ximcp/imRm.c|   60 -
 modules/im/ximcp/imRmAttr.c|   12 
 modules/im/ximcp/imThaiIc.c|   10 
 modules/im/ximcp/imThaiIm.c|2 
 modules/im/ximcp/imTrX.c   |2 
 modules/im/ximcp/imTrans.c |   10 
 modules/im/ximcp/imTransR.c|8 
 modules/lc/def/lcDefConv.c |8 
 modules/lc/gen/lcGenConv.c |   28 
 modules/lc/xlocale/lcEuc.c |4 
 modules/lc/xlocale/lcJis.c |8 
 modules/lc/xlocale/lcSjis.c|4 
 modules/om/generic/omGeneric.c |   57 -
 nls/en_US.UTF-8/Compose.pre|8 
 src/Context.c  |   12 
 src/FetchName.c|4 
 src/Font.c |   66 -
 src/FontInfo.c |   18 
 src/FontNames.c|4 
 src/FreeEData.c|4 
 src/FreeGC.c   |2 
 src/GetFPath.c |4 
 src/GetHints.c |   24 
 src/GetNrmHint.c   |4 
 src/GetRGBCMap.c   |   10 
 src/GetStCmap.c|6 
 src/GetWMCMapW.c   |2 
 src/GetWMProto.c   |2 
 src/ImUtil.c   |8 
 src/InitExt.c  |2 
 src/IntAtom.c  |6 
 src/KeyBind.c  |   12 
 src/ListExt.c  |6 
 src/Makefile.am|5 
 src/ModMap.c   |8 
 src/OpenDis.c  |   20 
 src/PolyReg.c  |6 
 src/PutImage.c |6 
 src/QuColors.c |2 
 src/Quarks.c   |2 
 src/RdBitF.c   |4 
 src/Region.c   |   28 
 src/RegstFlt.c |4 
 src/SetFPath.c |2 
 src/SetHints.c |2 
 src/SetRGBCMap.c   |2 
 src/StBytes.c  |2 
 src/TextToStr.c|4 
 src/VisUtil.c  |4 
 src/Xrm.c  |   28 
 src/locking.c  |   12 
 src/udcInf.c   |  715 --
 src/util/Makefile.am   |4 
 src/xcms/CCC.c |5 
 src/xcms/CvCols.c  |6 
 src/xcms/IdOfPr.c  |2 
 src/xcms/LRGB.c|   36 
 src/xcms/SetGetCols.c  |   10 
 src/xcms/StCols.c  |4 
 src/xcms/cmsCmap.c |   11 
 src/xcms/cmsColNm.c|8 
 src/xcms/cmsInt.c  |   11 
 src/xkb/XKB.c  |  766 +++
 src/xkb/XKBAlloc.c |  642 ++--
 src/xkb/XKBBell.c  |  123 +-
 src/xkb/XKBBind.c  | 1080 +++--
 src/xkb/XKBCompat.c|  295 +++--
 src/xkb/XKBCtrls.c |  347 +++---
 src/xkb/XKBCvt.c   |  294 +++--
 src/xkb/XKBExtDev.c| 1180 ---
 src/xkb/XKBGAlloc.c| 1206 
 src/xkb/XKBGeom.c  | 1042 ++--
 src/xkb/XKBGetByName.c |  286 ++---
 src/xkb/XKBGetMap.c| 1101 +++---
 src/xkb/XKBList.c  |  333 +++---
 src/xkb/XKBMAlloc.c| 1646 -
 src/xkb/XKBMisc.c  | 1640 +---
 src/xkb/XKBNames.c | 1397 ++--
 src/xkb/XKBRdBuf.c |  173 +--
 src/xkb/XKBSetGeom.c   |  606 ++--
 src/xkb/XKBSetMap.c|  769 +++
 src/xkb/XKBUse.c   | 1363 +--

libx11: Changes to 'upstream-unstable'

2013-10-03 Thread Maarten Lankhorst
 configure.ac   |   10 
 include/X11/Xregion.h  |7 
 modules/im/ximcp/imCallbk.c|   17 
 modules/im/ximcp/imDefIc.c |   79 +
 modules/im/ximcp/imDefIm.c |   40 
 modules/im/ximcp/imDefLkup.c   |   33 
 modules/im/ximcp/imDispch.c|2 
 modules/im/ximcp/imExten.c |6 
 modules/im/ximcp/imInsClbk.c   |2 
 modules/im/ximcp/imInt.c   |4 
 modules/im/ximcp/imLcIc.c  |2 
 modules/im/ximcp/imLcIm.c  |2 
 modules/im/ximcp/imLcPrs.c |   35 
 modules/im/ximcp/imRm.c|   60 -
 modules/im/ximcp/imRmAttr.c|   12 
 modules/im/ximcp/imThaiIc.c|   10 
 modules/im/ximcp/imThaiIm.c|2 
 modules/im/ximcp/imTrX.c   |2 
 modules/im/ximcp/imTrans.c |   10 
 modules/im/ximcp/imTransR.c|8 
 modules/lc/def/lcDefConv.c |8 
 modules/lc/gen/lcGenConv.c |   28 
 modules/lc/xlocale/lcEuc.c |4 
 modules/lc/xlocale/lcJis.c |8 
 modules/lc/xlocale/lcSjis.c|4 
 modules/om/generic/omGeneric.c |   57 -
 nls/en_US.UTF-8/Compose.pre|8 
 src/Context.c  |   12 
 src/FetchName.c|4 
 src/Font.c |   66 -
 src/FontInfo.c |   18 
 src/FontNames.c|4 
 src/FreeEData.c|4 
 src/FreeGC.c   |2 
 src/GetFPath.c |4 
 src/GetHints.c |   24 
 src/GetNrmHint.c   |4 
 src/GetRGBCMap.c   |   10 
 src/GetStCmap.c|6 
 src/GetWMCMapW.c   |2 
 src/GetWMProto.c   |2 
 src/ImUtil.c   |8 
 src/InitExt.c  |2 
 src/IntAtom.c  |6 
 src/KeyBind.c  |   12 
 src/ListExt.c  |6 
 src/Makefile.am|5 
 src/ModMap.c   |8 
 src/OpenDis.c  |   20 
 src/PolyReg.c  |6 
 src/PutImage.c |6 
 src/QuColors.c |2 
 src/Quarks.c   |2 
 src/RdBitF.c   |4 
 src/Region.c   |   28 
 src/RegstFlt.c |4 
 src/SetFPath.c |2 
 src/SetHints.c |2 
 src/SetRGBCMap.c   |2 
 src/StBytes.c  |2 
 src/TextToStr.c|4 
 src/VisUtil.c  |4 
 src/Xrm.c  |   28 
 src/locking.c  |   12 
 src/udcInf.c   |  715 --
 src/util/Makefile.am   |4 
 src/xcms/CCC.c |5 
 src/xcms/CvCols.c  |6 
 src/xcms/IdOfPr.c  |2 
 src/xcms/LRGB.c|   36 
 src/xcms/SetGetCols.c  |   10 
 src/xcms/StCols.c  |4 
 src/xcms/cmsCmap.c |   11 
 src/xcms/cmsColNm.c|8 
 src/xcms/cmsInt.c  |   11 
 src/xkb/XKB.c  |  766 +++
 src/xkb/XKBAlloc.c |  642 ++--
 src/xkb/XKBBell.c  |  123 +-
 src/xkb/XKBBind.c  | 1080 +++--
 src/xkb/XKBCompat.c|  295 +++--
 src/xkb/XKBCtrls.c |  347 +++---
 src/xkb/XKBCvt.c   |  294 +++--
 src/xkb/XKBExtDev.c| 1180 ---
 src/xkb/XKBGAlloc.c| 1206 
 src/xkb/XKBGeom.c  | 1042 ++--
 src/xkb/XKBGetByName.c |  286 ++---
 src/xkb/XKBGetMap.c| 1101 +++---
 src/xkb/XKBList.c  |  333 +++---
 src/xkb/XKBMAlloc.c| 1646 -
 src/xkb/XKBMisc.c  | 1640 +---
 src/xkb/XKBNames.c | 1397 ++--
 src/xkb/XKBRdBuf.c |  173 +--
 src/xkb/XKBSetGeom.c   |  606 ++--
 src/xkb/XKBSetMap.c|  769 +++
 src/xkb/XKBUse.c   | 1363 +--
 src/xkb/XKBleds.c  |  377 +++
 src/xkb/XKBlibint.h|  362 +++