CVS Update: xc (branch: trunk)

2003-11-03 Thread Alan Hourihane
CVSROOT:/home/x-cvs Module name:xc Changes by: [EMAIL PROTECTED] 03/11/03 06:47:29 Log message: remove CENTER STRETCH options that were never implemented. Modified files: xc/programs/Xserver/hw/xfree86/drivers/i810/: i830_driver.c Revision

CVS Update: xc (branch: trunk)

2003-11-03 Thread Thomas Winischhofer
CVSROOT:/home/x-cvs Module name:xc Changes by: [EMAIL PROTECTED] 03/11/03 09:02:55 Log message: SiS driver: - Allow simultanious SVIDEO + COMPOSITE TV output - Fix HW Cursor on CRT1 in MergedFB mode (work around a hw bug) - Clean up Modified files:

CVS Update: xc (branch: trunk)

2003-11-03 Thread Thomas Winischhofer
CVSROOT:/home/x-cvs Module name:xc Changes by: [EMAIL PROTECTED] 03/11/03 10:05:10 Log message: SiS driver: - Merge one more IRIX build fix I had missed when importing Marc's changes Modified files: xc/programs/Xserver/hw/xfree86/drivers/sis/:

CVS Update: xc (branch: trunk)

2003-11-03 Thread Marc Aurele La France
CVSROOT:/home/x-cvs Module name:xc Changes by: [EMAIL PROTECTED] 03/11/03 14:19:35 Log message: Usused variables Modified files: xc/programs/Xserver/hw/xfree86/drivers/sis/: init301.c sis_vga.c Revision ChangesPath 1.47 +2 -3

CVS Update: xc (branch: trunk)

2003-11-03 Thread Marc Aurele La France
CVSROOT:/home/x-cvs Module name:xc Changes by: [EMAIL PROTECTED] 03/11/03 14:17:22 Log message: Typo Modified files: xc/programs/Xserver/hw/xfree86/drivers/glint/: glint_driver.c Revision ChangesPath 1.163 +2 -2

CVS Update: xc (branch: trunk)

2003-11-03 Thread Torrey T. Lyons
CVSROOT:/home/x-cvs Module name:xc Changes by: [EMAIL PROTECTED] 03/11/03 16:24:36 Log message: Fix building libOSMesa on Darwin. Modified files: xc/programs/Xserver/hw/xfree86/: CHANGELOG xc/lib/GL/mesa/src/OSmesa/: Imakefile

CVS Update: xc (branch: trunk)

2003-11-03 Thread David Dawes
CVSROOT:/home/x-cvs Module name:xc Changes by: [EMAIL PROTECTED] 03/11/03 17:25:32 Log message: Workaround libGLU build problem with default gcc installation on Solaris/x86. Modified files: xc/config/cf/: Imake.tmpl sv4Lib.tmpl svr4.cf Revision

CVS Update: xc (branch: trunk)

2003-11-03 Thread David Dawes
CVSROOT:/home/x-cvs Module name:xc Changes by: [EMAIL PROTECTED] 03/11/03 17:57:21 Log message: FreeBSD 3.x and earlier doesn't have IPv6, although AF_INET6 is defined. Modified files: xc/config/cf/: FreeBSD.cf Revision ChangesPath 3.139

CVS Update: xc (branch: trunk)

2003-11-03 Thread David Dawes
CVSROOT:/home/x-cvs Module name:xc Changes by: [EMAIL PROTECTED] 03/11/03 17:59:32 Log message: - put CplusplusLibC in Imake.tmpl together - remove redundant CplusplusLibC defns in *Lib.tmpl Modified files: xc/config/cf/: Imake.tmpl bsdLib.tmpl

CVS Update: xc (branch: trunk)

2003-11-03 Thread Torrey T. Lyons
CVSROOT:/home/x-cvs Module name:xc Changes by: [EMAIL PROTECTED] 03/11/03 18:47:38 Log message: Fix start up failure on Panther due to bad keymapping file load. Modified files: xc/programs/Xserver/hw/darwin/: darwin.c Revision ChangesPath

CVS Update: xc (branch: trunk)

