Setting variable in Makefiles

2003-07-05 Thread Andras Huszar
Hi list,

How could I set the EXTRA_LDOPTIONS variable in every Makefile from xfree86.cf
or other config file? Like CCOPTIONS, it's defined in xfree86.cf as:
#define DefaultCCOptions -ansi -pedantic ...


Cheers,
Andras Huszar

___
Devel mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/devel


Re: mkfontscale strikes again

2003-07-05 Thread Alexander Pohoyda
Egbert Eich [EMAIL PROTECTED] writes:

[...]

  static int doScalable;
  static int doBitmaps;
 -static int doEncodings;
 +static int onlyEncodings;
 +static int onlyEncodings;

A typo?


-- 
Alexander Pohoyda
[EMAIL PROTECTED]
___
Devel mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/devel


XTest, Xinerama (Re: Xinerama, extensions, and x2x)

2003-07-05 Thread Erik van het Hof
Please find below an email and patch by Rik Faith to make XTEST work with Xinerama. I have backported this to a 4.2.1 version on my debian box and it worked. Could someone add this to cvs? it shouldn't be a lot of work.

Thanks
Erik
---

# From: Rik Faith
# Subject: Xinerama, extensions, and x2x
# Date: Tue, 18 Mar 2003 09:19:10 -0800
[This was posted to [EMAIL PROTECTED] last week,
but I didn't get a reply.  Sorry if you've seen it twice...]
I recently noticed that several extensions are not xinerama-aware.
For example, Extended-Visual-Information will report visuals for two
screens even when xdpyinfo reports only one screen present (i.e.,
because of Xinerama).  I suspect an issue with MIT-SCREEN-SAVER but have
not investigated -- does anyone use an MIT-SCREEN-SAVER client with
Xinerama (beforelight seems to be the only one).
The XTEST extension performs computations relative to the internal
screens, even though a client (e.g., x2x) obtains information about a
single large Xinerama screen.  Below is a patch to Xserver/Xext/test.c
that will fix this problem (against the xtest.c that should be in the
XFree86 4.3.0 tree).  I have verified this patch does not alter the
results of the X Test Suite when it is configured to run with the
XT_EXTENSIONS=Yes flag.  I have also verified that x2x works as expected
with this patch, and not without it.
I used: http://www.netsw.org/x11/extensions/x2x/x2x-1.27.tar.gz

(Note that because of the way the other XTEST code (e.g., IIRC, the
client-side library) is written, I was unable to write a xinerama-aware
client that could do anything to trick XTEST into doing the expected
thing.  For simplicity, I suggest fixing it here.)
Thanks for your help, Rik Faith

--- xtest.c 14 Dec 2002 03:09:57 -  1.1.1.1
+++ xtest.c 13 Mar 2003 21:05:20 -
@@ -59,6 +59,11 @@ static unsigned char XTestReqCode;
 extern int DeviceValuator;
 #endif /* XINPUT */
