Bug#332566: workaround

2005-10-08 Thread Mark Robinson
Folks with systems broken by this may get back on the road by removing 
xserver-common and reinstalling the old xserver-xfree86 and xserver-common 
using dpkg -i, perhaps with suitable --force options.


The old packages are gone from the main archive, but can still be wgot from

ftp://debian.paradise.net.nz/debian/pool/main/x/xfree86/xserver-common_4.3.0.dfsg.1-14_i386.deb
ftp://debian.paradise.net.nz/debian/pool/main/x/xfree86/xserver-xfree86_4.3.0.dfsg.1-14_i386.deb

being a mirror which seems to have a broken updating system.


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#318425: Debian Bug: nothing forces xserver-xfree86 - xserver-xorg

2005-10-08 Thread Andur
Hi,

I update my Debian Sid more or less daily, and this week I got hit by
this bug. After updating with synaptic and rebooting, kdm wouldn't
start. Trying to startx would give the message  /etc/X11/X is not
executable. Following the symlinks showed that, indeed, I was missing
a xserver package. After installing xserver-xorg everything went fine,
of course. Maybe your fix didn't arrive to the finnish mirror in time
:-)

Anyway, thanks for fixing this, I do believe it's an important bug. I
do have apt-listbugs installed to catch things like this one, but this
time it didn't report anything about the X upgrade of this week...
odd.

I installed the x-window-system-core metapackage that I was missing,
just in case ;-) Keep up the good work with Debian.



Iago Andûr García



Bug#332753: xlibmesa-gl-dev: cannot link OpenGL app: /usr/bin/ld: cannot find -lGL

2005-10-08 Thread Andre Heynatz
Package: xlibmesa-gl-dev
Version: 6.8.2.dfsg.1-8
Severity: grave
Tags: patch
Justification: renders package unusable

I tried to compile lesson02 from the NeHe OpenGL Tutorial (SDL GLX variant):

$ make
gcc -Wall -ansi lesson02.c -o lesson02 `sdl-config --cflags --libs` -lGL -lGLU
/usr/bin/ld: cannot find -lGL
collect2: ld returned 1 exit status

Looking closer at the problem:

gcc -Wall -ansi lesson02.c -o lesson02 -Wl,--verbose `sdl-config --cflags 
--libs` -lGL -lGLU

attempt to open /usr/lib/libGL.so failed
attempt to open /usr/lib/libGL.a failed
attempt to open /usr/lib/gcc/i486-linux-gnu/4.0.2/libGL.so failed
attempt to open /usr/lib/gcc/i486-linux-gnu/4.0.2/libGL.a failed
attempt to open /usr/lib/gcc/i486-linux-gnu/4.0.2/libGL.so failed
attempt to open /usr/lib/gcc/i486-linux-gnu/4.0.2/libGL.a failed
d
attempt to open /usr/lib/gcc/i4/usr/bin/ld: cannot find -lGL


GNU ld obviously expects from a shared object that a filename ending with '.so' 
is 
provided, without version information. Often, this is a symlink. Here is what I 
have done 
to fix the problem:

$ su
# cd /usr/lib
# ln -s libGL.so.1 libGL.so
# ldconfig

It should be possible to compile OpenGL programs out of the box, even if the 
patch above 
is simple.

Andre Heynatz

-- 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.13.2
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages xlibmesa-gl-dev depends on:
ii  libc6-dev [libc-dev]  2.3.5-6GNU C Library: Development Librari
ii  libx11-dev6.8.2.dfsg.1-8 X Window System protocol client li
ii  libxext-dev   6.8.2.dfsg.1-8 X Window System miscellaneous exte
ii  x-dev 6.8.2.dfsg.1-8 X protocol development files
ii  xlibmesa-gl   6.8.2.dfsg.1-8 Mesa 3D graphics library [X.Org]

xlibmesa-gl-dev recommends no packages.

-- no debconf information


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#330968: Resolved my problem

2005-10-08 Thread Riccardo Brigo
I solved my problem with xorg: it was indeed a bug in radeon driver, and
I've verified that it's present both in unstable and experimental
sources, but it should affect only people using radeon driver *with
disabled acceleration*, which seems to be unrelated to the original
notification.

If anyone has the possibility to debug its xserver and reproduce the
segfault, the bug I found is in the function RADEONSetPortAttribute
(file xc/programs/Xserver/hw/xfree86/driver/ati/radeon_video.c).

The first statement reads:

info-accel-Sync(pScrn);

and should be modified into:

if (info-accelOn) info-accel-Sync(pScrn);

as info-accel, when info-accelOn is false, can be NULL or unmeaningful.
-- 
Riccardo Brigo
Scuola Superiore Sant'Anna - Pisa

PGP Key available at http://pgp.mit.edu
KEY FINGERPRINT: EB67 18FE 8891 5A19 B886  E6E0 6DDC 47EF E0FC 2681