2003-11-03 Thread Torrey T. Lyons
CVSROOT:/home/x-cvs Module name:xc Changes by: [EMAIL PROTECTED] 03/11/03 18:52:53 Log message: Fix spurious #pragma getting inserted into scripts and man pages on Panther due to rogue cpp-3.3 preprocessor (Martin Costabel). Modified files: xc/config/cf/:

Nvidia driver relation to XFree

2003-11-03 Thread Gerhard W. Gruber
I'm working on a kernel debugger which is similar to SoftICE on WIndows. I would like to take advantage of the graphics mode when a user activates the debugger under X and so I was investigating how to solve this. When I use normal VGA mode it doesn't work on my card when I have X running while a

Re: Nvidia driver relation to XFree

2003-11-03 Thread Torgeir Veimo
On Mon, 2003-11-03 at 16:51, Gerhard W. Gruber wrote: I'm working on a kernel debugger which is similar to SoftICE on WIndows. I would like to take advantage of the graphics mode when a user activates the debugger under X and so I was investigating how to solve this. When I use normal VGA mode

Re: Nvidia driver relation to XFree

2003-11-03 Thread Tim Roberts
On Mon, 03 Nov 2003 17:51:53 +0100, Gerhard W. Gruber wrote: I'm working on a kernel debugger which is similar to SoftICE on WIndows. I would like to take advantage of the graphics mode when a user activates the debugger under X and so I was investigating how to solve this. When I use normal VGA

Re: Nvidia driver relation to XFree

2003-11-03 Thread Gerhard W. Gruber
On Mon, 03 Nov 2003 16:58:10 +, Torgeir Veimo [EMAIL PROTECTED] wrote: You would probably need to use an XFree86 extension. Look at the DGA extension. I don't want to use X itself. I need to use this functionality from within a kernel module, so I don't want to rely on a user space

RE: Nvidia driver relation to XFree

2003-11-03 Thread Rob Taylor
one way to do what you want (from kernel space) is to use the kernel framebuffer driver for writing graphics, and use up one of the VT's for your debugger, switching to that vt when doing, umm, whatever your doing I have to ask tho, whats wrong with kgdb? -Original Message- From:

Re: Nvidia driver relation to XFree

2003-11-03 Thread Gerhard W. Gruber
On Mon, 03 Nov 2003 10:08:37 -0800, Tim Roberts [EMAIL PROTECTED] wrote: The video driver is part of XFree86. I don't think that this is neccessarily true, or is it? I don'tknow how it is for other cards but in case of NVidia you have this kernel module nvidia.o which you need to load and in the

Re: Nvidia driver relation to XFree

2003-11-03 Thread Tim Roberts
On Mon, 03 Nov 2003 19:53:56 +0100, Gerhard W. Gruber wrote: ? On Mon, 03 Nov 2003 10:08:37 -0800, Tim Roberts [EMAIL PROTECTED] wrote: The video driver is part of XFree86. I don't think that this is neccessarily true, or is it? Yes, it is. I don'tknow how it is for other cards but in case of

Re: Nvidia driver relation to XFree

2003-11-03 Thread Thomas Winischhofer
Tim Roberts wrote: NO, NO, NO! EnterVT/LeaveVT do NOT end up in a kernel module! The user-mode driver that is part of XFree86 does ALL of the register manipulation needed to change the video mode in and out of graphics. It's ALL done in the user-mode driver. For those drivers that DO have

Retrieve XScreensaver queries only for a single widget

2003-11-03 Thread Thomas Reitelbach
Hello, i'm fairly new to this list, hopefully i'm not offtopic. Please tell me otherwise :) I try to use the XScreensaver extension for my app. I'd like to hide my application after a while when the user does not interact with my app-widget. Means: If the user does not move the mouse over my

Re: Retrieve XScreensaver queries only for a single widget

2003-11-03 Thread The Rasterman
On Mon, 3 Nov 2003 23:03:34 +0100 Thomas Reitelbach [EMAIL PROTECTED] (Bbabbled: (B (B Hello, (B (B i'm fairly new to this list, hopefully i'm not offtopic. Please tell me (B otherwise :) (B (B I try to use the XScreensaver extension for my app. (B I'd like to hide my application after

Re: Retrieve XScreensaver queries only for a single widget

2003-11-03 Thread Thomas Reitelbach
On Monday 03 November 2003 23:09, Carsten Haitzler wrote: (B On Mon, 3 Nov 2003 23:03:34 +0100 Thomas Reitelbach [EMAIL PROTECTED] (B babbled: (B (B I try to use the XScreensaver extension for my app. (B I'd like to hide my application after a while when the user does not (B interact (B

Re: Nvidia driver relation to XFree

2003-11-03 Thread Mike A. Harris
On Mon, 3 Nov 2003, Tim Roberts wrote: Just noticed a couple of (obviously accidental) inaccuracies which I thought I'd try to clear up a bit as the original poster might be confused a bit from some slightly conflictual statements that are IMHO obvious typo/thinkos. The video driver is part

Does anyone out there use mkxauth at all?

2003-11-03 Thread Mike A. Harris
I'm curious as to wether or not anyone out there uses mkxauth at all out there still. My reason for asking, is that someone here at Red Hat (Jim Knoble) wrote it a long time ago, and we've included it in our distribution for a long time as well, however I'm not sure how many people out there

[Fonts] Ein einmaliges Angebot fur Fonts

2003-11-03 Thread welch
Hallo Fonts ! Heute wollten wir Ihnen eine einmalige Gelegenheit bieten des beste Online-Livecam Angebot anonym und kostenlos zu testen. Seit mehreren Jahren betreiben wir eine kostenpflichtige Seite mit ueber 100 000 Videos, Bilder und Livecams. Ueber 10 000 Dauernutzer nutzen bereits unser

[Fonts] Dunya Turuna Karavan Arkadaþý/Looking for a Caravan Mate For travel

2003-11-03 Thread KaravnalaDünyaTuru/TourByCaravan
Karavan ile Bir DdnyaTuru yapmay planlyorum. Hayalim olan bu Plan birlikte gerekletirmek zere: Bu turu hayal edebilecek kadar hayalgucu, Kalkp baarabilecek kadar cesareti, Zorluklarn gsleyebilecek kadar enerjisi, Bunu yapabilecek kadar zaman Can Dost kavramna inanc ve bu turun masraflarn

Re: [I18n] Using XIM - must give up compose keys

2003-11-03 Thread Phillip Vandry
On Fri, Oct 31, 2003 at 11:06:39PM -0800, Hideki Hiura wrote: Do you specifically want to use XimLocal module and XimProto module at the same time? Or you want the local simple composition IM capability and the remote complex IM capability at the same time? To clarify what I am trying to do:

Re: [I18n] Using XIM - must give up compose keys

2003-11-03 Thread Roger So
On Tue, 2003-11-04 at 03:06, Phillip Vandry wrote: Thank you for the suggestion. I tried to use this but I was hit by a learning curve. I installed Debian packages iiimf-htt-le-canna, iiimf-htt-xbe, and iiimf-htt-server. I modified XI18N_OBJS as you recommended. I never quite figured out how I

[I18n] Dunya Turuna Karavan Arkadaþý/Looking for a Caravan Mate For travel

2003-11-03 Thread KaravnalaDünyaTuru/TourByCaravan
Karavan ile Bir DdnyaTuru yapmay planlyorum. Hayalim olan bu Plan birlikte gerekletirmek zere: Bu turu hayal edebilecek kadar hayalgucu, Kalkp baarabilecek kadar cesareti, Zorluklarn gsleyebilecek kadar enerjisi, Bunu yapabilecek kadar zaman Can Dost kavramna inanc ve bu turun masraflarn

Re: [I18n] Using XIM - must give up compose keys

2003-11-03 Thread Hideki Hiura
From: iscas i18n group [EMAIL PROTECTED] Is That all need to do? Doesn't need something else like a modified version xlib, or some modification on environment variables setting? The mechanism itself is in xiiimp.so, which is a part of what we call IIIMXCF, which is a DL module for Xlib I18N

Re: [I18n] Using XIM - must give up compose keys

2003-11-03 Thread Hideki Hiura
From: Phillip Vandry [EMAIL PROTECTED] I installed Debian packages iiimf-htt-le-canna, iiimf-htt-xbe, and iiimf-htt-server. I modified XI18N_OBJS as you recommended. Sounds good! I never quite figured out how I was supposed to set $XMODIFIERS, What's the value you set while you are

[XFree86] i830 video ram problems

2003-11-03 Thread Kipp Cannon
Hi, This is a request for help with an i830 video interface in a Gateway laptop (Solo 1450). Everything had been working happily in this system until I upgraded my BIOS. This laptop has some power management difficiencies I hoped would be addressed in the BIOS update. Anyway... the BIOS update

[XFree86] (no subject)

2003-11-03 Thread yamada1
___ XFree86 mailing list [EMAIL PROTECTED] http://XFree86.Org/mailman/listinfo/xfree86

[XFree86] Re: i830 video ram problems

2003-11-03 Thread Mike A. Harris
On Mon, 3 Nov 2003, Kipp Cannon wrote: This is a request for help with an i830 video interface in a Gateway laptop (Solo 1450). Everything had been working happily in this system until I upgraded my BIOS. This laptop has some power management difficiencies I hoped would be addressed in the BIOS

[XFree86] *ERROR* Process 15549 using kernel context 0

2003-11-03 Thread Ryan Reich
I'm sure you've seen this one before, but I can't find an answer anywhere. I used to get DRI with my Radeon 7000, but I patched my 2.4.22 kernel with -ck2 and now I get the following message in dmesg: [drm] Initialized radeon 1.7.0 20020828 on minor 0 [drm:radeon_unlock] *ERROR* Process 15549

Re: [XFree86] Misconfigured CardBus bridge message

2003-11-03 Thread Marc Aurele La France
On Fri, 31 Oct 2003, [iso-8859-2] Martin MOKREJ© wrote: using 2.4.23-pre8 kernel and previous versions on ASUS L3800C I'm getting: (II) Module pcidata: vendor=The XFree86 Project compiled for 4.3.0.1, module version = 1.0.0 ABI class: XFree86 Video Driver, version 0.6

[XFree86] Linux PPC Radeon bugs in -14,-15

2003-11-03 Thread Jonathan Hudson
Dear Sirs, Observations on XFree86 4.3.99-15 (Mac Powerbook G4). Radeon 9000 LCD. (Chipset ATI Radeon Mobility 9000 (M9) Lf (AGP) found). Linux 2.4.22, Linux agpgart interface v0.99 (c) Jeff Hartmann agpgart: Maximum main memory to use for agp memory: 440M agpgart: Detected Apple UniNorth 1.5

[XFree86] Nvidia dual head, TV-out

2003-11-03 Thread Hakon Gunsen
Hi! I have a Nvidia Gforce card with dual heads and TV-out. How can I have the video overlay always display on the TV in fullscreen, no matter what's on the desktop monitor? That's how it worked on the Windows operating system, and I would like to use it on Linux too, but without using the Nvidia

[XFree86] Dual-head MGA not working.

2003-11-03 Thread kend
Hi, all. I've got a Debian machine with a G450 in the AGP slot, and another in a PCI slot. (bus 0x0001 cardnum 0x00 function 0x00 and bus 0x0003 cardnum 0x00 function 0x00, respectively). When I try to plug them both into my XF86Config file, though, I get this: (WW) MGA: No matching Device

[XFree86] Dual Head detection

2003-11-03 Thread Yann E. MORIN
Hi! I've got a notebook with second head capability. I managed to have my second head working OK, but I have two layouts in my XF86Config-4, one describing a single head setup, and one the two-head setup. I was wondering if the X server had a way to detect that a second monitor is plugged in or

Re: [XFree86] i830 video ram problems

2003-11-03 Thread Christopher Thom
Quoth Kipp Cannon: This is a request for help with an i830 video interface in a Gateway laptop (Solo 1450). Everything had been working happily in this system until I upgraded my BIOS. This laptop has some power management difficiencies I hoped would be addressed in the BIOS update.

[XFree86] BadAccess errors using XShmPutImage

2003-11-03 Thread Callum Prentice
i'm attempting to put together a simple test that creates a window, allocates a buffer in memory and using an XImage and XShmPutImage () displays it on my screen. i have a tiny piece of code that (as far as i know) does all the right things - it creates the window but when i try to display the

[XFree86] BadAccess errors using XShmPutImage

2003-11-03 Thread Callum Prentice
i'm attempting to put together a simple test that creates a window, allocates a buffer in memory and using an XImage and XShmPutImage () displays it on my screen. i have a tiny piece of code that (as far as i know) does all the right things - it creates the window but when i try to display the

Re: [XFree86] Nvidia dual head, TV-out

2003-11-03 Thread Mark Vojkovich
On Mon, 3 Nov 2003, Hakon Gunsen wrote: Hi! I have a Nvidia Gforce card with dual heads and TV-out. How can I have the video overlay always display on the TV in fullscreen, no matter what's on the desktop monitor? That's how it worked on the Windows operating system, and I would like to use

Re: [XFree86] BadAccess errors using XShmPutImage

2003-11-03 Thread Mark Vojkovich
1) Does your X-server have SHM support? MIT-SHM should show up in the list of extensions reported by xdpyinfo. 2) Does your operating system have SHM support? This sort of thing is often disabled for security reasons. 3) Programming errors on your part? BadAccess is generated

Re: [XFree86] BadAccess errors using XShmPutImage

2003-11-03 Thread Callum Prentice
1) Does your X-server have SHM support? MIT-SHM should show up in the list of extensions reported by xdpyinfo. Yep - that extension is listed when i run xdpyinfo. 2) Does your operating system have SHM support? This sort of thing is often disabled for security reasons. i'm

Re: [XFree86] BadAccess errors using XShmPutImage

2003-11-03 Thread Mark Vojkovich
It's likely that you're not handling the padding correctly. Is (ximage-bytes_per_line == windowWidth * windowDepthBytes) ? In general, I like to create the XImage first and then allocate the data later. That saves you from having to do the work of finding out what the padding is supposed

[XFree86] Dunya Turuna Karavan Arkadaþý/Looking for a Caravan Mate For travel

2003-11-03 Thread KaravnalaDünyaTuru/TourByCaravan
Karavan ile Bir DdnyaTuru yapmay planlyorum. Hayalim olan bu Plan birlikte gerekletirmek zere: Bu turu hayal edebilecek kadar hayalgucu, Kalkp baarabilecek kadar cesareti, Zorluklarn gsleyebilecek kadar enerjisi, Bunu yapabilecek kadar zaman Can Dost kavramna inanc ve bu turun masraflarn

[XFree86] Dunya Turuna Karavan Arkadaþý/Looking for a Caravan Mate For travel

2003-11-03 Thread KaravnalaDünyaTuru/TourByCaravan
Karavan ile Bir DdnyaTuru yapmay planlyorum. Hayalim olan bu Plan birlikte gerekletirmek zere: Bu turu hayal edebilecek kadar hayalgucu, Kalkp baarabilecek kadar cesareti, Zorluklarn gsleyebilecek kadar enerjisi, Bunu yapabilecek kadar zaman Can Dost kavramna inanc ve bu turun masraflarn

[XFree86] Dunya Turuna Karavan Arkadaþý/Looking for a Caravan Mate For travel

2003-11-03 Thread KaravnalaDünyaTuru/TourByCaravan
Karavan ile Bir DdnyaTuru yapmay planlyorum. Hayalim olan bu Plan birlikte gerekletirmek zere: Bu turu hayal edebilecek kadar hayalgucu, Kalkp baarabilecek kadar cesareti, Zorluklarn gsleyebilecek kadar enerjisi, Bunu yapabilecek kadar zaman Can Dost kavramna inanc ve bu turun masraflarn

[XFree86] Dunya Turuna Karavan Arkadaþý/Looking for a Caravan Mate For travel

2003-11-03 Thread KaravnalaDünyaTuru/TourByCaravan
Karavan ile Bir DdnyaTuru yapmay planlyorum. Hayalim olan bu Plan birlikte gerekletirmek zere: Bu turu hayal edebilecek kadar hayalgucu, Kalkp baarabilecek kadar cesareti, Zorluklarn gsleyebilecek kadar enerjisi, Bunu yapabilecek kadar zaman Can Dost kavramna inanc ve bu turun masraflarn