+#ifdef PANORAMIX
+#include panoramiX.h
+#include panoramiXsrv.h
+#endif
+
 static void XTestResetProc(
 #if NeedFunctionPrototypes
 ExtensionEntry * /* extEntry */
@@ -378,6 +383,33 @@ ProcXTestFakeInput(client)
client-errorValue = ev-u.u.detail;
return BadValue;
}
+
+#ifdef PANORAMIX
+if (!noPanoramiXExtension) {
+ScreenPtr pScreen = root-drawable.pScreen;
+BoxRecbox;
+int   i;
+int   x = ev-u.keyButtonPointer.rootX + panoramiXdataPtr[0].x;
+int   y = ev-u.keyButtonPointer.rootY + panoramiXdataPtr[0].y;
+if (!POINT_IN_REGION(root, XineramaScreenRegions[pScreen-myNum],
+ x, y, box)) {
+FOR_NSCREENS(i) {
+if (i == pScreen-myNum) continue;
+if (POINT_IN_REGION(pScreen,
+XineramaScreenRegions[i],
+x, y, box)) {
+root = WindowTable[i];
+x   -= panoramiXdataPtr[i].x;
+y   -= panoramiXdataPtr[i].y;
+ev-u.keyButtonPointer.rootX = x;
+ev-u.keyButtonPointer.rootY = y;
+break;
+}
+}
+}
+}
+#endif
+
if (ev-u.keyButtonPointer.rootX  0)
ev-u.keyButtonPointer.rootX = 0;
else if (ev-u.keyButtonPointer.rootX = root-drawable.width)
@@ -386,7 +418,15 @@ ProcXTestFakeInput(client)
ev-u.keyButtonPointer.rootY = 0;
else if (ev-u.keyButtonPointer.rootY = root-drawable.height)
ev-u.keyButtonPointer.rootY = root-drawable.height - 1;
+
+#ifdef PANORAMIX
+if ((!noPanoramiXExtension
+  root-drawable.pScreen-myNum != XineramaGetCursorScreen())
+|| (noPanoramiXExtension  root != GetCurrentRootWindow()))
+
+#else
if (root != GetCurrentRootWindow())
+#endif
{
NewCurrentScreen(root-drawable.pScreen,
 ev-u.keyButtonPointer.rootX,


___
Devel mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/devel


Re: XTest, Xinerama (Re: Xinerama, extensions, and x2x)

2003-07-05 Thread Alex Deucher
I believe this patch was already applied to cvs (HEAD, don't know about
the branches) a while back.

Alex

--- Erik van het Hof [EMAIL PROTECTED] wrote:
 Please find below an email and patch by Rik Faith to make XTEST work
 with Xinerama. I have backported this to a 4.2.1 version on my debian
 box and it worked. Could someone add this to cvs? it shouldn't be a
 lot of work.
 
 Thanks
 Erik
 


__
Do you Yahoo!?
SBC Yahoo! DSL - Now only $29.95 per month!
http://sbc.yahoo.com
___
Devel mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/devel


Re: XTest, Xinerama (Re: Xinerama, extensions, and x2x)

2003-07-05 Thread Marc Aurele La France
On Sat, 5 Jul 2003, Alex Deucher wrote:

 --- Erik van het Hof [EMAIL PROTECTED] wrote:
  Please find below an email and patch by Rik Faith to make XTEST work
  with Xinerama. I have backported this to a 4.2.1 version on my debian
  box and it worked. Could someone add this to cvs? it shouldn't be a
  lot of work.

 I believe this patch was already applied to cvs (HEAD, don't know about
 the branches) a while back.

Not yet, no.  But it will be.

Marc.

+--+---+
|  Marc Aurele La France   |  work:   1-780-492-9310   |
|  Computing and Network Services  |  fax:1-780-492-1729   |
|  352 General Services Building   |  email:  [EMAIL PROTECTED]  |
|  University of Alberta   +---+
|  Edmonton, Alberta   |   |
|  T6G 2H1 | Standard disclaimers apply|
|  CANADA  |   |
+--+---+
XFree86 Core Team member.  ATI driver and X server internals.

___
Devel mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/devel


[Fonts] re: a new font encoding file for XF86 : gb18030.2000-2? (fwd)

2003-07-05 Thread Jungshik Shin
Hi,

I sent the following to James Su to seek his opinion, but it was bounced. Now
I'm sending to 1i8n and fonts list expecting him or other Chinese experts to
pick this up.


Jungshik


Hi,

Could you make a comment on
http://bugs.xfree86.org//cgi-bin/bugzilla/show_bug.cgi?id=441?

It's about adding a new font encoding file to XF86 for BMP characters
NOT covered by gbk-0/gb18030.2000-0.enc and gb18030.2000-1.enc that you
proposed and was/were accepted. I don't think it's necessary, but your
expert opinion would be great to have. I tried to add you to CC of bugzilla,
but you're registered there so that I'm writing this instead.

Thank you,

Jungshik



___
Fonts mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/fonts


[XFree86] bugs in install

2003-07-05 Thread Henry Gracer



using trio3D/2x and compaq 151fs monitor. Both 
recognized during install of Mandrake9.1, but on reboot ars incompatible. end 
result a loop and system inaccessable through graphics. I can login through 
normal text screen but have no idea how to adjust the settings.
regards
Henry Gracer


[XFree86] startx

2003-07-05 Thread
Hello ,

I have ASPLinux Chip Edition distribution kit.
But after the command startx KDE does not start.

Please find the log file /var/log/XFree86.0.log as attached file.

My computer configuration is:
AMD Athlon 1600+/256 Mb/40Gb
GigaByte 7VRX motherboard with integrated soundcard AC'97
NVidia Geforce 2MX/MX400 videocard
SyncMaster 753DFX monitor [EMAIL PROTECTED] Hz
CD-ROM Creative 24x
CD-RW TDK 48x24x48
FDD '3.5
modem ZyXEL PCI 56k
keyboard 104keys
Logitech Wheel Mouse on a USB Port

-- 
Best regards,
 Timur  mailto:[EMAIL PROTECTED]

XFree86.0.log
Description: Binary data


Re: [XFree86] Devel for HP-UX 11.00

2003-07-05 Thread Peter Will
Hi!

The missing include files for the X11 that comes with HP-UX 11.0 od 11i
are included in the Linux to hp-ux 11.0/11i porting kit. You can request
it on the hp website:

http://www.software.hp.com/cgi-bin/swdepot_parser.cgi/cgi/displayProductInfo.pl?productNumber=B9891AA

or

http://www.software.hp.com/cgi-bin/swdepot_parser.cgi/cgi/displayProductInfo.pl?productNumber=B9902CA

If you are looking for XFree for HP-UX, please have a lookt at this site:

http://hpux.cs.utah.edu/

I think there was a link in the FAQ to a precompiled version of XFree for
HP-UX...

Regards

peter

On Fri, 4 Jul 2003, Jeffo wrote:

 Date: Fri, 4 Jul 2003 11:26:11 -0300
 From: Jeffo [EMAIL PROTECTED]
 Reply-To: [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Subject: [XFree86] Devel for HP-UX 11.00



 Hello all.

 I´ve been searching on the Net for the X-devel package for instalattion over HP-UX 
 11.00 without success.

 This is my last hope... =)

 Thanks for any hints.

 Jeffo.



Peter Will  Internet Management GmbH
--  Auf der Weih 2
Tel.: +49 2772 4723035745 Herborn
Fax.: +49 2772 472329   Germany
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] startx doesnt work

2003-07-05 Thread
Hello ,

I have ASPLinux Chip Edition distribution kit.
But after the command startx KDE does not start.

Please find the log file /var/log/XFree86.0.log as attached file.

My computer configuration is:
AMD Athlon 1600+/256 Mb/40Gb
GigaByte 7VRX motherboard with integrated soundcard AC'97
NVidia Geforce 2MX/MX400 videocard
SyncMaster 753DFX monitor [EMAIL PROTECTED] Hz
CD-ROM Creative 24x
CD-RW TDK 48x24x48
FDD '3.5
modem ZyXEL PCI 56k
keyboard 104keys
Logitech Wheel Mouse on a USB Port

-- 
Best regards,
 Timur  mailto:[EMAIL PROTECTED]

XFree86.0.log
Description: Binary data


[XFree86] problem with startx

2003-07-05 Thread cdenoize








I recently installed Mandrake 9.0 on my computer, but there is trouble when I try to launch startx, for example.
I have a motherboard K7NCR18 with the GeForce chipset.
I have this messages : 
(EE) VESA(0) : no matching mode
(EE) Sreen(s) found, but none have a usable configuration.
I try to use the nforce driver, found on http://www.nvidia.com, on the driver page.
So I used the driver 1.0.0261, for mandrake 9.0. My kernel version is 2.4.19
I used the binary RPM files. No problem occured during installation.
But is still doesn't work

If you can help me, do not hesitate!







 IncrediMail - Email has finally evolved - Click Here

RE: [XFree86] Compiling Xfree86 from sources and Dependencies

2003-07-05 Thread Renaud Desarzens
You say you're building a linux from scratch. I suppose you followed
instructions from www.linuxfromscratch.org. There are much more things
that could be installed and configured on your linux from scratch
installation. Did you take a look at Beyond Linux From Scratch? There
you will also find an install guide for XFree86 in
http://beyond.linuxfromscratch.org/view/1.0/x/x.html.

Hope this helps! Good luck...

Renaud


On Sat, 5 Jul 2003, Lia Maggioni wrote:

 Hi all

 I'm compiling a Linux System from Scratch , but I have problems
 compiling Xfree from Sources.

 First a problem compiling xcursorgen.c because of libpng
 missing , and
 now another problem .

 My system have only the base libraries and I don't know what
 libraries I
 have to install in order to compile Xfree .

 Any one can give me a list of the dependencies of Xfree ? I haven't
 found it on www.xfree86.org (I think it will be very useful)

 Bye

 Marcello

 ___
 XFree86 mailing list
 [EMAIL PROTECTED]
 http://XFree86.Org/mailman/listinfo/xfree86



___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] X-win hangs

2003-07-05 Thread Marcin Kosiba
I've got KDE 3.1.0 under X 4.3.0 [kernel 2.4.21], basically it's a Slackware 9.0 with 
a couple of newer packages. 
The funny thing is that wile I was typing something into my browser (mozilla 1.3) my 
finger slipped and I pressed
something (in the vicinity of right Alt, I'm not quite sure though) anyway what 
happened then was that 
_everything_ hanged, the XMMS that was playing some OGG's stopped, Ctrl-Alt-Backspace 
didn't work, I couldn't
change terminals, desktops, nothing. Even the SysRq Magic key didn't work (though I 
don't know if it's
supposed to work from under X). Anyway the only thing alive were the Caps-Lock and 
Scroll-Lock diodes
that were simultaneously flashing on and off. I don't know, maybe I've pressed some 
auto-destruct mechanism
initiation keys or what?! Anyway I'm mostly interested in what was that what I've 
described. TIA
   
   
  Marcin Kosiba
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] X server crash

2003-07-05 Thread Vincenzo Colonnella
Hi! I don't know if this will be util... I'm following instructions I
found in the attached file.

X has crashed while I was using Mozilla (mozilla-1.2.1-26).
I use Linux RedHat 9 (Linux Professional).

Bye - Thanx you for all - Good work



XFree86 Version 4.3.0 (Red Hat Linux release: 4.3.0-2)
Release Date: 27 February 2003
X Protocol Version 11, Revision 0, Release 6.6
Build Operating System: Linux 2.4.20-3bigmem i686 [ELF] 
Build Date: 27 February 2003
Build Host: porky.devel.redhat.com
 
Before reporting problems, check http://www.XFree86.Org/
to make sure that you have the latest version.
Module Loader present
OS Kernel: Linux version 2.4.20-18.9 ([EMAIL PROTECTED]) (gcc version 3.2.2 20030222 
(Red Hat Linux 3.2.2-5)) #1 Thu May 29 06:54:41 EDT 2003 
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/XFree86.0.log, Time: Sat Jul  5 13:28:05 2003
(==) Using config file: /etc/X11/XF86Config
(==) ServerLayout Default Layout
(**) |--Screen Screen0 (0)
(**) |   |--Monitor Monitor0
(**) |   |--Device Videocard0
(**) |--Input Device Mouse0
(**) |--Input Device Keyboard0
(**) Option XkbRules xfree86
(**) XKB: rules: xfree86
(**) Option XkbModel pc105
(**) XKB: model: pc105
(**) Option XkbLayout it
(**) XKB: layout: it
(==) Keyboard: CustomKeycode disabled
(**) |--Input Device DevInputMice
(**) FontPath set to unix/:7100
(**) RgbPath set to /usr/X11R6/lib/X11/rgb
(==) ModulePath set to /usr/X11R6/lib/modules
(++) using VT number 12

