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

Bug#168791: marked as done (xfs: A fix for xfs segfault)



Your message dated Wed, 22 Jan 2003 01:40:38 -0500
with message-id <E18bEYw-0006ee-00@auric.debian.org>
and subject line Bug#168791: fixed in xfree86 4.2.1-5
has caused the attached Bug report to be marked as done.

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

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

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

--------------------------------------
Received: (at submit) by bugs.debian.org; 12 Nov 2002 14:37:18 +0000
>From nikita@zigzag.lvk.cs.msu.su Tue Nov 12 08:37:18 2002
Return-path: <nikita@zigzag.lvk.cs.msu.su>
Received: from zigzag.lvk.cs.msu.su [158.250.17.23] 
	by master.debian.org with esmtp (Exim 3.12 1 (Debian))
	id 18BcAH-00039w-00; Tue, 12 Nov 2002 08:37:18 -0600
Received: from nikita by zigzag.lvk.cs.msu.su with local (Exim 3.35 #1 (Debian))
	id 18BcAp-0005Jx-00; Tue, 12 Nov 2002 17:37:51 +0300
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 8bit
From: "Nikita V. Youshchenko" <yoush@cs.msu.su>
To: Debian Bug Tracking System <submit@bugs.debian.org>
Subject: xfs: A fix for xfs segfault
X-Mailer: reportbug 2.9
Date: Tue, 12 Nov 2002 17:37:51 +0300
Message-Id: <E18BcAp-0005Jx-00@zigzag.lvk.cs.msu.su>
Sender: "Nikita V. Youshchenko" <nikita@zigzag.lvk.cs.msu.su>
Delivered-To: submit@bugs.debian.org
X-Spam-Status: No, hits=0.0 required=5.0
	tests=PATCH_UNIFIED_DIFF,SPAM_PHRASE_00_01
	version=2.41
X-Spam-Level: 

Package: xfs
Version: 4.2.1-3
Severity: important
Tags: patch

After upgrade to Xfree 4.2.1, several times we experienced xfs crashes.
(quite bad, because it causes several user sessions on terminals to crash)
At last one of our users found an reprodusable sequence of actions to
crash xfs. So I've tracked the bug.

It dereferences a NULL pointer in xc/lib/font/fontfile/fontenc.c

The following patch fixes the problem:

--- fontenc.c.orig	Tue Nov 12 17:11:37 2002
+++ fontenc.c	Tue Nov 12 17:25:29 2002
@@ -744,7 +744,7 @@
         /* Check whether the name is already known for this encoding */
         if(strcasecmp(encoding->name, encoding_name) == 0) {
             found = 1;
-        } else {
+        } else if (encoding->aliases) {
             for(alias=encoding->aliases; *alias; alias++)
                 if(!strcasecmp(*alias, encoding_name)) {
                     found = 1;
@@ -763,17 +763,21 @@
             if(new_name == NULL)
                 return NULL;
             strcpy(new_name, encoding_name);
-            for(alias = encoding->aliases; *alias; alias++)
-                numaliases++;
+	    if (encoding->aliases) {
+                for(alias = encoding->aliases; *alias; alias++)
+                    numaliases++;
+	    }
             new_aliases = (char**)xalloc((numaliases+2)*sizeof(char*));
             if(new_aliases == NULL) {
                 xfree(new_name);
                 return NULL;
             }
-            memcpy(new_aliases, encoding->aliases, numaliases*sizeof(char*));
+            if (encoding->aliases)  {
+	        memcpy(new_aliases, encoding->aliases, numaliases*sizeof(char*));
+		xfree(encoding->aliases);
+	    }
             new_aliases[numaliases] = new_name;
             new_aliases[numaliases+1] = NULL;
-            xfree(encoding->aliases);
             encoding->aliases = new_aliases;
         }
         
-- System Information:
Debian Release: 3.0
Architecture: i386
Kernel: Linux zigzag 2.4.19 #1 óÒÄ îÏÑ 6 17:54:30 MSK 2002 i686
Locale: LANG=ru_RU.KOI8-R, LC_CTYPE=ru_RU.KOI8-R

Versions of packages xfs depends on:
ii  debconf                       1.2.14     Debian configuration management sy
ii  libc6                         2.3.1-3    GNU C Library: Shared libraries an
ii  zlib1g                        1:1.1.4-1  compression library - runtime

-- debconf information:
* xfs/default_100dpi: 
* xfs/default_nolisten_tcp: 


---------------------------------------
Received: (at 168791-close) by bugs.debian.org; 22 Jan 2003 06:53:06 +0000
>From rdonald@auric.debian.org Wed Jan 22 00:53:06 2003
Return-path: <rdonald@auric.debian.org>
Received: from auric.debian.org [206.246.226.45] (mail)
	by master.debian.org with esmtp (Exim 3.12 1 (Debian))
	id 18bEky-0002dK-00; Wed, 22 Jan 2003 00:53:04 -0600
Received: from rdonald by auric.debian.org with local (Exim 3.35 1 (Debian))
	id 18bEYw-0006ee-00; Wed, 22 Jan 2003 01:40:38 -0500
From: Branden Robinson <branden@debian.org>
To: 168791-close@bugs.debian.org
X-Katie: lisa $Revision: 1.20 $
Subject: Bug#168791: fixed in xfree86 4.2.1-5
Message-Id: <E18bEYw-0006ee-00@auric.debian.org>
Sender: Randall Donald <rdonald@auric.debian.org>
Date: Wed, 22 Jan 2003 01:40:38 -0500
Delivered-To: 168791-close@bugs.debian.org

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

lbxproxy_4.2.1-5_powerpc.deb
  to pool/main/x/xfree86/lbxproxy_4.2.1-5_powerpc.deb
libdps-dev_4.2.1-5_powerpc.deb
  to pool/main/x/xfree86/libdps-dev_4.2.1-5_powerpc.deb
libdps1-dbg_4.2.1-5_powerpc.deb
  to pool/main/x/xfree86/libdps1-dbg_4.2.1-5_powerpc.deb
libdps1_4.2.1-5_powerpc.deb
  to pool/main/x/xfree86/libdps1_4.2.1-5_powerpc.deb
libxaw6-dbg_4.2.1-5_powerpc.deb
  to pool/main/x/xfree86/libxaw6-dbg_4.2.1-5_powerpc.deb
libxaw6-dev_4.2.1-5_powerpc.deb
  to pool/main/x/xfree86/libxaw6-dev_4.2.1-5_powerpc.deb
libxaw6_4.2.1-5_powerpc.deb
  to pool/main/x/xfree86/libxaw6_4.2.1-5_powerpc.deb
libxaw7-dbg_4.2.1-5_powerpc.deb
  to pool/main/x/xfree86/libxaw7-dbg_4.2.1-5_powerpc.deb
libxaw7-dev_4.2.1-5_powerpc.deb
  to pool/main/x/xfree86/libxaw7-dev_4.2.1-5_powerpc.deb
libxaw7_4.2.1-5_powerpc.deb
  to pool/main/x/xfree86/libxaw7_4.2.1-5_powerpc.deb
proxymngr_4.2.1-5_powerpc.deb
  to pool/main/x/xfree86/proxymngr_4.2.1-5_powerpc.deb
twm_4.2.1-5_powerpc.deb
  to pool/main/x/xfree86/twm_4.2.1-5_powerpc.deb
x-window-system-core_4.2.1-5_powerpc.deb
  to pool/main/x/xfree86/x-window-system-core_4.2.1-5_powerpc.deb
x-window-system_4.2.1-5_all.deb
  to pool/main/x/xfree86/x-window-system_4.2.1-5_all.deb
xbase-clients_4.2.1-5_powerpc.deb
  to pool/main/x/xfree86/xbase-clients_4.2.1-5_powerpc.deb
xdm_4.2.1-5_powerpc.deb
  to pool/main/x/xfree86/xdm_4.2.1-5_powerpc.deb
xfonts-100dpi-transcoded_4.2.1-5_all.deb
  to pool/main/x/xfree86/xfonts-100dpi-transcoded_4.2.1-5_all.deb
xfonts-100dpi_4.2.1-5_all.deb
  to pool/main/x/xfree86/xfonts-100dpi_4.2.1-5_all.deb
xfonts-75dpi-transcoded_4.2.1-5_all.deb
  to pool/main/x/xfree86/xfonts-75dpi-transcoded_4.2.1-5_all.deb
xfonts-75dpi_4.2.1-5_all.deb
  to pool/main/x/xfree86/xfonts-75dpi_4.2.1-5_all.deb
xfonts-base-transcoded_4.2.1-5_all.deb
  to pool/main/x/xfree86/xfonts-base-transcoded_4.2.1-5_all.deb
xfonts-base_4.2.1-5_all.deb
  to pool/main/x/xfree86/xfonts-base_4.2.1-5_all.deb
xfonts-cyrillic_4.2.1-5_all.deb
  to pool/main/x/xfree86/xfonts-cyrillic_4.2.1-5_all.deb
xfonts-scalable_4.2.1-5_all.deb
  to pool/main/x/xfree86/xfonts-scalable_4.2.1-5_all.deb
xfree86-common_4.2.1-5_all.deb
  to pool/main/x/xfree86/xfree86-common_4.2.1-5_all.deb
xfree86_4.2.1-5.diff.gz
  to pool/main/x/xfree86/xfree86_4.2.1-5.diff.gz
xfree86_4.2.1-5.dsc
  to pool/main/x/xfree86/xfree86_4.2.1-5.dsc
xfs_4.2.1-5_powerpc.deb
  to pool/main/x/xfree86/xfs_4.2.1-5_powerpc.deb
xfwp_4.2.1-5_powerpc.deb
  to pool/main/x/xfree86/xfwp_4.2.1-5_powerpc.deb
xlib6g-dev_4.2.1-5_all.deb
  to pool/main/x/xfree86/xlib6g-dev_4.2.1-5_all.deb
xlib6g_4.2.1-5_all.deb
  to pool/main/x/xfree86/xlib6g_4.2.1-5_all.deb
xlibmesa-dev_4.2.1-5_all.deb
  to pool/main/x/xfree86/xlibmesa-dev_4.2.1-5_all.deb
xlibmesa-gl-dev_4.2.1-5_powerpc.deb
  to pool/main/x/xfree86/xlibmesa-gl-dev_4.2.1-5_powerpc.deb
xlibmesa-glu-dev_4.2.1-5_powerpc.deb
  to pool/main/x/xfree86/xlibmesa-glu-dev_4.2.1-5_powerpc.deb
xlibmesa3-dbg_4.2.1-5_all.deb
  to pool/main/x/xfree86/xlibmesa3-dbg_4.2.1-5_all.deb
xlibmesa3-gl-dbg_4.2.1-5_powerpc.deb
  to pool/main/x/xfree86/xlibmesa3-gl-dbg_4.2.1-5_powerpc.deb
xlibmesa3-gl_4.2.1-5_powerpc.deb
  to pool/main/x/xfree86/xlibmesa3-gl_4.2.1-5_powerpc.deb
xlibmesa3-glu-dbg_4.2.1-5_powerpc.deb
  to pool/main/x/xfree86/xlibmesa3-glu-dbg_4.2.1-5_powerpc.deb
xlibmesa3-glu_4.2.1-5_powerpc.deb
  to pool/main/x/xfree86/xlibmesa3-glu_4.2.1-5_powerpc.deb
xlibmesa3_4.2.1-5_all.deb
  to pool/main/x/xfree86/xlibmesa3_4.2.1-5_all.deb
xlibosmesa-dev_4.2.1-5_powerpc.deb
  to pool/main/x/xfree86/xlibosmesa-dev_4.2.1-5_powerpc.deb
xlibosmesa3-dbg_4.2.1-5_powerpc.deb
  to pool/main/x/xfree86/xlibosmesa3-dbg_4.2.1-5_powerpc.deb
xlibosmesa3_4.2.1-5_powerpc.deb
  to pool/main/x/xfree86/xlibosmesa3_4.2.1-5_powerpc.deb
xlibs-dbg_4.2.1-5_powerpc.deb
  to pool/main/x/xfree86/xlibs-dbg_4.2.1-5_powerpc.deb
xlibs-dev_4.2.1-5_powerpc.deb
  to pool/main/x/xfree86/xlibs-dev_4.2.1-5_powerpc.deb
xlibs-pic_4.2.1-5_powerpc.deb
  to pool/main/x/xfree86/xlibs-pic_4.2.1-5_powerpc.deb
xlibs_4.2.1-5_powerpc.deb
  to pool/main/x/xfree86/xlibs_4.2.1-5_powerpc.deb
xmh_4.2.1-5_powerpc.deb
  to pool/main/x/xfree86/xmh_4.2.1-5_powerpc.deb
xnest_4.2.1-5_powerpc.deb
  to pool/main/x/xfree86/xnest_4.2.1-5_powerpc.deb
xprt_4.2.1-5_powerpc.deb
  to pool/main/x/xfree86/xprt_4.2.1-5_powerpc.deb
xserver-common_4.2.1-5_powerpc.deb
  to pool/main/x/xfree86/xserver-common_4.2.1-5_powerpc.deb
xserver-xfree86-dbg_4.2.1-5_powerpc.deb
  to pool/main/x/xfree86/xserver-xfree86-dbg_4.2.1-5_powerpc.deb
xserver-xfree86_4.2.1-5_powerpc.deb
  to pool/main/x/xfree86/xserver-xfree86_4.2.1-5_powerpc.deb
xspecs_4.2.1-5_all.deb
  to pool/main/x/xfree86/xspecs_4.2.1-5_all.deb
xterm_4.2.1-5_powerpc.deb
  to pool/main/x/xfree86/xterm_4.2.1-5_powerpc.deb
xutils_4.2.1-5_powerpc.deb
  to pool/main/x/xfree86/xutils_4.2.1-5_powerpc.deb
xvfb_4.2.1-5_powerpc.deb
  to pool/main/x/xfree86/xvfb_4.2.1-5_powerpc.deb



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

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

Debian distribution maintenance software
pp.
Branden Robinson <branden@debian.org> (supplier of updated xfree86 package)

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


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

Format: 1.7
Date: Tue, 21 Jan 2003 12:02:40 -0500
Source: xfree86
Binary: xlibmesa3-gl xserver-common libxaw7-dbg xlibmesa-glu-dev xbase-clients twm xlibmesa3-dbg xfonts-scalable xfonts-75dpi libdps1-dbg xlib6g-dev xmh libxaw6-dbg xfwp xlibs xlibosmesa3-dbg xlibmesa3-glu libdps-dev xserver-xfree86-dbg xlibmesa-dev xserver-xfree86 libdps1 proxymngr xlibmesa3-glu-dbg xfonts-base-transcoded xlibmesa-gl-dev libxaw6-dev lbxproxy xfonts-cyrillic xlibmesa3-gl-dbg xlib6g x-window-system-core xutils xspecs xlibs-pic x-window-system xfree86-common xfs xlibmesa3 xfonts-base xlibs-dbg libxaw7-dev xnest xfonts-100dpi-transcoded libxaw6 xfonts-100dpi xterm xfonts-75dpi-transcoded xprt xlibosmesa-dev xvfb libxaw7 xlibosmesa3 xdm xlibs-dev
Architecture: source powerpc all
Version: 4.2.1-5
Distribution: unstable
Urgency: low
Maintainer: Branden Robinson <branden@debian.org>
Changed-By: Branden Robinson <branden@debian.org>
Description: 
 lbxproxy   - Low Bandwidth X (LBX) proxy server
 libdps-dev - Display PostScript (DPS) client library development files
 libdps1    - Display PostScript (DPS) client library
 libdps1-dbg - Display PostScript (DPS) client library (unstripped)
 libxaw6    - X Athena widget set library (version 6)
 libxaw6-dbg - X Athena widget set library (version 6) (unstripped)
 libxaw6-dev - X Athena widget set library development files (version 6)
 libxaw7    - X Athena widget set library
 libxaw7-dbg - X Athena widget set library (unstripped)
 libxaw7-dev - X Athena widget set library development files
 proxymngr  - X proxy services manager
 twm        - Tab window manager
 x-window-system - X Window System
 x-window-system-core - X Window System core components
 xbase-clients - miscellaneous X clients
 xdm        - X display manager
 xfonts-100dpi - 100 dpi fonts for X
 xfonts-100dpi-transcoded - 100 dpi fonts for X (transcoded from ISO 10646-1)
 xfonts-75dpi - 75 dpi fonts for X
 xfonts-75dpi-transcoded - 75 dpi fonts for X (transcoded from ISO 10646-1)
 xfonts-base - standard fonts for X
 xfonts-base-transcoded - standard fonts for X (transcoded from ISO 10646-1)
 xfonts-cyrillic - Cyrillic fonts for X
 xfonts-scalable - scalable fonts for X
 xfree86-common - X Window System (XFree86) infrastructure
 xfs        - X font server
 xfwp       - X firewall proxy server
 xlib6g     - pseudopackage providing X libraries
 xlib6g-dev - pseudopackage providing X library development files
 xlibmesa-dev - XFree86 Mesa development libraries pseudopackage
 xlibmesa-gl-dev - Mesa 3D graphics library development files [XFree86]
 xlibmesa-glu-dev - Mesa OpenGL utility library development files [XFree86]
 xlibmesa3  - XFree86 Mesa libraries pseudopackage
 xlibmesa3-dbg - XFree86 Mesa unstripped libraries pseudopackage
 xlibmesa3-gl - Mesa 3D graphics library [XFree86]
 xlibmesa3-gl-dbg - Mesa 3D graphics library (unstripped) [XFree86]
 xlibmesa3-glu - Mesa OpenGL utility library [XFree86]
 xlibmesa3-glu-dbg - Mesa OpenGL utility library (unstripped) [XFree86]
 xlibosmesa-dev - Mesa off-screen rendering library development files [XFree86]
 xlibosmesa3 - Mesa off-screen rendering library [XFree86]
 xlibosmesa3-dbg - Mesa off-screen rendering library (unstripped) [XFree86]
 xlibs      - X Window System client libraries
 xlibs-dbg  - X Window System client libraries (unstripped)
 xlibs-dev  - X Window System client library development files
 xlibs-pic  - X Window System client extension library PIC archives
 xmh        - X interface to the MH mail system
 xnest      - nested X server
 xprt       - X print server (XFree86 version)
 xserver-common - files and utilities common to all X servers
 xserver-xfree86 - the XFree86 X server
 xserver-xfree86-dbg - the XFree86 X server (static version with debugging symbols)
 xspecs     - X protocol, extension, and library technical specifications
 xterm      - X terminal emulator
 xutils     - X Window System utility programs
 xvfb       - virtual framebuffer X server
Closes: 95951 166234 167212 167448 168791 170508 170509 170510 170513 170638 170678 171294 174282 174589 175157
Changes: 
 xfree86 (4.2.1-5) unstable; urgency=low
 .
   * Thanks to ISHIKAWA Mutsumi for authoring, identifying, and otherwise
     helping out with patches to fix bugs in the ServersOnly build when X
     library headers aren't installed in the build environment.
     (Closes: #170508,#170510)
 .
   * patch #000_stolen_from_HEAD:
     + dropped patch "Fix the number of beeps when using AccessX and XKB
       (#A.1302, Alan Coopersmith)" since it causes the server to beep nonstop
       until it's restarted if you press Shift-NumLock to enable PointerKeys.
       ("xset b off" shuts it up, but it's just beeping silently, as a
       subsequent "xset b on" reveals) (Closes: #171294)
     + GLU and GLw aren't extension libraries, so key their default build
       status to BuildLibraries. (David Dawes)
     + BuildServersOnly fix when building on a system with no installed X
       headers or libraries (#5559, ISHIKAWA Mutsumi).
     + (xc/lib/xkbfile/xkberrs.c): build fixes (Alan Hourihane)
 .
   * patch #000_stolen_from_HEAD_savage_driver: new;
     + Fixed memory leaks in S3 Savage driver (Egbert Eich).
     + Savage driver updates (#5203, Tim Roberts).
     + [...] xf86SetOperatingState() call cleanups in most drivers
       (Marc La France).
     + Savage driver updates.
         - Support for ProSavage DDR (PCI ID 0x8D04)
         - TV output fixes
         - support for -pixmap24 flag
         - XAA fixes to cure lockups
         (#5412, Tim Roberts).
     + Fix Mono8x8 code in savage driver, needed ROP_NEEDS_SOURCE, also
       add NO_PLANEMASK to ScreenToScreen as code doesn't handle that case
       (Alan Hourihane).
     + Remove "Option VideoRam" from savage driver, there's no need for
       it, and utilize the entities given VideoRam size (Alan Hourihane).
 .
   * patch #009: deleted; didn't do what it was supposed to, and caused other
     Xv problems in i810 (Closes: #166234)
   * patch #021: new; patch to startx to check for GNU hostname regardless of
     what uname reports the OS as; first check to see if "hostname --version"
     works at all, and then if it does check both stdout and stderr of that
     command for "GNU" (Closes: #167212)
   * patch #022: new; fix Xaw's StripChart widget to draw scale lines correctly
     (thanks, Nikita V. Youshchenko) (Closes: #167448)
   * patch #033: new; fix for ICE message replies when using subprotocols
     (thanks, Jochen Voss) (Closes: #95951)
   * patch #035: new; fix for null pointer dereferences in fontfile library,
     (thanks, Nikita V. Youshchenko) (Closes: #168791)
   * patch #041: new; patch from ISHIKAWA Mutsumi to fix missing depend target
     in Xlib's Imakefile if "BuildServersOnly" is YES, "BuildXnestServer" is
     NO, and "BuildGLXLibrary" is NO.
   * patch #079: deleted; superseded by #000_stolen_from_HEAD_savage_driver
   * patch #102: deleted; if Sun Type6 keyboards use the same scancodes as
     Type5 keyboards to mean different things, then much more of a patch than
     this is needed.  Fixes FTBFS problem on sparc.  (Closes: #170509)
   * patch #203: fix for alignment issues in Xpm library on Alpha (thanks,
     Kalle Olavi Niemitalo) (Closes: #174282)
   * patch #909: change XF86Config-4(5x)'s NAME section to refer to itself as
     XF86Config-4 instead of XF86Config so that "man XF86Config" brings up the
     section 7 manpage preferentially
   * patch #004,008,046,085: resynced with other patches
 .
   * debian/control:
     - add Build-Dependency on libstdc++5-dev (for libGLU in xlibmesa3-glu)
     - add dependency on debconf to xfree86-common
     - remove dependency on debconf from xbase-clients, xfs, xlibmesa3, and
       xterm (see below)
     - add dependency on xprt-common to xprt, and update its extended
       description to describe its broken state and available alternative
       (thanks, Drew Parsons) (Closes: #170678)
     - C++ ABI 1.02 transition / Mesa 5.0 awareness:
       + xlibmesa3, xlibmesa3-dbg, xlibmesa-dev split into:
         xlibmesa3-gl, xlibmesa3-gl-dbg, xlibmesa-gl-dev,
         xlibmesa3-glu, xlibmesa3-glu-dbg, xlibmesa-glu-dev (Closes: #175157)
       + xlibmesa3-gl conflicts with and provides libgl1 (pure virtual package)
       + xlibmesa3-gl replaces mesag3 and xlibmesa3
       + dropped old replacement of xserver-xfree86 (<< 4.0.2) by xlibmesa3;
         those versions of xserver-xfree86 are long dead and were never part of
         a stable Debian release
       + xlibmesa3-gl-dbg depends on exact same version of xlibmesa3-gl
       + xlibmesa3-gl-dbg conflicts with and replaces xlibmesa3-dbg
       + xlibmesa-gl-dev conflicts with and provides libgl-dev (pure virtual
         package)
       + xlibmesa3-glu conflicts with and provides libglu1 (mixed virtual
         package)
       + xlibmesa3-glu replaces mesag3 (<< 5.0.0-1) and xlibmesa3
       + xlibmesa3-glu-dbg depends on exact same version of xlibmesa3-glu
       + xlibmesa3-glu-dbg conflicts with and replaces xlibmesa3-dbg
       + xlibmesa-glu-dev depends on libstdc++5-dev and libc6-dev | libc-dev
       + xlibmesa-glu-dev conflicts with xlibmesa-dev and libglu-dev (pure
         virtual package)
       + xlibmesa-glu-dev provides libglu-dev (pure virtual package)
       + xlibmesa-glu-dev replaces mesag-dev (<< 5.0.0-1) and xlibmesa-dev
       + dropped dependency on xlibmesa3 from xlibosmesa3 (was redundant
         anyway, shlibs files work fine within the build)
       + added dependency on xlibs-dev to xlibosmesa-dev, since libOSMesa links
         against Xlib and Xext
       + x-window-system-core metapackage depends on xlibmesa3-gl and
         xlibmesa3-glu instead of xlibmesa3
       + xlib*mesa* package descriptions tweaked
     - added xlibmesa3, xlibmesa3-dbg, and xlibmesa-dev pseudopackages
     - added (<< 4.2.1-5) versioning to Conflicts and Replaces relationships on
       old xlibmesa3, xlibmesa3-dbg, and xlibmesa-dev packages
     - added missing versioning (<< 4.0) on xutils's replacement of xlib6g-dev
     - updated extended descriptions of x-window-system{,-core}
     - dropped xlib6g and xlib6g-dev pseudopackages; these packages are now
       completely dead
     - fixed typo in xprt's extended description
     - bump xdm and xfree86-common's versioned dependencies on debconf to >=
       1.2.9 on advice from lintian
     - uncomment call to dh_installinit in binary-indep rule, since
       xfree86-common now has an init script
   * debian/rules: add "-DXnestServer=NO -DXVirtualFramebufferServer=NO
     -DXprtServer=NO" to SERVERDEBUG_IMAKE_DEFINES (thanks, ISHIKAWA Mutsumi)
   * debian/shlibs.local: regenerated from debian/*.shlibs
   * debian/xdm.options: identify correct location of this conffile in comment
   * debian/xdm.options.5: cosmetic and roff-stylistic fixes
   * debian/xfree86-common.init: new init script which runs in runlevel S that
     simply ensures that the X server's Unix domain socket directory exists and
     has proper ownership and modes (N.B., this does not start any processes)
     (Closes: #170638)
   * debian/xfree86-common.{postinst,postrm}.in: invoke update-rc.d and run the
     package's init script on package configuration; invoke update-rc.d on
     package purge
   * debian/xfs.init: when starting the daemon, ensure the font server's socket
     directory exists and has proper ownership and modes
   * debian/xfs.options: identify correct location of this conffile in comment
   * debian/xfs.options.5:
     - identify correct location of the documented conffile (Closes: #170513)
     - cosmetic and roff-stylistic fixes
   * debian/xlibmesa*: debhelper and shlibs files updated to reflect -gl and
     -glu package split
   * debian/xlibs.shlibs: update Xrender dependency info to xlibs to (>>
     4.2.0), since Xrender added symbols between XFree86 4.1.0 and 4.2.0
     (thanks, Eric Dorland) (Closes: #174589)
   * debian/{xbase-clients,xfs,xlibmesa3,xterm}/postinst.in: nuke quaint and
     curious relics of forgotten debconfage (don't source the confmodule since
     we're doing anything debconf-related) (also, remove pointless invocation
     of db_stop in xfs's postinst)
   * debian/xserver-common.files: the dexconf manpage is in section 1, not 8
Files: 
 262e2b8c91276036ab03f0299f866712 1660 x11 optional xfree86_4.2.1-5.dsc
 518a85935ba6677d2ddb9c906a52475a 1430923 x11 optional xfree86_4.2.1-5.diff.gz
 911cc17d6e624b10832b516aee6e0ca2 148434 x11 optional lbxproxy_4.2.1-5_powerpc.deb
 9bb9a9b9e0f0e49f22a5082e10665eb9 193480 libs optional libdps1_4.2.1-5_powerpc.deb
 2950ab6eb0f97ea6cc034027fb4a30bb 717464 devel extra libdps1-dbg_4.2.1-5_powerpc.deb
 77befe6820b92946ea5050b0cfac5686 263892 devel optional libdps-dev_4.2.1-5_powerpc.deb
 b170961cbf02a5e0acf3fc5e4cd8e5b2 185486 libs optional libxaw6_4.2.1-5_powerpc.deb
 acb2dfa52bfd1fac9bf93f156c006451 859750 devel extra libxaw6-dbg_4.2.1-5_powerpc.deb
 e4bc5f4fd538ac306b909b5228335277 343358 devel extra libxaw6-dev_4.2.1-5_powerpc.deb
 54c9a9f6a4440775bc7bb006a1b9fffe 241786 libs optional libxaw7_4.2.1-5_powerpc.deb
 8ac7bee88d027d4be019b21cde562694 1014886 devel extra libxaw7-dbg_4.2.1-5_powerpc.deb
 517224a96d2747e2349709c677d04e39 343240 devel optional libxaw7-dev_4.2.1-5_powerpc.deb
 47ecb2fad42373737f51e8521bc19983 80172 x11 optional proxymngr_4.2.1-5_powerpc.deb
 99a3a0a98169a9b7ea44ba5778a899f1 166664 x11 optional twm_4.2.1-5_powerpc.deb
 7da5c07044e3ee1a06058a4322fa5fad 1743538 x11 optional xbase-clients_4.2.1-5_powerpc.deb
 f18a6452d5e6317352b784985d28a0fb 182774 x11 optional xdm_4.2.1-5_powerpc.deb
 c396eafa1ad637f798271087fc57f2a3 322402 x11 optional xfs_4.2.1-5_powerpc.deb
 edf757f04b38d1f97ad9e95a1ff55744 84784 x11 optional xfwp_4.2.1-5_powerpc.deb
 40ac9c0af417e7692c945d23ffb1e716 2292738 libs optional xlibmesa3-gl_4.2.1-5_powerpc.deb
 15cf1353a4914876515ecf013bd4e6f7 1035208 devel extra xlibmesa3-gl-dbg_4.2.1-5_powerpc.deb
 ccef8984c37b5d21ae13f42e13e2b4a0 576294 devel optional xlibmesa-gl-dev_4.2.1-5_powerpc.deb
 b37eed34cbef8719df4b01199df58b0b 272462 libs optional xlibmesa3-glu_4.2.1-5_powerpc.deb
 4a08d337a62cfa0a09876da57de36147 1043870 devel extra xlibmesa3-glu-dbg_4.2.1-5_powerpc.deb
 f6aea577518fc5b9a1c40636e9073c64 373922 devel optional xlibmesa-glu-dev_4.2.1-5_powerpc.deb
 a447e76faedb97b54df4ce54984ccdfc 550178 libs optional xlibosmesa3_4.2.1-5_powerpc.deb
 19b3cd5871d8189c5170a4a4341448a9 2846752 devel extra xlibosmesa3-dbg_4.2.1-5_powerpc.deb
 5ae20f610053f9a8b610d10be94b18e5 652772 devel optional xlibosmesa-dev_4.2.1-5_powerpc.deb
 989c900c5b7080f657b2c206bdae1c2e 1352234 libs optional xlibs_4.2.1-5_powerpc.deb
 e974d7caef0e8618e7d7a305fe7b6d80 15333094 devel extra xlibs-dbg_4.2.1-5_powerpc.deb
 7360c89e878da97716ac3cc18e78cef7 2875654 devel optional xlibs-dev_4.2.1-5_powerpc.deb
 f7d782f8311d37223f647aa160e02f40 110968 devel optional xlibs-pic_4.2.1-5_powerpc.deb
 7ab5c02630d4659eeaddb23518ea453f 134864 mail extra xmh_4.2.1-5_powerpc.deb
 8a2b7c89e3b2b5b3d749e96d16b2bc79 1332334 x11 optional xnest_4.2.1-5_powerpc.deb
 1cfda57b7e10697f381fd64f00d196ab 1012250 x11 optional xprt_4.2.1-5_powerpc.deb
 b921e2d414c676ffab4c281a9fb34384 223372 x11 optional xserver-common_4.2.1-5_powerpc.deb
 b2f2b265fc6a9a7b2ac2111c76d44369 4396216 x11 optional xserver-xfree86_4.2.1-5_powerpc.deb
 f802c3ccd34ba877f3d98b78c19797bc 36620130 x11 optional xserver-xfree86-dbg_4.2.1-5_powerpc.deb
 62ed1002cdb9af27b9c9b846b4ae48ed 512944 x11 optional xterm_4.2.1-5_powerpc.deb
 4608b9d26b63334b0ec2848c1e147a1b 663934 x11 optional xutils_4.2.1-5_powerpc.deb
 282ab4d6c02f944d76b21bf3fd737c57 1472384 x11 optional xvfb_4.2.1-5_powerpc.deb
 e8450432a734c798f45b4b42e008dd50 60706 x11 optional x-window-system-core_4.2.1-5_powerpc.deb
 20c3e39989577f593122d62356c56192 4442876 x11 optional xfonts-100dpi_4.2.1-5_all.deb
 bfa236eec3d47181f9f1229ac0f68252 8333920 x11 optional xfonts-100dpi-transcoded_4.2.1-5_all.deb
 d05ed43491e8653fa7bb4a22d65d2485 3932088 x11 optional xfonts-75dpi_4.2.1-5_all.deb
 56bd96e403071fb9c3cf008142445de9 7226022 x11 optional xfonts-75dpi-transcoded_4.2.1-5_all.deb
 74ef30055fe550a90a0d07be917a38ed 5061738 x11 optional xfonts-base_4.2.1-5_all.deb
 555a908f6e5bf1fe1b2f251ee2882040 1105728 x11 optional xfonts-base-transcoded_4.2.1-5_all.deb
 5740f65ccbb74e0705cdc630af8ce68a 438878 x11 optional xfonts-cyrillic_4.2.1-5_all.deb
 28d06e5e6743dd18dc84ef976c777102 796862 x11 optional xfonts-scalable_4.2.1-5_all.deb
 2cf8bec49593f6e8be506dc519fa03db 607158 x11 optional xfree86-common_4.2.1-5_all.deb
 7aa912a4e5c762970ce87e8df47051b7 4261566 x11 optional xspecs_4.2.1-5_all.deb
 d7eeb28dc16da4df49de55fcf11f5361 60530 x11 optional x-window-system_4.2.1-5_all.deb
 dfb97ca7ca06cc4072151bfe781379b7 60692 libs optional xlib6g_4.2.1-5_all.deb
 c124d76da2463717afc33ad1d9240faa 60490 devel optional xlib6g-dev_4.2.1-5_all.deb
 09faf51f7bdfdbcf62189f7e34ce3ba5 60458 libs optional xlibmesa3_4.2.1-5_all.deb
 1b3984b75ed0a8a60368b859240f4e97 60494 devel extra xlibmesa3-dbg_4.2.1-5_all.deb
 9fa3df1a63f223b44ce7fb52a17d3531 60476 devel optional xlibmesa-dev_4.2.1-5_all.deb

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

iEYEARECAAYFAj4tyyYACgkQ6kxmHytGonzOMwCeOClQyJGB3bGD3ffUfZZY/qTh
A10AnRof5AXvCfB8lwZXI1dFgQuOxheM
=67vI
-----END PGP SIGNATURE-----




Reply to: