CVS Update: xc (branch: trunk)

2002-12-21 Thread David Dawes
CVSROOT:/home/x-cvs
Module name:xc
Changes by: [EMAIL PROTECTED]   02/12/21 09:02:17

Log message:
  Comment out some debug prints (resync with DRI mesa-4-0-4-branch).

Modified files:
  xc/lib/GL/mesa/src/drv/radeon/:
radeon_vtxfmt.h radeon_vtxfmt_x86.c 
  
  Revision  ChangesPath
  1.3   +8 -8  xc/lib/GL/mesa/src/drv/radeon/radeon_vtxfmt.h
  1.2   +2 -2  xc/lib/GL/mesa/src/drv/radeon/radeon_vtxfmt_x86.c

___
Cvs-commit mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/cvs-commit



CVS Update: xc (branch: trunk)

2002-12-21 Thread David Dawes
CVSROOT:/home/x-cvs
Module name:xc
Changes by: [EMAIL PROTECTED]   02/12/21 09:14:58

Log message:
  minor cosmetic updates

Modified files:
  xc/lib/GL/mesa/src/drv/i830/:
i830_context.c i830_context.h 
  xc/programs/Xserver/hw/xfree86/drivers/i810/:
i830_driver.c 
  
  Revision  ChangesPath
  1.7   +3 -3  xc/lib/GL/mesa/src/drv/i830/i830_context.c
  1.5   +1 -3  xc/lib/GL/mesa/src/drv/i830/i830_context.h
  1.24  +14 -1 xc/programs/Xserver/hw/xfree86/drivers/i810/i830_driver.c

___
Cvs-commit mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/cvs-commit



CVS Update: xc (branch: trunk)

2002-12-21 Thread Paulo Cesar Pereira de Andrade
CVSROOT:/home/x-cvs
Module name:xc
Changes by: [EMAIL PROTECTED]   02/12/21 10:49:04

Log message:
   680. Correct problem when the server prints the name of a 'private
xkb action' in a format that xkbcomp cannot understand, and
was causing problems when calling XkbGetKeyboard (Ivan Pascal).
  
Message from Ivan Pascal describing the problem below:
  --
   Hi,
  
 But there is yet another (probably) simple problem that I have noticed,
   and just did patches to not allow xf86cfg to crash, when it starts, it
   tries to load the current xkb configuration, in previous versions of
   XFree86 the current code in
   xc/programs/Xserver/hw/xfree86/xf86cfg/keywboard-cfg.c:InitializeKeyboard()
   was working fine, but now it always timeouts (actually, the timeout
   check and several tries was added because an already resolved problem
   with signals and interrupted reads when forking the Xserver to call
   xkbcomp).
  
Fortunatly it was a simple bug.
  The thing is when you call XkbGetKeyboard the server converts a current
  xkb description to the text form, calls the xkbcomp and feeds it with this
  text, reads an XKM format file that the xkbcomp produces and finally sends
  this data to application.  (I didn't know it is so complicated. I thought
  the server simply sends its internal structures. :( )
The problem is (was) there are some bugs in the procedures which write
  the xkb format file.  And in some case they produce the text that the xkbcomp
  can't understand. (I say 'bugs' becouse I suspect there are some other besides
  one I caught.)
In problem you describe the bug is a printing the name of 'the private xkb
  action'.  As you know there are xkb actions recently added for server actions
  such as a VT mode switching.  And in original files they looks like
Private(type=0x86, data=...)
  and it is the form that the xkbcomp understands.
But the 'reverse procudures' print it as
0x86(type=0x86, data[0]=...)
  As the result the xkbcomp can't read the text description, doesn't produce
  the XKM file and the XkbGetKeyboard procedure fails.
  
I attached a patch.  As you can see it is simplest. :)
  --
   Ivan U. Pascal |   e-mail: [EMAIL PROTECTED]
 Administrator of |   Tomsk State University
   University Network |   Tomsk, Russia
  --
Thanks to Ivan Pascal for fixing this problem.

Modified files:
  xc/lib/xkbfile/:
xkbtext.c 
  xc/programs/Xserver/hw/xfree86/:
CHANGELOG 
  
  Revision  ChangesPath
  3.11  +1 -1  xc/lib/xkbfile/xkbtext.c
  3.2459+4 -1  xc/programs/Xserver/hw/xfree86/CHANGELOG

___
Cvs-commit mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/cvs-commit



CVS Update: www (branch: trunk)

2002-12-21 Thread Georgina Economou
CVSROOT:/home/x-cvs
Module name:www
Changes by: [EMAIL PROTECTED]  02/12/21 16:23:48

Log message:
  Clarification

Modified files:
  ./:
support.html 
  
  Revision  ChangesPath
  1.32  +1 -1  www/support.html

___
Cvs-commit mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/cvs-commit



CVS Update: xc (branch: trunk)

2002-12-21 Thread David Dawes
CVSROOT:/home/x-cvs
Module name:xc
Changes by: [EMAIL PROTECTED]   02/12/21 16:46:54