(II) Open APM successful
(II) Module ABI versions:
XFree86 ANSI C Emulation: 0.2
XFree86 Video Driver: 0.6
XFree86 XInput driver : 0.4
XFree86 Server Extension : 0.2
XFree86 Font Renderer : 0.4
(II) Loader running on linux
(II) LoadModule: bitmap
(II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.a
(II) Module bitmap: vendor=The XFree86 Project
compiled for 4.3.0, module version = 1.0.0
Module class: XFree86 Font Renderer
ABI class: XFree86 Font Renderer, version 0.4
(II) Loading font Bitmap
(II) LoadModule: pcidata
(II) Loading /usr/X11R6/lib/modules/libpcidata.a
(II) Module pcidata: vendor=The XFree86 Project
compiled for 4.3.0, module version = 1.0.0
ABI class: XFree86 Video Driver, version 0.6
(II) PCI: Probing config type using method 1
(II) PCI: Config type is 1
(II) PCI: stages = 0x03, oldVal1 = 0x8000480c, mode1Res1 = 0x8000
(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 1106,0305 card , rev 02 class 06,00,00 hdr 00
(II) PCI: 00:01:0: chip 1106,8305 card , rev 00 class 06,04,00 hdr 01
(II) PCI: 00:07:0: chip 1106,0686 card 1106, rev 40 class 06,01,00 hdr 80
(II) PCI: 00:07:1: chip 1106,0571 card 1106,0571 rev 06 class 01,01,8a hdr 00
(II) PCI: 00:07:2: chip 1106,3038 card 0925,1234 rev 16 class 0c,03,00 hdr 00
(II) PCI: 00:07:3: chip 1106,3038 card 0925,1234 rev 16 class 0c,03,00 hdr 00
(II) PCI: 00:07:4: chip 1106,3057 card 1106,3057 rev 40 class 06,80,00 hdr 00
(II) PCI: 00:08:0: chip 1102,0002 card 1102,8064 rev 07 class 04,01,00 hdr 80
(II) PCI: 00:08:1: chip 1102,7002 card 1102,0020 rev 07 class 09,80,00 hdr 80
(II) PCI: 00:09:0: chip 10ec,8139 card 10ec,8139 rev 10 class 02,00,00 hdr 00
(II) PCI: 00:0b:0: chip 9004,5078 card 9004,7850 rev 03 class 01,00,00 hdr 00
(II) PCI: 01:00:0: chip 10de,002d card 10b0, rev 15 class 03,00,00 hdr 00
(II) PCI: End of PCI scan
(II) Host-to-PCI bridge:
(II) Bus 0: bridge is at (0:0:0), (0,0,1), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 0 I/O range:
[0] -1  0   0x - 0x (0x1) IX[B]
(II) Bus 0 non-prefetchable memory range:
[0] -1  0   0x - 0x (0x0) MX[B]
(II) Bus 0 prefetchable memory range:
[0] -1  0   0x - 0x (0x0) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 1: bridge is at (0:1:0), (0,1,1), BCTRL: 0x000c (VGA_EN is set)
(II) Bus 1 non-prefetchable memory range:
[0] -1  0   0xda00 - 0xdbff (0x200) MX[B]
(II) Bus 1 prefetchable memory range:
[0] -1  0   0xd800 - 0xd9ff (0x200) MX[B]
(II) PCI-to-ISA bridge:
(II) Bus -1: bridge is at (0:7:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
(--) PCI:*(1:0:0) nVidia Corporation NV5M64 [RIVA TNT2 Model 64/Model 64 Pro] rev 21, 
Mem @ 0xda00/24, 0xd800/25
(II) Addressable bus resource ranges are
[0] -1  0   0x - 0x (0x0) MX[B]
[1] -1  0   0x - 0x (0x1) IX[B]
(II) OS-reported resource ranges:
[0] -1  0   0xffe0 - 0x (0x20) MX[B](B)
[1] -1  0   0x0010 - 0x3fff (0x3ff0) MX[B]E(B)
[2] -1  0   0x000f - 0x000f (0x1) MX[B]
[3] -1  0   0x000c - 0x000e (0x3) MX[B]
[4] -1  0   0x 

[XFree86] Problem with running XWindow from console

2003-07-05 Thread Michal Drozd
Hello
I have problem with running XWindow from Console. I have this notebook:
i486 - 100 Mhz, 20 MB RAM, 2 GB on HD, SVGA. I have full installed linux
Slackware 9.0(Linux 2.4.20) and I have these Window managers:
Windowmaker, fvwm, fvwm95, twm. Version of XFree86 is 4.3.0. Problem is
that when ia run startx it is going bad. It do nothing. Screen is black
and there is only black cursor. Then I tried run fvwm direct from
console. But it wrote on the screen error Could not find display.
Perhaps X shold be run otherwise.  Sorry for my english but i am from
Slovakia. And sorry that i give not you logs but i have seen there and i
didnt found any errors. I will very happy when you reply me.
Bye

___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] Hiding mouse cursor

2003-07-05 Thread Edoardo Serra
Hi all,
I configured a linux box to act as a 'video server'.
It boots and loads a Xserver with a fullscreen Macromedia Flash Player.
The flash animation is then remoted via a TCP connection.
I need to make the mouse cursor disappear.

I tried a function from flash to hide the mouse but it doesn't work if i 
don't move the mouse at least once.
I tried to remove the CorePointer sections form the XF86Config and adding a 
Option AllowMouseOpenFail true
but the server refuse to start.

any ideas ???

Tnx

Edoardo

___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] problems with compaq presario 2100

2003-07-05 Thread ronap
Hi, 


I have bought a notebook Compaq Presario 2100 (model N: 2156EA) but I cannot inastall 
graphic environment of Red Hat 9 because X server don't accepts my ATI Radeon 320M 
card and my TFT monitor.

Please, help me. Many thanks in advance for your support.

Ciao, Roberto



___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] problems with Compaq Presario 2100

2003-07-05 Thread ronap
Hi, I'm italian student. 