signature.asc
Description: OpenPGP digital signature


Re: X.Org 6.9 Needs Your Build Logs!

2005-10-08 Thread Julien Cristau
On Sat, Oct  8, 2005 at 00:25:57 +0200, Falk Hueffner wrote:

 Julien Cristau [EMAIL PROTECTED] writes:
 
  I just tried to build xorg-x11 from current svn on alpha.
  It failed in xc/lib/GL/mesa/drivers/dri/r128/r128_ioctl.c, with what
  looks like a missing #include somewhere. I don't have the time to
  investigate right now, but will look into it next week if noone does it
  first.
  Build log is available at
  http://perso.ens-lyon.fr/julien.cristau/xorg-x11_6.8.99.900_alpha.log.
 
 Where can this be obtained? I can only find 6.8.2.dfsg.1-8+SVN.
 
Either get the xorg-x11 source package from experimental, or run svn
export svn://necrotic.deadbeast.net/xorg-x11/branches/6.9
xorg-x11-6.8.99.900.dfsg.1.

Cheers,
Julien Cristau


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#332839: xorg-x11: FTBFS on amd64: manifest changed.

2005-10-08 Thread Kurt Roeckx
Package: xorg-x11
Version: 6.8.99.900.dfsg.1-0pre1
Severity: important
Tags: experimental

Hi,

Your package is failing to build on amd64 because the manifest
changed.  Please find the diff attached.

The new file seems to look alot like the MANIFEST.i386.in file,
and I guess that changed in the last upload?


Kurt