Log message:
   682. Add a request to XFree86-VidModeExtension to get the read/write
permissions so that clients can check if they have permission to
change parameters (David Dawes).
   681. Fix read-only XFree86-VidModeExtension requests for remote connections
(David Dawes, reported by Jamie Zawinski).
  + minor extension man page updates

Modified files:
  xc/include/extensions/:
xf86vmode.h xf86vmstr.h 
  xc/lib/X11/:
XErrorDB 
  xc/lib/Xxf86vm/:
XF86VMode.c 
  xc/programs/Xserver/Xext/:
xf86vmode.c 
  xc/programs/Xserver/hw/xfree86/:
CHANGELOG 
  xc/programs/Xserver/hw/xfree86/doc/man/:
Imakefile XF86DGA.man XF86Misc.man XF86VM.man 
  
  Revision  ChangesPath
  3.31  +10 -1 xc/include/extensions/xf86vmode.h
  3.28  +19 -3 xc/include/extensions/xf86vmstr.h
  3.41  +2 -1  xc/lib/X11/XErrorDB
  3.34  +31 -1 xc/lib/Xxf86vm/XF86VMode.c
  3.54  +74 -30xc/programs/Xserver/Xext/xf86vmode.c
  3.2460+6 -1  xc/programs/Xserver/hw/xfree86/CHANGELOG
  3.8   +2 -2  xc/programs/Xserver/hw/xfree86/doc/man/Imakefile
  3.9   +2 -2  xc/programs/Xserver/hw/xfree86/doc/man/XF86DGA.man
  3.12  +2 -2  xc/programs/Xserver/hw/xfree86/doc/man/XF86Misc.man
  3.12  +7 -5  xc/programs/Xserver/hw/xfree86/doc/man/XF86VM.man

___
Cvs-commit mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/cvs-commit



CVS Update: xc (branch: trunk)

2002-12-21 Thread David Dawes
CVSROOT:/home/x-cvs
Module name:xc
Changes by: [EMAIL PROTECTED]   02/12/21 17:49:36

Log message:
  First cut at bindist/install script updates.

Modified files:
  xc/programs/Xserver/hw/xfree86/etc/:
Xinstall.sh 
  xc/programs/Xserver/hw/xfree86/etc/bindist/Cygwin/:
bin-list etc-dir etc-list 
  xc/programs/Xserver/hw/xfree86/etc/bindist/Darwin-ix86/:
bin-list etc-dir etc-list 
  xc/programs/Xserver/hw/xfree86/etc/bindist/Darwin-ppc/:
bin-list etc-dir etc-list 
  xc/programs/Xserver/hw/xfree86/etc/bindist/FreeBSD/:
bin-list etc-dir etc-list 
  xc/programs/Xserver/hw/xfree86/etc/bindist/FreeBSD-aout/:
bin-list etc-dir etc-list 
  xc/programs/Xserver/hw/xfree86/etc/bindist/Interactive/:
etc-dir etc-list 
  xc/programs/Xserver/hw/xfree86/etc/bindist/Linux-axp/:
bin-list etc-dir etc-list 
  xc/programs/Xserver/hw/xfree86/etc/bindist/Linux-ix86/:
bin-list etc-dir etc-list 
  xc/programs/Xserver/hw/xfree86/etc/bindist/Linux-m68k/:
bin-list etc-dir etc-list 
  xc/programs/Xserver/hw/xfree86/etc/bindist/Linux-mips/:
bin-list etc-dir etc-list 
  xc/programs/Xserver/hw/xfree86/etc/bindist/Linux-ppc/:
bin-list etc-dir etc-list 
  xc/programs/Xserver/hw/xfree86/etc/bindist/LynxOS/:
etc-dir etc-list 
  xc/programs/Xserver/hw/xfree86/etc/bindist/NetBSD-aout-ix86/:
bin-list etc-dir etc-list 
  xc/programs/Xserver/hw/xfree86/etc/bindist/NetBSD-ix86/:
bin-list etc-dir etc-list 
  xc/programs/Xserver/hw/xfree86/etc/bindist/OpenBSD-ix86/:
bin-list etc-dir etc-list 
  xc/programs/Xserver/hw/xfree86/etc/bindist/SVR4.0/:
bin-list etc-dir etc-list 
  xc/programs/Xserver/hw/xfree86/etc/bindist/Solaris/:
bin-list etc-dir etc-list 
  xc/programs/Xserver/hw/xfree86/etc/bindist/UnixWare/:
bin-list etc-dir etc-list 
  
  Revision  ChangesPath
  1.40  +77 -34xc/programs/Xserver/hw/xfree86/etc/Xinstall.sh
  1.2   +3 -0  xc/programs/Xserver/hw/xfree86/etc/bindist/Cygwin/bin-list
  1.2   +1 -1  xc/programs/Xserver/hw/xfree86/etc/bindist/Cygwin/etc-dir
  1.2   +2 -1  xc/programs/Xserver/hw/xfree86/etc/bindist/Cygwin/etc-list
  1.7   +18 -4 