I have bought a notebook Compaq Presario 2100 (model N: 2156EA) but I cannot inastall 
graphic environment of Red Hat 9 (kernel 2.4.20-8) because X server don't accept my 
ATI Radeon 320M card and my TFT monitor.

Please, help me. Many thanks in advance for your support.
Ciao, Roberto



___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] problems with compaq presario 2100

2003-07-05 Thread ronap
Hi, I'm italian student.

I have bought a notebook Compaq Presario 2100 (model N: 2156EA) but I cannot inastall 
graphic environment of Red Hat 9 (kernel 2.4.20-8) because X server don't accept my 
ATI Radeon 320M card and my TFT monitor.
Please, help me: [EMAIL PROTECTED] . Many thanks in advance for your support.
Ciao, Roberto




___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] XFont Server Crash

2003-07-05 Thread Eashwar Natarajan
I am an user of Mandrake Linux 8.1operating System . I 
recently had crashes in the X Font Server. I have attached here 
the /var/log/XFree86.0 log file .plz look in to log file and tell 
me the solution.

Eashwar .N

N.Eashwar
___
Click below to experience Sooraj R Barjatya's latest offering
'Main Prem Ki Diwani Hoon' starring Hrithik, Abhishek
  Kareena http://www.mpkdh.com

XFree86 Version 4.1.0 / X Window System
(protocol Version 11, revision 0, vendor release 6510)
Release Date: 2 June 2001
If the server is older than 6-12 months, or if your card is
newer than the above date, look for a newer version before
reporting problems.  (See http://www.XFree86.Org/FAQ)
Build Operating System: Linux 2.4.8-5mdkenterprise i686 [ELF] 
Module Loader present
(==) Log file: /var/log/XFree86.0.log, Time: Sat Jul  5 21:04:39 2003
(==) Using config file: /etc/X11/XF86Config-4
Markers: (--) probed, (**) from config file, (==) default setting,
 (++) from command line, (!!) notice, (II) informational,
 (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) ServerLayout layout1
(**) |--Screen screen1 (0)
(**) |   |--Monitor Samsung SyncMaster 550v
(**) |   |--Device SiS 6326
(**) |--Input Device Mouse1
(**) |--Input Device Keyboard1
(**) Option AutoRepeat 250 30
(**) Option XkbRules xfree86
(**) XKB: rules: xfree86
(**) Option XkbModel pc105
(**) XKB: model: pc105
(**) Option XkbLayout us
(**) XKB: layout: us
(==) Keyboard: CustomKeycode disabled
(**) FontPath set to unix/:-1
(**) RgbPath set to /usr/X11R6/lib/X11/rgb
(==) ModulePath set to /usr/X11R6/lib/modules
(**) Option AllowMouseOpenFail
(--) using VT number 7

(II) Open APM successful
(II) Module ABI versions:
XFree86 ANSI C Emulation: 0.1
XFree86 Video Driver: 0.4
XFree86 XInput driver : 0.2
XFree86 Server Extension : 0.1
XFree86 Font Renderer : 0.2
(II) Loader running on linux
(II) LoadModule: bitmap
(II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.a
(II) Module bitmap: vendor=The XFree86 Project
compiled for 4.1.0, module version = 1.0.0
Module class: XFree86 Font Renderer
ABI class: XFree86 Font Renderer, version 0.2
(II) Loading font Bitmap
(II) LoadModule: pcidata
(II) Loading /usr/X11R6/lib/modules/libpcidata.a
(II) Module pcidata: vendor=The XFree86 Project
compiled for 4.1.0, module version = 0.1.0
ABI class: XFree86 Video Driver, version 0.4
(II) PCI: Probing config type using method 1
(II) PCI: Config type is 1
(II) PCI: stages = 0x03, oldVal1 = 0x8058, mode1Res1 = 0x8000
(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 8086,7190 card , rev 03 class 06,00,00 hdr 00
(II) PCI: 00:01:0: chip 8086,7191 card , rev 03 class 06,04,00 hdr 01
(II) PCI: 00:07:0: chip 8086,7110 card , rev 02 class 06,01,00 hdr 80
(II) PCI: 00:07:1: chip 8086,7111 card , rev 01 class 01,01,80 hdr 00
(II) PCI: 00:07:2: chip 8086,7112 card , rev 01 class 0c,03,00 hdr 00
(II) PCI: 00:07:3: chip 8086,7113 card , rev 02 class 06,80,00 hdr 00
(II) PCI: 00:0b:0: chip 13f6,0111 card 13f6,0111 rev 10 class 04,01,00 hdr 00
(II) PCI: 01:00:0: chip 1039,6326 card , rev 92 class 03,00,00 hdr 00
(II) PCI: End of PCI scan
(II) LoadModule: scanpci
(II) Loading /usr/X11R6/lib/modules/libscanpci.a
(II) Module scanpci: vendor=The XFree86 Project
compiled for 4.1.0, module version = 0.1.0
ABI class: XFree86 Video Driver, version 0.4
(II) UnloadModule: scanpci
(II) Unloading /usr/X11R6/lib/modules/libscanpci.a
(II) Host-to-PCI bridge:
(II) PCI-to-ISA bridge:
(II) PCI-to-PCI bridge:
(II) Bus 0: bridge is at (0:0:0), (-1,0,0), BCTRL: 0x08 (VGA_EN is set)
(II) Bus 0 I/O range:
[0] -1  0x - 0x (0x1) IX[B]
(II) Bus 0 non-prefetchable memory range:
[0] -1  0x - 0x (0x0) MX[B]
(II) Bus 0 prefetchable memory range:
[0] -1  0x - 0x (0x0) MX[B]
(II) Bus 1: bridge is at (0:1:0), (0,1,1), BCTRL: 0x88 (VGA_EN is set)
(II) Bus 1 I/O range:
[0] -1  0xd000 - 0xdfff (0x1000) IX[B]
(II) Bus 1 non-prefetchable memory range:
[0] -1  0xd400 - 0xd5ff (0x200) MX[B]
(II) Bus 1 prefetchable memory range:
[0] -1  0xd600 - 0xd67f (0x80) MX[B]
(II) Bus -1: bridge is at (0:7:0), (0,-1,0), BCTRL: 0x08 (VGA_EN is set)
(II) Bus -1 I/O range:
(II) Bus -1 non-prefetchable memory range:
(II) Bus -1 prefetchable memory range:
(--) PCI:*(1:0:0) SiS 6326 rev 146, Mem @ 0xd600/23, 0xd500/16, I/O @ 0xd000/7
(II) Addressable bus resource ranges are
[0] -1  0x - 0x (0x0) MX[B]
[1] -1  0x - 0x (0x1) IX[B]
(II) OS-reported resource ranges:
[0] -1  0xffe0 - 0x (0x20) MX[B](B)
[1] -1  0x0010 - 0x3fff (0x3ff0) MX[B]E(B)
[2] -1  

[XFree86] XFont Server Crash

2003-07-05 Thread Eashwar Natarajan




 I am an user of Mandrake Linux 
8.1operating System . I recently had crashes in the X Font Server. I have 
attached here the /var/log/XFree86.0 log file .plz look in to log file and tell 
methe solution.


Eashwar .N

XFree86 Version 4.1.0 / X Window System
(protocol Version 11, revision 0, vendor release 6510)
Release Date: 2 June 2001
If the server is older than 6-12 months, or if your card is
newer than the above date, look for a newer version before
reporting problems.  (See http://www.XFree86.Org/FAQ)
Build Operating System: Linux 2.4.8-5mdkenterprise i686 [ELF] 
Module Loader present
(==) Log file: /var/log/XFree86.0.log, Time: Sat Jul  5 21:04:39 2003
(==) Using config file: /etc/X11/XF86Config-4
Markers: (--) probed, (**) from config file, (==) default setting,
 (++) from command line, (!!) notice, (II) informational,
 (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) ServerLayout layout1
(**) |--Screen screen1 (0)
(**) |   |--Monitor Samsung SyncMaster 550v
(**) |   |--Device SiS 6326
(**) |--Input Device Mouse1
(**) |--Input Device Keyboard1
(**) Option AutoRepeat 250 30
(**) Option XkbRules xfree86
(**) XKB: rules: xfree86
(**) Option XkbModel pc105
(**) XKB: model: pc105
(**) Option XkbLayout us
(**) XKB: layout: us
(==) Keyboard: CustomKeycode disabled
(**) FontPath set to unix/:-1
(**) RgbPath set to /usr/X11R6/lib/X11/rgb
(==) ModulePath set to /usr/X11R6/lib/modules
(**) Option AllowMouseOpenFail
(--) using VT number 7

(II) Open APM successful
(II) Module ABI versions:
XFree86 ANSI C Emulation: 0.1
XFree86 Video Driver: 0.4
XFree86 XInput driver : 0.2
XFree86 Server Extension : 0.1
XFree86 Font Renderer : 0.2
(II) Loader running on linux
(II) LoadModule: bitmap
(II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.a
(II) Module bitmap: vendor=The XFree86 Project
compiled for 4.1.0, module version = 1.0.0
Module class: XFree86 Font Renderer
ABI class: XFree86 Font Renderer, version 0.2
(II) Loading font Bitmap
(II) LoadModule: pcidata
(II) Loading /usr/X11R6/lib/modules/libpcidata.a
(II) Module pcidata: vendor=The XFree86 Project
compiled for 4.1.0, module version = 0.1.0
ABI class: XFree86 Video Driver, version 0.4
(II) PCI: Probing config type using method 1
(II) PCI: Config type is 1
(II) PCI: stages = 0x03, oldVal1 = 0x8058, mode1Res1 = 0x8000
(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 8086,7190 card , rev 03 class 06,00,00 hdr 00
(II) PCI: 00:01:0: chip 8086,7191 card , rev 03 class 06,04,00 hdr 01
(II) PCI: 00:07:0: chip 8086,7110 card , rev 02 class 06,01,00 hdr 80
(II) PCI: 00:07:1: chip 8086,7111 card , rev 01 class 01,01,80 hdr 00
(II) PCI: 00:07:2: chip 8086,7112 card , rev 01 class 0c,03,00 hdr 00
(II) PCI: 00:07:3: chip 8086,7113 card , rev 02 class 06,80,00 hdr 00
(II) PCI: 00:0b:0: chip 13f6,0111 card 13f6,0111 rev 10 class 04,01,00 hdr 00
(II) PCI: 01:00:0: chip 1039,6326 card , rev 92 class 03,00,00 hdr 00
(II) PCI: End of PCI scan
(II) LoadModule: scanpci
(II) Loading /usr/X11R6/lib/modules/libscanpci.a
(II) Module scanpci: vendor=The XFree86 Project
compiled for 4.1.0, module version = 0.1.0
ABI class: XFree86 Video Driver, version 0.4
(II) UnloadModule: scanpci
(II) Unloading /usr/X11R6/lib/modules/libscanpci.a
(II) Host-to-PCI bridge:
(II) PCI-to-ISA bridge:
(II) PCI-to-PCI bridge:
(II) Bus 0: bridge is at (0:0:0), (-1,0,0), BCTRL: 0x08 (VGA_EN is set)
(II) Bus 0 I/O range:
[0] -1  0x - 0x (0x1) IX[B]
(II) Bus 0 non-prefetchable memory range:
[0] -1  0x - 0x (0x0) MX[B]
(II) Bus 0 prefetchable memory range:
[0] -1  0x - 0x (0x0) MX[B]
(II) Bus 1: bridge is at (0:1:0), (0,1,1), BCTRL: 0x88 (VGA_EN is set)
(II) Bus 1 I/O range:
[0] -1  0xd000 - 0xdfff (0x1000) IX[B]
(II) Bus 1 non-prefetchable memory range:
[0] -1  0xd400 - 0xd5ff (0x200) MX[B]
(II) Bus 1 prefetchable memory range:
[0] -1  0xd600 - 0xd67f (0x80) MX[B]
(II) Bus -1: bridge is at (0:7:0), (0,-1,0), BCTRL: 0x08 (VGA_EN is set)
(II) Bus -1 I/O range:
(II) Bus -1 non-prefetchable memory range:
(II) Bus -1 prefetchable memory range:
(--) PCI:*(1:0:0) SiS 6326 rev 146, Mem @ 0xd600/23, 0xd500/16, I/O @ 0xd000/7
(II) Addressable bus resource ranges are
[0] -1  0x - 0x (0x0) MX[B]
[1] -1  0x - 0x (0x1) IX[B]
(II) OS-reported resource ranges:
[0] -1  0xffe0 - 0x (0x20) MX[B](B)
[1] -1  0x0010 - 0x3fff (0x3ff0) MX[B]E(B)
[2] -1  0x000f - 0x000f (0x1) MX[B]
[3] -1  0x000c - 0x000e (0x3) MX[B]
[4] -1  0x - 0x0009 (0xa) MX[B]
[5] -1  0x - 0x (0x1) IX[B]

Re: [XFree86] Hiding mouse cursor

2003-07-05 Thread Jarmo Paavilainen
On Sat, 2003-07-05 at 16:50, Edoardo Serra wrote:
...
 I need to make the mouse cursor disappear.
 
 I tried a function from flash to hide the mouse but it doesn't work if i 
 don't move the mouse at least once.
 I tried to remove the CorePointer sections form the XF86Config and adding a 
 Option AllowMouseOpenFail true
 but the server refuse to start.
 
 any ideas ???

Ive not tried this myself, but this solution came up resently on _this_
list:

Clip from an old mail

Make a file called blank.xbm containing the following:

---//---
#define blank_width 1
#define blank_height 1
#define blank_x_hot 0
#define blank_y_hot 0
static unsigned char blank_bits[] = {
0x00};
---//---

Then do xsetroot -cursor blank.xbm blank.xbm .  Now your root pointer
will be blank.


___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] X server crash

2003-07-05 Thread Mark Vojkovich
On 5 Jul 2003, Vincenzo Colonnella wrote:

 Hi! I don't know if this will be util... I'm following instructions I
 found in the attached file.
 
 X has crashed while I was using Mozilla (mozilla-1.2.1-26).
 I use Linux RedHat 9 (Linux Professional).
 
 Bye - Thanx you for all - Good work
 

   There are known bugs in the freetype module.  In the
/etc/X11/XF86Config try replacing the freetype module with
xtt.  If that doesn't solve your problem, let us know.

Mark. 


___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] Hiding mouse cursor

2003-07-05 Thread Mark Vojkovich
On Sat, 5 Jul 2003, Edoardo Serra wrote:

 Hi all,
  I configured a linux box to act as a 'video server'.
 It boots and loads a Xserver with a fullscreen Macromedia Flash Player.
 The flash animation is then remoted via a TCP connection.
 
 I need to make the mouse cursor disappear.
 
 I tried a function from flash to hide the mouse but it doesn't work if i 
 don't move the mouse at least once.
 I tried to remove the CorePointer sections form the XF86Config and adding a 
 Option AllowMouseOpenFail true
 but the server refuse to start.

   There's no way to make the cursor disappear in all cases unless
you hack the X-sever source code.  In X, there is always a cursor.
There can be, however, cursors that are completely transparent.
If you have the source code for the application, 
you can install a custom cursor via XChangeWindowAttributes
or in a bunch of other ways.  A transparent cursor is one with a
mask that is all zeros.  Note that installing a cursor of None
does not mean there is no cursor, but rather, no custom cursor
and you get the default cursor which gets inherited from the
window's parent.  

   If you don't have source to the app, you can only hope it
inherits its cursor all the way from the root window.  You
can change the root window cursor with the xsetroot application.


Mark.

___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] XFont Server Crash

2003-07-05 Thread Mark Vojkovich
On 5 Jul 2003,  Eashwar Natarajan wrote:

 
  I am an user of Mandrake Linux 8.1operating System . I 
 recently had crashes in the X Font Server. I have attached here 
 the /var/log/XFree86.0 log file .plz look in to log file and tell 
 me the solution.

  The X-server is not starting because the font server isn't running,
but what makes you think you have crashes in your font server,
as opposed to the font server just never being started in the first
place?

Mark.

___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] no xdm but startx works as a non-root user

2003-07-05 Thread Bob Lockie
I can run startx as a non-root user but I can't login to xdm or kdm.
Authentication fails for a user other than root.
Nothing in /var/log shows an ownership problem but that is what I think 
it is.
I even added the user to the 'root' group with no effect.
I maxed the xdm debugging (255) and that just says verify rjl... but 
it doesn't say what failed or why (some authentication).
Any suggestions?

___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] xfee86 for my nvidia geforce 4 with dell d800

2003-07-05 Thread Denes Kubicek
Hello,

I user redhat on my dell d800 with nvidia geforce 4
and a wuxga wide screen supporting resolutions up to
1920x1200. I tried to modify the xfree86 file to get
the resolution to work but it failed several times. Is
it possible to get a proper file to copy it into
etc/X11 from you without having to modify the existing
file?

Thanks in advance,

Denes

__

Gesendet von Yahoo! Mail - http://mail.yahoo.de
Logos und Klingeltöne fürs Handy bei http://sms.yahoo.de
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] xdm and antialiased fonts