--- debian/MANIFEST.amd64   2005-10-08 23:13:02.0 +0200
+++ debian/MANIFEST.amd64.new   2005-10-08 23:13:02.0 +0200
@@ -18,2 +17,0 @@
-etc/X11/app-defaults/KOI8RXTerm
-etc/X11/app-defaults/UXTerm
@@ -34,2 +31,0 @@
-etc/X11/app-defaults/XTerm
-etc/X11/app-defaults/XTerm-color
@@ -455 +450,0 @@
-usr/X11R6/bin/Xorg-debug
@@ -470,2 +464,0 @@
-usr/X11R6/bin/dpsexec
-usr/X11R6/bin/dpsinfo
@@ -485 +477,0 @@
-usr/X11R6/bin/koi8rxterm
@@ -490 +481,0 @@
-usr/X11R6/bin/lxterm
@@ -493 +483,0 @@
-usr/X11R6/bin/makepsres
@@ -504,0 +495 @@
+usr/X11R6/bin/pclcomp
@@ -506,2 +496,0 @@
-usr/X11R6/bin/pswrap
-usr/X11R6/bin/resize
@@ -520 +508,0 @@
-usr/X11R6/bin/texteroids
@@ -523 +510,0 @@
-usr/X11R6/bin/uxterm
@@ -528,0 +516 @@
+usr/X11R6/bin/xauth_switch_to_sun-des-1
@@ -536,0 +525 @@
+usr/X11R6/bin/xdbedizzy
@@ -539,0 +529 @@
+usr/X11R6/bin/xdpr
@@ -577,0 +568 @@
+usr/X11R6/bin/xpr
@@ -591 +581,0 @@
-usr/X11R6/bin/xterm
@@ -604,26 +593,0 @@
-usr/X11R6/include/DPS/ColorSB.h
-usr/X11R6/include/DPS/ColorSBP.h
-usr/X11R6/include/DPS/DPSScrollW.h
-usr/X11R6/include/DPS/DPSScrollWP.h
-usr/X11R6/include/DPS/FontCreatP.h
-usr/X11R6/include/DPS/FontCreato.h
-usr/X11R6/include/DPS/FontSB.h
-usr/X11R6/include/DPS/FontSBP.h
-usr/X11R6/include/DPS/FontSamplP.h
-usr/X11R6/include/DPS/FontSample.h
-usr/X11R6/include/DPS/PSres.h
-usr/X11R6/include/DPS/XDPS.h
-usr/X11R6/include/DPS/XDPSlib.h
-usr/X11R6/include/DPS/XDPSproto.h
-usr/X11R6/include/DPS/dpsNXargs.h
-usr/X11R6/include/DPS/dpsXclient.h
-usr/X11R6/include/DPS/dpsXcommon.h
-usr/X11R6/include/DPS/dpsXpreview.h
-usr/X11R6/include/DPS/dpsXshare.h
-usr/X11R6/include/DPS/dpsXuserpath.h
-usr/X11R6/include/DPS/dpsclient.h
-usr/X11R6/include/DPS/dpsconfig.h
-usr/X11R6/include/DPS/dpsexcept.h
-usr/X11R6/include/DPS/dpsfriends.h
-usr/X11R6/include/DPS/dpsops.h
-usr/X11R6/include/DPS/psops.h
@@ -643,0 +608 @@
+usr/X11R6/include/X11/CallbackI.h
@@ -647,0 +613 @@
+usr/X11R6/include/X11/ConvertI.h
@@ -649,0 +616 @@
+usr/X11R6/include/X11/CreateI.h
@@ -650,0 +618 @@
+usr/X11R6/include/X11/EventI.h
@@ -651,0 +620 @@
+usr/X11R6/include/X11/HookObjI.h
@@ -657,0 +627,2 @@
+usr/X11R6/include/X11/ImUtil.h
+usr/X11R6/include/X11/InitialI.h
@@ -658,0 +630 @@
+usr/X11R6/include/X11/IntrinsicI.h
@@ -663,0 +636 @@
+usr/X11R6/include/X11/PassivGraI.h
@@ -665,0 +639 @@
+usr/X11R6/include/X11/ResourceI.h
@@ -668,0 +643 @@
+usr/X11R6/include/X11/SelectionI.h
@@ -669,0 +645 @@
+usr/X11R6/include/X11/ShellI.h
@@ -672,0 +649,3 @@
+usr/X11R6/include/X11/ThreadsI.h
+usr/X11R6/include/X11/TranslateI.h
+usr/X11R6/include/X11/VarargsI.h
@@ -762,0 +742 @@
+usr/X11R6/include/X11/XlibConf.h
@@ -795,0 +776 @@
+usr/X11R6/include/X11/Xregion.h
@@ -981,0 +963 @@
+usr/X11R6/include/X11/extensions/vldXvMC.h
@@ -1009,0 +992,7 @@
+usr/X11R6/include/X11/fonts/bdfint.h
+usr/X11R6/include/X11/fonts/bitmap.h
+usr/X11R6/include/X11/fonts/bufio.h
+usr/X11R6/include/X11/fonts/fntfil.h
+usr/X11R6/include/X11/fonts/fntfilio.h
+usr/X11R6/include/X11/fonts/fntfilst.h
+usr/X11R6/include/X11/fonts/font.h
@@ -1010,0 +1000,7 @@
+usr/X11R6/include/X11/fonts/fontencc.h
+usr/X11R6/include/X11/fonts/fontmisc.h
+usr/X11R6/include/X11/fonts/fontmod.h
+usr/X11R6/include/X11/fonts/fontshow.h
+usr/X11R6/include/X11/fonts/fontstruct.h
+usr/X11R6/include/X11/fonts/fontutil.h
+usr/X11R6/include/X11/fonts/fontxlfd.h
@@ -1011,0 +1008 @@
+usr/X11R6/include/X11/fonts/pcf.h
@@ -1013,0 +1011,2 @@
+usr/X11R6/include/X11/misc.h
+usr/X11R6/include/X11/os.h
@@ -1028,0 +1028 @@
+usr/X11R6/lib/X11/config/DragonFly.cf
@@ -1087,0 +1088,3 @@
+usr/X11R6/lib/X11/config/mingw.cf
+usr/X11R6/lib/X11/config/mingw.rules
+usr/X11R6/lib/X11/config/mingw.tmpl
@@ -1175,2 +1177,0 @@
-usr/X11R6/lib/X11/etc/xterm.termcap
-usr/X11R6/lib/X11/etc/xterm.terminfo
@@ -1449,0 +1451,3 @@
+usr/X11R6/lib/X11/locale/zh_CN.gb18030/Compose
+usr/X11R6/lib/X11/locale/zh_CN.gb18030/XI18N_OBJS
+usr/X11R6/lib/X11/locale/zh_CN.gb18030/XLC_LOCALE
@@ -1455,0 +1460,4 @@
+usr/X11R6/lib/X11/locale/zh_HK.UTF-8/XI18N_OBJS
+usr/X11R6/lib/X11/locale/zh_HK.UTF-8/XLC_LOCALE
+usr/X11R6/lib/X11/locale/zh_HK.big5/Compose
+usr/X11R6/lib/X11/locale/zh_HK.big5/XI18N_OBJS
@@ -1456,0 +1465 @@
+usr/X11R6/lib/X11/locale/zh_HK.big5hkscs/Compose
@@ -1487,0 +1497 @@
+usr/X11R6/lib/X11/xorg.conf.eg
@@ -1499 +1509 @@
-usr/X11R6/lib/libICE.so.6.3
+usr/X11R6/lib/libICE.so.6.4
@@ -1558,0 +1569,2 @@
+usr/X11R6/lib/libXvMCW.a
+usr/X11R6/lib/libXvMCW.so.1.0
@@ -1569,4 +1580,0 @@
-usr/X11R6/lib/libdps.a
-usr/X11R6/lib/libdps.so.1.0
-usr/X11R6/lib/libdpstk.a
-usr/X11R6/lib/libdpstk.so.1.0
@@ -1576,2 +1584,4 @@
-usr/X11R6/lib/libpsres.a
-usr/X11R6/lib/libpsres.so.1.0
+usr/X11R6/lib/libviaXvMC.a