xc/programs/Xserver/hw/xfree86/etc/bindist/Darwin-ix86/bin-list
  1.2   +1 -1  
xc/programs/Xserver/hw/xfree86/etc/bindist/Darwin-ix86/etc-dir
  1.2   +2 -1  
xc/programs/Xserver/hw/xfree86/etc/bindist/Darwin-ix86/etc-list
  1.7   +18 -4 
xc/programs/Xserver/hw/xfree86/etc/bindist/Darwin-ppc/bin-list
  1.2   +1 -1  
xc/programs/Xserver/hw/xfree86/etc/bindist/Darwin-ppc/etc-dir
  1.2   +2 -1  
xc/programs/Xserver/hw/xfree86/etc/bindist/Darwin-ppc/etc-list
  1.14  +12 -3 xc/programs/Xserver/hw/xfree86/etc/bindist/FreeBSD/bin-list
  1.3   +1 -1  xc/programs/Xserver/hw/xfree86/etc/bindist/FreeBSD/etc-dir
  1.4   +2 -1  xc/programs/Xserver/hw/xfree86/etc/bindist/FreeBSD/etc-list
  1.12  +8 -3  
xc/programs/Xserver/hw/xfree86/etc/bindist/FreeBSD-aout/bin-list
  1.2   +1 -1  
xc/programs/Xserver/hw/xfree86/etc/bindist/FreeBSD-aout/etc-dir
  1.2   +2 -1  
xc/programs/Xserver/hw/xfree86/etc/bindist/FreeBSD-aout/etc-list
  1.3   +1 -1  
xc/programs/Xserver/hw/xfree86/etc/bindist/Interactive/etc-dir
  1.3   +2 -1  
xc/programs/Xserver/hw/xfree86/etc/bindist/Interactive/etc-list
  1.13  +20 -6 
xc/programs/Xserver/hw/xfree86/etc/bindist/Linux-axp/bin-list
  1.2   +1 -1  xc/programs/Xserver/hw/xfree86/etc/bindist/Linux-axp/etc-dir
  1.2   +2 -1  
xc/programs/Xserver/hw/xfree86/etc/bindist/Linux-axp/etc-list
  1.13  +20 -6 
xc/programs/Xserver/hw/xfree86/etc/bindist/Linux-ix86/bin-list
  1.2   +1 -1  
xc/programs/Xserver/hw/xfree86/etc/bindist/Linux-ix86/etc-dir
  1.2   +2 -1  
xc/programs/Xserver/hw/xfree86/etc/bindist/Linux-ix86/etc-list
  1.12  +20 -6 
xc/programs/Xserver/hw/xfree86/etc/bindist/Linux-m68k/bin-list
  1.2   +1 -1  
xc/programs/Xserver/hw/xfree86/etc/bindist/Linux-m68k/etc-dir
  1.2   +2 -1  
xc/programs/Xserver/hw/xfree86/etc/bindist/Linux-m68k/etc-list
  1.9   +20 -6 
xc/programs/Xserver/hw/xfree86/etc/bindist/Linux-mips/bin-list
  1.2   +1 -1  
xc/programs/Xserver/hw/xfree86/etc/bindist/Linux-mips/etc-dir
  1.2   +2 -1  
xc/programs/Xserver/hw/xfree86/etc/bindist/Linux-mips/etc-list
  1.9   +20 -6 
xc/programs/Xserver/hw/xfree86/etc/bindist/Linux-ppc/bin-list
  1.2   +1 -1  xc/programs/Xserver/hw/xfree86/etc/bindist/Linux-ppc/etc-dir
  1.2   +2 -1  
xc/programs/Xserver/hw/xfree86/etc/bindist/Linux-ppc/etc-list
  1.2   +1 -1  

CVS Update: xc (branch: trunk)

2002-12-21 Thread David Dawes
CVSROOT:/home/x-cvs
Module name:xc
Changes by: [EMAIL PROTECTED]   02/12/21 17:52:39

Log message:
  bump version to 4.2.99.3

Modified files:
  xc/programs/Xserver/hw/xfree86/:
xf86Version.h 
  
  Revision  ChangesPath
  3.520 +3 -3  xc/programs/Xserver/hw/xfree86/xf86Version.h

___
Cvs-commit mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/cvs-commit



CVS Update: xc (branch: trunk)

2002-12-21 Thread David Dawes
CVSROOT:/home/x-cvs
Module name:xc
Changes by: [EMAIL PROTECTED]   02/12/21 18:03:26

Log message:
  Make sure the minor version of all loader ABIs have been bumped since 4.2.0.

Modified files:
  xc/programs/Xserver/hw/xfree86/common/:
xf86Module.h 
  
  Revision  ChangesPath
  1.35  +4 -4  xc/programs/Xserver/hw/xfree86/common/xf86Module.h

___
Cvs-commit mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/cvs-commit