2003-07-05 Thread Matthieu Herrb
Brendan Strejcek wrote (in a message from Thursday 3)
  xclock in 4.3.0 has really nice fonts now. Does anyone know if there is
  a way to get similar quality fonts in xdm widgets? I tried messing with
  the contents of X11/xdm/Xresources a little, but to no avail. Just a
  pointer to some documentation would be very much appreciated.
  
There is currently no support for Xrender (the extension that allows
to get anti-aliased fonts) in the xdm login widget. 

Matthieu
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] xfree-cvs fails on OpenBSD 3.3

2003-07-05 Thread Matthieu Herrb
Lars Hecking wrote (in a message from Friday 4)
  cvs update (yesterday's cvs)
  make World
  make install ; make install.man into a fresh, clean directory
  
  $ startx
  ...
  Fatal server error:
  could not open default cursor font 'cursor'
  
   Build, install, and X logs don't indicate any errors. Can anyone help?

The current mkfontscale code (which replaces mkfontdir) had problems
generating correct fonts.dir file. The fix was commited yesterday.

Please update your sources (at least xc/programs/mkfontscale) and try
again. 

Matthieu
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] xfee86 for my nvidia geforce 4 with dell d800

2003-07-05 Thread Mark Vojkovich
On Sat, 5 Jul 2003, [iso-8859-1] Denes Kubicek wrote:

 Hello,
 
 I user redhat on my dell d800 with nvidia geforce 4
 and a wuxga wide screen supporting resolutions up to
 1920x1200. I tried to modify the xfree86 file to get
 the resolution to work but it failed several times. Is
 it possible to get a proper file to copy it into
 etc/X11 from you without having to modify the existing
 Thanks in advance,


A modeline like the following should work:

  # 1920x1200 @ 60.00 Hz (GTF) hsync: 74.52 kHz; pclk: 193.16 MHz
  Modeline 1920x1200  193.16  1920 2048 2256 2592  1200 1201 1204 1242  -HSync +Vsync

 This was generated with the gtf application that ships with 
XFree86 4.3.

Note that if you are using the nv driver that came with
XFree86, you need to be using XFree86 4.3.  The nv driver
didn't support that chip before then.


Mark.

___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] help request

2003-07-05 Thread easton_p
Hi. I am new to Linux and have just loaded Red Hat 9. The X server doesn't like 
something to do with my video card. If you can help, I am including a copy of the log 
file. I have a Diamond Stealth 64 DRAM video card with an S3 Trio64 chip in it. The 
command line Linux appears to have installed properly and the X server tries to 
start but, alas, fails. The video card and monitor both work reliably for Windows 98 
under a high resolution (greater than 1024 x 728). If you could help I would be most 
appreciative.


XFree86.0.log
Description: Binary data


Re: [XFree86] multihead configuration with radeon 7000 cards

2003-07-05 Thread hy0
There is a bug in X4.3 (used by RH9) for dual-head setup with two or more
radeon cards. The bug has been fixed in the CVS code. You can try the
binaries in http://www.xfree86.org/~alanh/ (XFree86, ati_drv.o and
radeon_drv.o) if you don't want to compile it yourself.
I tested 4-head Xinerama setup with 2 Radeon 7500 cards (should be the same
with radeon 7000) and worked fine for me.

Regards,
Hui

- Original Message -
From: Jihong Ren [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Friday, July 04, 2003 7:16 PM
Subject: [XFree86] multihead configuration with radeon 7000 cards


 I am now trying to set up multihead display with a AGP radeon 7000 card
 and two PCI radeon 7000 cards. However, I couldn't get it to work even
 with just the AGP card and 1 PCI card. I believe my XFree86config file is
 correctly written. When I try startx, it reports:
 Reloading
 /usr/X11R6-CVS/lib/modules/drivers/radeon_drv.o
  Symbol xf86SetDDCproperties from module
 /usr/X11R6-CVS/lib/modules/drivers/radeon_drv.o is unresolved!

 This error was reported several times on the mailing list. However, I did
 not find where the fix is.
 (http://www.mail-archive.com/[EMAIL PROTECTED]/msg00298.html)

 Could anybody tell me whether it is possible to set up multihead display
 with
 these cards in Linux (Redhat 9.0 with XFree86 4+)? If not, what about
 windows? If not,
 could anybody recommend some graphics cards that are known to work for
 multihead
 display?

 Your help is highly appreciated!

 Jihong
 ___
 XFree86 mailing list
 [EMAIL PROTECTED]
 http://XFree86.Org/mailman/listinfo/xfree86


___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86