CVS Update: xc (branch: trunk)

2003-09-06 Thread Ivan Pascal
CVSROOT:/home/x-cvs
Module name:xc
Changes by: [EMAIL PROTECTED]   03/09/06 07:06:34

Log message:
   424. Improvement of Xlib's keysym compose module:
- Allow to figure out a mulibyte string if it is ommited in Compose file.
- Add 'include' instruction with some substitutions.
- Add a searching of Compose file as a value of XCOMPOSEFILE environment
  variable and as a $HOME/.XCompose file. (Ivan Pascal).

Modified files:
  xc/lib/X11/:
Ximint.h imLcIm.c imLcPrs.c 
  
  Revision  ChangesPath
  3.13  +2 -2  xc/lib/X11/Ximint.h
  1.12  +39 -13xc/lib/X11/imLcIm.c
  1.10  +155 -22   xc/lib/X11/imLcPrs.c

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


CVS Update: xc (branch: trunk)

2003-09-06 Thread Ivan Pascal
CVSROOT:/home/x-cvs
Module name:xc
Changes by: [EMAIL PROTECTED]   03/09/06 07:08:46

Log message:
  updates

Modified files:
  xc/programs/Xserver/hw/xfree86/:
CHANGELOG 
  
  Revision  ChangesPath
  3.2845+8 -1  xc/programs/Xserver/hw/xfree86/CHANGELOG

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


Re: Shared library inter-dependencies

2003-09-06 Thread Matthieu Herrb
I wrote (in a message from Friday 5)

  inter-dependencies are both good and bad. 
  It's a good thing to list them at build time, It helps finding some
  kind of conflicts. 
  OTOH, one should not rely on them to prune the list of libraries used
  to link an executable. First, this will break on static only build
  (yes there are still systems without shared libs these days), and then
  it can cause weird failures at run-time if the linker does not walk
  the full dependencies. 
  
  So the *Lib.tmpl should be fixed to describe correct dependencies (on
  Darwin it's strictly required) and Imakefiles should list the full
  dependencies too. 
  

Hmm I forgot one point: sometimes you don't want to specify full
dependencies for a library since there can be 2 differents libs
capable to satisfy the dependency and you want to chose at application
link time. 

The most current exemple is -lc_r vs -lc (or -lXThrstubs vs
-lpthreads) on some systems for threaded vs non-threaded applications.

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


Re: Shared library inter-dependencies

2003-09-06 Thread Kean Johnston
The most current exemple is -lc_r vs -lc (or -lXThrstubs vs
-lpthreads) on some systems for threaded vs non-threaded applications.
I'm talking about inter-X11 dependencies. Xext *always* depends on X11.
SM *always* depends on ICE. That kind of thing. Its a simple matter of 
ELF shared object inter-dependencies. Dont forget, any RTLD worth its 
salts wont even load the symbols from the dependent library until it 
needs to, unless the user has explicitly told it to bind all symbols.

Kean

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


Re: i855 and 1400x1050

2003-09-06 Thread Thomas Winischhofer
Alessandro Temil wrote:
David Dawes wrote:

On Fri, Sep 05, 2003 at 11:25:35AM -0700, Tim Roberts wrote:

On Fri, 05 Sep 2003 20:04:19 +0200, Alessandro Temil wrote:


Christian Zietz wrote:

The problem is: The current i810 driver does not only read the 
available
resolutions from the BIOS but also uses the BIOS to set the video 
mode.
So if the BIOS doesn't know of 1400x1050, it won't set it.
I think there are two solutions:
- Change the BIOS to know of 1400x1050. This should be easy for
manufacturer of the notebook but considerably harder than my 855patch
(for the video memory issue) for anyone else.
It is possible that the BIOS actually knows the mode, but has no VESA 
number for it. I have seen this at least on SiS hardware: SiS BIOSes 
maintain two mode number lists, one with internal mode numbers, one for 
VESA mode numbers. As the i810 BIOS, it has no VESA number for 1400x1050.

A closer look at the BIOS would perhaps help... if it turns out the BIOS 
has in internal mode number, one could change the mode switching from 
VESA to (direct) int10 and use the internal mode number(s).

Thomas

--
Thomas Winischhofer
Vienna/Austria
thomas AT winischhofer DOT net  http://www.winischhofer.net/
twini AT xfree86 DOT org
___
Devel mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/devel


Re: i855 and 1400x1050

2003-09-06 Thread Alessandro Temil
Thomas Winischhofer wrote:
Alessandro Temil wrote:

David Dawes wrote:

On Fri, Sep 05, 2003 at 11:25:35AM -0700, Tim Roberts wrote:

On Fri, 05 Sep 2003 20:04:19 +0200, Alessandro Temil wrote:


Christian Zietz wrote:

The problem is: The current i810 driver does not only read the 
available
resolutions from the BIOS but also uses the BIOS to set the video 
mode.
So if the BIOS doesn't know of 1400x1050, it won't set it.
I think there are two solutions:
- Change the BIOS to know of 1400x1050. This should be easy for
manufacturer of the notebook but considerably harder than my 855patch
(for the video memory issue) for anyone else.


It is possible that the BIOS actually knows the mode, but has no VESA 
number for it. I have seen this at least on SiS hardware: SiS BIOSes 
maintain two mode number lists, one with internal mode numbers, one for 
VESA mode numbers. As the i810 BIOS, it has no VESA number for 1400x1050.

A closer look at the BIOS would perhaps help... if it turns out the BIOS 
has in internal mode number, one could change the mode switching from 
VESA to (direct) int10 and use the internal mode number(s).

Thomas

I'm not sure to have the necessary knowledge, but may give a try, do you 
know any good bios dumper/disassembler that runs under linux that you 
would suggest for this task?

If someone else with more experience on this should want to help, the 
bios can be downloaded from acer support site and the laptop model is 
travelmate 661LCi (but i know at least dell inspiron 500m and latitude 
D400 are affected by the same problem, so their bioses should be good too)

Alessandro

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


Re: i855 and 1400x1050

2003-09-06 Thread Thomas Winischhofer
Alessandro Temil wrote:
Thomas Winischhofer wrote:

Alessandro Temil wrote:

David Dawes wrote:

On Fri, Sep 05, 2003 at 11:25:35AM -0700, Tim Roberts wrote:

On Fri, 05 Sep 2003 20:04:19 +0200, Alessandro Temil wrote:


Christian Zietz wrote:

The problem is: The current i810 driver does not only read the 
available
resolutions from the BIOS but also uses the BIOS to set the video 
mode.
So if the BIOS doesn't know of 1400x1050, it won't set it.
I think there are two solutions:
- Change the BIOS to know of 1400x1050. This should be easy for
manufacturer of the notebook but considerably harder than my 
855patch
(for the video memory issue) for anyone else.


It is possible that the BIOS actually knows the mode, but has no VESA 
number for it. I have seen this at least on SiS hardware: SiS BIOSes 
maintain two mode number lists, one with internal mode numbers, one 
for VESA mode numbers. As the i810 BIOS, it has no VESA number for 
1400x1050.

A closer look at the BIOS would perhaps help... if it turns out the 
BIOS has in internal mode number, one could change the mode switching 
from VESA to (direct) int10 and use the internal mode number(s).

Thomas

I'm not sure to have the necessary knowledge, but may give a try, do you 
know any good bios dumper/disassembler that runs under linux that you 
would suggest for this task?
Send the BIOS to me (privately), I'll have a look. To dump it, do

  dd if=/dev/mem of=/tmp/vidbios.bin bs=1 count=65535 skip=786432

Thomas

--
Thomas Winischhofer
Vienna/Austria
thomas AT winischhofer DOT net  http://www.winischhofer.net/
twini AT xfree86 DOT org
___
Devel mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/devel


[Fonts] Combining characters

2003-09-06 Thread Anuradha Ratnaweera





Let me put this in a simple point form using a hypothetical example:

- I have a font (non-unicode) X, which has non latin characters in the range of 32 to 127.
- The same character set is defined in Unicode 3/4 from say 4000.
- Unicode characters 4001 and 4010 form a single composite character which is the same as character 51 in the font X
- There is no Unicode equivalent to the 4001+4010 combination

Now, if I want to render character 51 of X inplace of the composite character 4001+4010, how should I proceed? Is there a way to map unicode sequences to actual (physical) fonts. Prefarably in the form:

4001,4010 - X,51

 Anuradha





signature.asc
Description: This is a digitally signed message part


Re: [Fonts] Combining characters

2003-09-06 Thread Jungshik Shin
On Sat, 6 Sep 2003, Anuradha Ratnaweera wrote:

 Let me put this in a simple point form using a hypothetical example:

 Now, if I want to render character 51 of X inplace of the composite
 character 4001+4010, how should I proceed?  Is there a way to map
 unicode sequences to actual (physical) fonts.  Prefarably in the form:

 4001,4010 - X,51

  Your problem is not new and has been worked on for many years
by a number of people and today we have a few satisfactory solutions.

  You crossposted to a few lists I subscribed to. Although
I've already answered to you on gtk-i18n list, here I'm gonna
give you some URLs:

  http://www.microsoft.com/typography/specs/default.htm
  http://www.pango.org (and the source code of Pango
  available at http://cvs.gnome.org. Take a look at
  files in pango/modules/indic and pango/modules/thai. You can
  also take a look at the ICU source code)
  http://graphite.sil.org
  http://developer.apple.com/fonts/

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


[XFree86] help me to get graphical display

2003-09-06 Thread francis raj
Dear sir,

Please help me to get graphical display on my system which is redhat linux 9 installed.
expecting your early reply.

Thanks

with regards
L. Francis

The following is the result of ddcprob result

Videocard DDC probe results
Description: Intel Corporation i810 Graphics Controller
Memory (MB): 1

Monitor DDC probe results
ID: WIP6718
Name: A5-WIPRO
Horizontal Sync (kHZ): 30-54
Vertical Sync (HZ): 50-120
Width (mm): 280
Height (mm): 210

And also i have attached the /var/log/XFree86.0.log file


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-8 ([EMAIL PROTECTED]) (gcc version 3.2.2 20030222 (Red 
Hat Linux 3.2.2-5)) #1 Thu Mar 13 17:54:28 EST 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 Sep  6 11:38:09 2003
(==) Using config file: /etc/X11/XF86Config
(==) ServerLayout Anaconda Configured
(**) |--Screen Screen0 (0)
(**) |   |--Monitor Monitor0
(**) |   |--Device Intel 810
(**) |--Input Device Mouse0
(**) |--Input Device Mouse1
(**) |--Input Device Keyboard0
(**) 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/:7100
(**) RgbPath set to /usr/X11R6/lib/X11/rgb
(==) ModulePath set to /usr/X11R6/lib/modules
(--) using VT number 7

(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
(WW) Warning, couldn't open module pcidata
(II) UnloadModule: pcidata
(EE) Failed to load module pcidata (module does not exist, 0)

Fatal server error:
Unable to load required base modules, Exiting...


When reporting a problem related to a server crash, please send
the full server output, not just the last messages.
This can be found in the log file /var/log/XFree86.0.log.
Please report problems to [EMAIL PROTECTED]



  
 Email sent using Svcemail
 Visit us at http://www.svce.ac.in
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-8 ([EMAIL PROTECTED]) (gcc version 3.2.2 20030222 (Red 
Hat Linux 3.2.2-5)) #1 Thu Mar 13 17:54:28 EST 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 Sep  6 11:38:09 2003
(==) Using config file: /etc/X11/XF86Config
(==) ServerLayout Anaconda Configured
(**) |--Screen Screen0 (0)
(**) |   |--Monitor Monitor0
(**) |   |--Device Intel 810
(**) |--Input Device Mouse0
(**) |--Input Device Mouse1
(**) |--Input Device Keyboard0
(**) 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/:7100
(**) RgbPath set to /usr/X11R6/lib/X11/rgb
(==) ModulePath set to /usr/X11R6/lib/modules
(--) using VT number 7

(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) 

[XFree86] jesus is lord, every knee will bow and every tongue will confess that jesus christ is lord

2003-09-06 Thread jesusislordforever
Hi there,
This is an auto response from jesus is lord forever.did you know that jesus christ is 
lord of lords and king of kings, this entire universe belongs to him and one day he is 
going to come back to the earth.If you have not decided to follow jesus and accept the 
sacrifice of him dying for your sins, you will not be given eternal life, only by 
beleiveing in the son of god dead and resurected can you have eternal life, otherwise 
you may be in danger of burning in hell for eternity with the devil.the choice is an 
easy one, but to follow jesus is not an easy thing, you need to give him all your 
life, and he will take you thru your life and watch over you and protect you and hear 
your voice when you pray to him and he will love you unlike anyone on earth can love 
you , for you see, he is love, if it wasnt for him there would be no love, no peace, 
no prosperity, no joy, hes the reason we have the good things we have.praise be to 
jesus the lord forever, for truly jesus is lord forever.
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] Combining characters

2003-09-06 Thread Anuradha Ratnaweera





Let me put this in a simple point form using a hypothetical example:

- I have a font (non-unicode) X, which has non latin characters in the range of 32 to 127.
- The same character set is defined in Unicode 3/4 from say 4000.
- Unicode characters 4001 and 4010 form a single composite character which is the same as character 51 in the font X
- There is no Unicode equivalent to the 4001+4010 combination

Now, if I want to render the character 51 of X, in place of the composite character 4001+4010, how should I proceed? Is there a way to map unicode sequences to actual (physical) fonts. Prefarably in the form:

4001,4010 - X,51

 Anuradha





signature.asc
Description: This is a digitally signed message part


[XFree86] help for Screen error

2003-09-06 Thread Bhupinder Saini
Sir/Madam

i have P-lll ,128Mb RAM,8.4GB hardisk Intel 810
Motherboard.

2 years back i installed REdhat 7.0 successfully along

with Win98 ...but i have to format my disk for
certain viruses ..

few months back when i re tried to install Linux with 
windows or alone linux it started givig me FATAL error
of SERVER Failure  .

i am attaching the log file  ..with it 

help me out  
i am very much interested in linux ...i am Computer
B.Tech .

very optimistic abt reply 

Bhupinder Singh

__
Do you Yahoo!?
Yahoo! SiteBuilder - Free, easy-to-use web site design software
http://sitebuilder.yahoo.com
XFree86 Version 4.0.1a / X Window System
(protocol Version 11, revision 0, vendor release 6400)
Release Date: 2 August 2000
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)
Operating System: Linux 2.2.5-22smp i686 [ELF] 
Module Loader present
(==) Log file: /var/log/XFree86.0.log, Time: Fri Aug  8 11:59:42 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, (??) unknown.
(==) ServerLayout Anaconda Configured
(**) |--Screen Screen0 (0)
(**) |   |--Monitor Monitor0
(**) |   |--Device Intel 810
(**) |--Input Device Mouse0
(**) |--Input Device Keyboard0
(**) Option XkbRules xfree86
(**) XKB: rules: xfree86
(**) Option XkbModel pc104
(**) XKB: model: pc104
(**) Option XkbLayout us
(**) XKB: layout: us
(WW) Option XkbVariant requires an string value
(WW) Option XkbOptions requires an string value
(WW) The directory /usr/X11R6/lib/X11/fonts/TrueType does not exist.
Entry deleted from font path.
(**) FontPath set to unix/:7100
(**) RgbPath set to /usr/X11R6/lib/X11/rgb
(==) ModulePath set to /usr/X11R6/lib/modules
(--) using VT number 7

(II) Module ABI versions:
XFree86 ANSI C Emulation: 0.1
XFree86 Video Driver: 0.2
XFree86 XInput driver : 0.1
XFree86 Server Extension : 0.1
XFree86 Font Renderer : 0.1
(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.0.1a, module version = 1.0.0
Module class: XFree86 Font Renderer
ABI class: XFree86 Font Renderer, version 0.1
(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.0.1a, module version = 0.1.0
ABI class: XFree86 Video Driver, version 0.2
(II) PCI: Probing config type using method 1
(II) PCI: Config type is 1
(II) PCI: stages = 0x03, oldVal1 = 0x8050, mode1Res1 = 0x8000
(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 8086,7120 card 8086,7120 rev 03 class 06,00,00 hdr 00
(II) PCI: 00:01:0: chip 8086,7121 card 8086,7121 rev 03 class 03,00,00 hdr 00
(II) PCI: 00:1e:0: chip 8086,2418 card , rev 02 class 06,04,00 hdr 01
(II) PCI: 00:1f:0: chip 8086,2410 card , rev 02 class 06,01,00 hdr 80
(II) PCI: 00:1f:1: chip 8086,2411 card 8086,2411 rev 02 class 01,01,80 hdr 00
(II) PCI: 00:1f:2: chip 8086,2412 card 8086,2412 rev 02 class 0c,03,00 hdr 00
(II) PCI: 00:1f:5: chip 8086,2415 card 4352,5934 rev 02 class 04,01,00 hdr 00
(II) PCI: 01:0a:0: chip 1813,4000 card , rev 02 class 07,80,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.0.1a, module version = 0.1.0
ABI class: XFree86 Video Driver, version 0.2
(II) UnloadModule: scanpci
(II) Unloading /usr/X11R6/lib/modules/libscanpci.a
(II) Bus 1: bridge is at (0:30:0), (0,1,1), BCTRL: 0x06 (VGA_EN is cleared)
(II) Bus 1 I/O range:
[0] -1  0xc000 - 0xc0ff (0x100) IX[B]
[1] -1  0xc400 - 0xc4ff (0x100) IX[B]
[2] -1  0xc800 - 0xc8ff (0x100) IX[B]
[3] -1  0xcc00 - 0xccff (0x100) IX[B]
(II) Bus 1 non-prefetchable memory range:
[0] -1  0xd400 - 0xd40f (0x10) MX[B]
(II) Bus 1 prefetchable memory range:
(--) PCI:*(0:1:0) Intel i810 rev 3, Mem @ 0xd000/26, 0xd410/19
(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 - 0x01ff (0x200) IX[B]E
(II) Active PCI 

[XFree86] Folklore Resources

2003-09-06 Thread folklore
Hello,

I checked your website http://docs.tuke.sk/dwww/menu.html and I believe it is compatible with mine, and I think it would be great to make a link exchange. My name is Paul Cabay and this is my site: "www.utyx.com/folklore".

What do you say? If the answer is yes then all you have to do is to visit my online submission form http://www.utyx.com/folklore/form.html and introduce your data there and your link will be up on my site in a few hours.

And this is my linking information :

URL: http://www.utyx.com/folklore/
Title: Folklore Resources 
Description: folklore related news, books and web resources

or just cut & paste this HTML

-START -

a href=""http://www.utyx.com/folklore">http://www.utyx.com/folklore/"Folklore Resources/a - folklore related news, books and web resources.brbr

-STOP -

Thank you kindly!
Paul Cabay

P.S. Should you consider my email unwanted, you don't need to worry because I will not email you again unless you contact me.



Re: [XFree86] (no subject)

2003-09-06 Thread Lionel Lecoq
standard problem answered at least twice a day for months
your font server has not been started, either start it (use google on the list if you 
don't know
how) or give the font paths in the file section
that would be similar to:

Section Files
 
 
RgbPath /usr/X11R6/lib/X11/rgb
 
 
FontPath   /usr/X11R6/lib/X11/fonts/misc/
FontPath   /usr/X11R6/lib/X11/fonts/75dpi/:unscaled
FontPath   /usr/X11R6/lib/X11/fonts/100dpi/:unscaled
FontPath   /usr/X11R6/lib/X11/fonts/Type1/
FontPath   /usr/X11R6/lib/X11/fonts/Speedo/
FontPath   /usr/X11R6/lib/X11/fonts/75dpi/
FontPath   /usr/X11R6/lib/X11/fonts/100dpi/
 
 
#ModulePath /usr/X11R6/lib/modules
 
EndSection

Lionel
 
--- dupond jean [EMAIL PROTECTED] wrote:
 Hello
  
 I have tapped the command startx but the xwindows do not start and l receive this 
 message:
 could not find font path element unix/:7100 ,removing from list !
 fatal error server:
 could not open default font 'fixed'
  
 help me please.
  
 
 
 
 -
 Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
 Testez le nouveau Yahoo! Mail


__
Do you Yahoo!?
Yahoo! SiteBuilder - Free, easy-to-use web site design software
http://sitebuilder.yahoo.com
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] Combining characters

2003-09-06 Thread Peter \Firefly\ Lund
On Sat, 6 Sep 2003, Anuradha Ratnaweera wrote:

 Now, if I want to render the character 51 of X, in place of the
 composite character 4001+4010, how should I proceed?  Is there a way to
 map unicode sequences to actual (physical) fonts.  Prefarably in the
 form:

I don't think there is a general X way of doing it.

You can do it manually in your own programs... or you can take a look at
Pango and perhaps modify one of the Indic shapers:

http://www.pango.org/

This homepage is not updated anymore since Pango is no longer a
blue-sky research project but a standard component of GTK+.

http://www.gtk.org/

OpenType probably has a way of handling it - but that would only work for
programs that use OpenType...  That would be Pango again ;)

http://www.microsoft.com/typography/tt/tt.htm
http://www.adobe.com/type/opentype/main.html
http://www.agfamonotype.com/software/opentype.asp
http://www.freetype.org/opentype/
http://www.freetype.org/opentype/

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


Re: [XFree86] How to test the ATI Radeon 9200 driver

2003-09-06 Thread William Gallafent
On Fri, 5 Sep 2003, Patrick wrote:

 Where did you get the files to compile?  I did not see the XFre86-4.3.99
 files you mentioned above and is that all you need to update things?

They're at http://the.earth.li/XFree86/develsnaps/ (on the mirror I use). In
form, they resemble standard XFree86 tarballs, so they should build and
install with the usual unpack, make World, make install, make install.man.

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


Re: [XFree86] Kde doesn't start but XFree is ok

2003-09-06 Thread José Angel Rodríguez Leyva
Hi,

I got the solution a few hours later. I just made a symbolic link of 
libexpat.so.1 from /usr/X11R6/lib to /usr/lib. I don't know why it's 
necesary if first dir is declare in /etc/ld.so.conf. After this change, 
everything go fine.

Thanks anyway

José A Rodríguez


On Wed, 3 Sep 2003, José Angel Rodríguez Leyva wrote:

 Greetings,
 
 This is my first post and my first experience with Xfree86. I downloaded 
 and compile Xfree86 for first time today. I made all steps and I don't get 
 any error during compiling process. I could install and then X server 
 start OK, no errors were reported in log file. 
 
 But no desktops starts. When I try to run startx command I got an error 
 message telling that can't load libexpat.so module becouse is missing. I 
 checked on /usr/X11R6/lib directory and it's there.
 
 I'm working on RedHat 9.0 with previously installed Xfree. 
 
 I have a doubt with gcc3. Is it ok for compiling Xfree? Is it specials
 treatments on redhat?
 
 Thanks for your attention.
 
 Jose A Rodriguez
 
 
 
 ___
 XFree86 mailing list
 [EMAIL PROTECTED]
 http://XFree86.Org/mailman/listinfo/xfree86
 


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


[XFree86] please HELP ME

2003-09-06 Thread R N Kaushal
Sir,
My X-server is not starting.As a result,I am not able to run 
Redhat Linux8.0 in graphic mode.I am enclosing details below:
OS-kernel: Linux version 2.4.18-14
Log file:/var/log/XFree86.0.log
Using Config file:/etc/X11/XF86Config
I am using:XFree86 Version 4.2.0{Redhat Linux 
release:4.2.0.71
and:Intel D845GLVA desktop board
Please let me know at the earliest how and where to get the latest 
version and how to install it(I have never done this type of stuff 
before)

 Yours sincerely,
  R.N.KAUSHAL
  INDIA.
___
Medicine meets Marketing; Dr. Swati Weds Jayaram.
Rediff Matchmaker strikes another interesting match !!
Visit http://rediff.com/matchmaker?2
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] VESA modes for Toshiba P25 laptop (GeForce 5200 GO, 1440x900 lcd)

2003-09-06 Thread Andy Goth
On Saturday, September 6, 2003 7:29 am, you wrote:
 i am curious - did you find a solution for the vesa
 1440x900 or even nvidia?

I don't even remember that I was looking, heh.

May I see your XF86Config and XFree86.0.log?  If you already posted them, give 
me a URL to the http://marc.theaimsgroup.com/?l=xfree86 online archive entry.

 i saw 1280x1024 working booting suse82, cutting the 124
 pixels from bottom

and giving you ugly black boxes on the left and right?

 the nvidia driver 4496 dosent have the fxgo5200 0x0324 mode
 listet - question is adding a device..

You can't add it yourself.  You'll have to contact nVidia and let them know 
they missed a card.

 is there any way to turn the fans off by reducing the
 clockspeed of the cpu ?

With Toshibas you can turn the fans off from software, but then you run the 
risk of overheating.  In Linux 2.5/2.6 there's support for changing the CPU 
speed too.  Give that a try.

I am no longer subscribed to the list, as you may have guessed.  Now that I'm 
back at school I don't have time to handle the full volume.  But I suppose 
I'll take an odd question every once in a while. :^)

-- 
   (o .--- Andy Goth --- [EMAIL PROTECTED] --. (__)
\\\_\  || oo )
) `-- http://ioioio.net/  (End communication.) ' |_/\

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


[XFree86] XFree86-4.3.0/YellowDogLinux 3.0 on NuBus PPC not working

2003-09-06 Thread Mehul N. Sanghvi
I am running XFree86-4.3.0 on a NuBus based PowerMac 7100/66 with a
Linux 2.4.20-pre9 kernel. 

I am unable to get anything to happen when I run 'startx'.  I get a
bunch of output lines, then the screen goes blank, then I get put back
at the command line with some more stuff and an error message.  I am
including the log file /var/log/XFree86.0.log in this email message.
Can anyone help out on what the problem is ? 

I have used the Xpmac X11 server, which actually works, but for the
input layer, which causes the mouse to not work and the keys to be
mapped incorrectly.  At least I am assuming its because of the input
layer.


thanks,

   mehul


-  BEGIN LOG FILE --

XFree86 Version 4.3.0 (Yellow Dog Linux release: 4.3.0-2.1e)
Release Date: 27 February 2003
X Protocol Version 11, Revision 0, Release 6.6
Build Operating System: Linux 2.4.22-1asmp ppc [ELF] 
Build Date: 29 August 2003
Build Host: skyfox.terraplex.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-pre9 ([EMAIL PROTECTED]) (gcc version 3.2.2 20030217 
(Yellow Dog Linux 3.0 3.2.2-2a)) #2 Fri Aug 8 08:54:32 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 Sep  6 11:33:34 2003
(==) Using config file: /etc/X11/XF86Config
(==) ServerLayout Anaconda Configured
(**) |--Screen Screen0 (0)
(**) |   |--Monitor Monitor0
(**) |   |--Device Generic OF compatible
(**) |--Input Device Mouse0
(**) |--Input Device Keyboard0
(**) Option XkbRules xfree86
(**) XKB: rules: xfree86
(**) Option XkbModel macintosh
(**) XKB: model: macintosh
(**) Option XkbLayout us
(**) XKB: layout: us
(==) Keyboard: CustomKeycode disabled
(**) FontPath set to unix/:7100
(**) RgbPath set to /usr/X11R6/lib/X11/rgb
(==) ModulePath set to /usr/X11R6/lib/modules
(--) using VT number 7

(WW) Open APM failed (/dev/apm_bios) (No such device)
(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) 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   0x - 0x (0x1) MX[B]
[1] -1  0   0x - 0x (0x1) MX[B]
[2] -1  0   0x - 0x (0x1) IX[B]
[3] -1  0   0x - 0x (0x1) IX[B]
(II) OS-reported resource ranges after removing overlaps with PCI:
[0] -1  0   0x - 0x (0x1) MX[B]
[1] -1  0   0x - 0x (0x1) MX[B]
[2] -1  0   0x - 0x (0x1) IX[B]
[3] -1  0   0x - 0x (0x1) IX[B]
(II) All system resource ranges:
[0] -1  0   0x - 0x (0x1) MX[B]
[1] -1  0   0x - 0x (0x1) MX[B]
[2] -1  0   0x - 0x (0x1) IX[B]
[3] -1  0   0x - 0x (0x1) IX[B]
(II) LoadModule: dbe
(II) Loading /usr/X11R6/lib/modules/extensions/libdbe.a
(II) Module dbe: vendor=The XFree86 Project
compiled for 4.3.0, module version = 1.0.0
Module class: XFree86 Server Extension
ABI class: XFree86 Server Extension, version 0.2
(II) Loading extension DOUBLE-BUFFER
(II) LoadModule: extmod
(II) Loading /usr/X11R6/lib/modules/extensions/libextmod.a
(II) Module extmod: vendor=The XFree86 Project
compiled for 4.3.0, module version = 1.0.0
Module class: XFree86 Server Extension
ABI class: XFree86 Server Extension, version 0.2
(II) Loading extension SHAPE
(II) Loading extension MIT-SUNDRY-NONSTANDARD
(II) Loading extension BIG-REQUESTS
(II) Loading extension SYNC
(II) Loading extension MIT-SCREEN-SAVER
(II) Loading extension XC-MISC
(II) Loading extension XFree86-VidModeExtension
(II) Loading extension XFree86-Misc
(II) Loading extension XFree86-DGA
(II) Loading extension DPMS
(II) Loading extension FontCache
(II) Loading extension TOG-CUP
(II) Loading extension 

[XFree86] Silicon Motion XV Problem

2003-09-06 Thread Oliver Mihatsch
Hi,

I have a problem with the siliconmotion driver.
When I'm using the xv Interface the whole X-Server crashes.
I'm using the cvs branch 4.3.99.8. But the same error occurs with 4.3.0.
I've tried all switches to configure the driver but nothing helps, even
with accel = false it's the same.
Many many thanks for the support.
Oliver
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] ATI Radeon mobility U1

2003-09-06 Thread Johan Herdegard
Hi, I wonder how to get X working with the radeon driver for my laptop with a 
ATI Radeon Mobility U1 graphics card. I've heard it's possible. 

X seems to probe my card correctly when looking in the log-file, but it can't 
determine which driver to use. I can't find much about my specific card in 
forums and documentations.

I attach my log file, looking forward to get a solution.
For the moment I'm stuck with the vesa-driver.

Many thanks in advance.
/ Johan, .se

-- 
Johan Herdegård
[EMAIL PROTECTED]
XFree86 Version 4.3.0
Release Date: 27 February 2003
X Protocol Version 11, Revision 0, Release 6.6
Build Operating System: FreeBSD 4.9 i386 [ELF] 
Build Date: 04 September 2003
	Before reporting problems, check http://www.XFree86.Org/
	to make sure that you have the latest version.
Module Loader present
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 Sep  6 19:09:24 2003
(==) Using config file: /etc/X11/XF86Config
(==) ServerLayout XFree86 Configured
(**) |--Screen Screen0 (0)
(**) |   |--Monitor Monitor0
(**) |   |--Device ATI RADEON
(**) |--Input Device Mouse0
(**) |--Input Device Keyboard0
(**) Option XkbRules xfree86
(**) XKB: rules: xfree86
(**) Option XkbModel pc102
(**) XKB: model: pc102
(**) Option XkbLayout se
(**) XKB: layout: se
(==) Keyboard: CustomKeycode disabled
(**) FontPath set to /usr/X11R6/lib/X11/fonts/misc/,/usr/X11R6/lib/X11/fonts/Speedo/,/usr/X11R6/lib/X11/fonts/Type1/,/usr/X11R6/lib/X11/fonts/75dpi/,/usr/X11R6/lib/X11/fonts/100dpi/
(**) RgbPath set to /usr/X11R6/lib/X11/rgb
(**) ModulePath set to /usr/X11R6/lib/modules
(--) Using syscons driver with X support (version 2.0)
(--) using VT number 9

(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 freebsd
(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 = 0x, mode1Res1 = 0x8000
(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 1002,cab0 card , rev 13 class 06,00,00 hdr 00
(II) PCI: 00:01:0: chip 1002,700f card , rev 01 class 06,04,00 hdr 01
(II) PCI: 00:02:0: chip 10b9,5237 card 10b9,5237 rev 03 class 0c,03,10 hdr 00
(II) PCI: 00:07:0: chip 10b9,1533 card 10b9,1533 rev 00 class 06,01,00 hdr 00
(II) PCI: 00:08:0: chip 10b9,5451 card 0e11,00b0 rev 02 class 04,01,00 hdr 00
(II) PCI: 00:0a:0: chip 104c,ac50 card , rev 02 class 06,07,00 hdr 02
(II) PCI: 00:0b:0: chip 10ec,8139 card 0e11,00b0 rev 20 class 02,00,00 hdr 00
(II) PCI: 00:0c:0: chip 14f1,2f00 card 0e11,8d89 rev 01 class 07,80,00 hdr 00
(II) PCI: 00:0f:0: chip 10b9,5237 card 10b9,5237 rev 03 class 0c,03,10 hdr 00
(II) PCI: 00:10:0: chip 10b9,5229 card 10b9,5229 rev c4 class 01,01,fa hdr 00
(II) PCI: 00:11:0: chip 10b9,7101 card 10b9,7101 rev 00 class 06,80,00 hdr 00
(II) PCI: 00:13:0: chip 104c,8023 card 0e11,00b0 rev 00 class 0c,00,10 hdr 00
(II) PCI: 01:05:0: chip 1002,4336 card 0e11,00b0 rev 00 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 I/O range:
	[0] -1	0	0x9000 - 0x90ff (0x100) IX[B]
	[1] -1	0	0x9400 - 0x94ff (0x100) IX[B]
	[2] -1	0	0x9800 - 0x98ff (0x100) IX[B]
	[3] -1	0	0x9c00 - 0x9cff (0x100) IX[B]
(II) Bus 1 non-prefetchable memory range:
	[0] -1	0	0xf410 - 0xf41f (0x10) MX[B]
(II) Bus 1 prefetchable memory range:
	[0] -1	0	0xf600 - 0xf7ff (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:5:0) ATI Technologies Inc Radeon Mobility U1 rev 0, Mem @ 0xf600/25, 0xf410/16, I/O @ 0x9000/8
(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:
	

Re: [XFree86] How to test the ATI Radeon 9200 driver

2003-09-06 Thread Patrick
On Sat, 6 Sep 2003 15:31:33 +0100 (BST)
William Gallafent [EMAIL PROTECTED] wrote:

 On Fri, 5 Sep 2003, Patrick wrote:
 
  Where did you get the files to compile?  I did not see the
  XFre86-4.3.99 files you mentioned above and is that all you need to
  update things?
 
 They're at http://the.earth.li/XFree86/develsnaps/ (on the mirror I
 use). In form, they resemble standard XFree86 tarballs, so they should
 build and install with the usual unpack, make World, make install,
 make install.man.
 
 -- 
 Bill Gallafent.
 ___


Thanks Bill, I'll bookmark them for later.  As it is, the new ATI 3.4.5
driver is working great!  The Radeon 9200 speeds along very nicely in
both 2D and 3D.  Thought I might have to swap it out for a 9000 when I
first began installing, but with the drivers ATI supplied and some help
from a knowledgable Linux user, it all came together nicely.

Thanks again,
Patrick

-- 
  ---SuSE Linux v8.2 Pro---
Registered Linux User #225206
Life's a garden, Dig It!  --Joe Dirt


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


[XFree86] Radeon 9200 : Screen corruption causing annoying lines flash around the screen.

2003-09-06 Thread Raghu A
Hi,

I have Radeon 9200. It works fine normally but there are lines flashing
around the screen when there is window activity. For e.g. when I resize
an xterm back and forth. I had Radeon 9800 before and did not observe
this.

XFree86 version: XFree86-4.3.0 (-17, latest RedHat RPM).

More details with log and config files are at:
https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=103816

Please include me in cc. I will update the bugzilla entry.

would be happy to try out any fix.
Thanks.
Raghu.

__
Do you Yahoo!?
Yahoo! SiteBuilder - Free, easy-to-use web site design software
http://sitebuilder.yahoo.com
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] LCD monitor: X works in Mandrake, but not in Redhat

2003-09-06 Thread Danny Anderson
Hola!

I have an NEC Multisync LCD1765.  I have not been able to get this monitor
to work with RH9.  I tried Mandrake 9.0 and the monitor worked without
problems.  I tried Mandy for awhile, but I really want to go back to Redhat
if possible.

I have tried to merge the working XF86Config files from M9 into the RH9
version without success.

My attention is currently focused on the horizontal and vertical sync rates.
If I enable the Redhat settings at 60Hz and 60Hz, there are no errors, but
the monitor reports No signal found- going to sleep.   I am currently
booting to a prompt, so I can use CTRL-ALT-BKSPC to log out back to the
prompt.  When I return to the prompt, the screen is full of the typical
messages one gets when logging out of an x server to a prompt.  If I enable
the Mandrake settings (by commenting out the appropriate set of values), I
get the following errors:

(EE) VESA(0): No matching modes
(EE) Screen(s) found, no none have a usable configuration

Fatal server error:
no screens found.

My Frankenstien XF86Config file is enclosed.  I know somebody out there has
the answer or a really good hunch.  All commnets and suggestions
appreciated.  Lenard, your suggestions will be wasted on me, since I am
using a Microsoft newreader until I can get Redhat working or go back to
Mandrake.

Thanks, all!
Danny

//---start XF86Config

# XFree86 4 configuration created by pyxf86config
# - #
# modified heavily by bturnip in attempt to get X   #
# working with NEC Mulitsync LCD 1765.  This monitor#
# worked fine with Mankdrake 9.1 setup, so my strategy  #
# is a merger of the Redhat and Mandrake setups #
# - #

Section ServerLayout
Identifier Default Layout
Screen  0  Screen0 0 0
InputDeviceMouse0 CorePointer
InputDeviceKeyboard0 CoreKeyboard
InputDeviceDevInputMice AlwaysCore
EndSection

Section Files
# RgbPath is the location of the RGB database.  Note, this is the name of
the
# file minus the extension (like .txt or .db).  There is normally
# no need to change the default.

# Multiple FontPath entries are allowed (they are concatenated together)
# By default, Red Hat 6.0 and later now use a font server independent of
# the X server to render fonts.

RgbPath  /usr/X11R6/lib/X11/rgb
FontPath unix/:7100
EndSection

Section Module
Load  dbe
Load  extmod
Load  fbdevhw
Load  glx
Load  record
Load  freetype
Load  type1
Load  dri
EndSection

Section InputDevice
# - #
# Lots of comments deleted here- see XF86ConfigOriginal #
# for instructions about various keyboard options.  #
# - #
Identifier  Keyboard0
Driver  keyboard
Option  XkbRules xfree86
Option  XkbModel pc105
Option  XkbLayout us
EndSection

Section InputDevice
Identifier  Mouse0
Driver  mouse
Option  Protocol IMPS/2
Option  Device /dev/psaux
Option  ZAxisMapping 4 5
Option  Emulate3Buttons no
EndSection

Section InputDevice
# If the normal CorePointer mouse is not a USB mouse then
# this input device can be used in AlwaysCore mode to let you
# also use USB mice at the same time.
Identifier  DevInputMice
Driver  mouse
Option  Protocol IMPS/2
Option  Device /dev/input/mice
Option  ZAxisMapping 4 5
Option  Emulate3Buttons no
EndSection

# - #
# - - - - - -lots of editing starting here- - - - - - - #
# the [Monitor] section immediately following contains  #
# the original redhat values.  Currently (9/6 4:00pm)   #
# I haven't been able to tell if any difference is seen #
# if DisplaySize or Option are commented out or not #
# For values commented out in this first section, the   #
# matching value should be enabled in the second#
# [Monitor] section, which contains values that worked  #
# under Mandrake 9.0#
# - #

Section Monitor
Identifier   Monitor0
VendorName   Monitor Vendor
ModelNameDDCPROBED
#   DisplaySize  340270
HorizSync60.0 - 60.0
#   VertRefresh  60.0 - 60.0
#   Option  dpms
#EndSection
# ---End-of-Redhat-Section- #
#
#
# - #
# Mandrake 9.1  XF86Config settings #
# - #
#Section Monitor
#   Identifier monitor1
#VendorName Plug'n Play
# !!! Trying to find a good adjustment for these values
# !!! With these valuse enabled, the X 

[XFree86] Radeon9000Pro problem

2003-09-06 Thread hristo marinov
Help

-
http://nova.GBG.bg -   ! ,   .# XFree86 4 configuration created by pyxf86config

Section ServerLayout
Identifier Default Layout
Screen  0  Screen0 0 0
InputDeviceMouse0 CorePointer
InputDeviceKeyboard0 CoreKeyboard
InputDeviceDevInputMice AlwaysCore
EndSection

Section Files
# RgbPath is the location of the RGB database.  Note, this is the name of the 
# file minus the extension (like .txt or .db).  There is normally
# no need to change the default.

# Multiple FontPath entries are allowed (they are concatenated together)
# By default, Red Hat 6.0 and later now use a font server independent of
# the X server to render fonts.

RgbPath  /usr/X11R6/lib/X11/rgb
FontPath unix/:7100
EndSection

Section Module
Load  dbe
Load  extmod
Load  fbdevhw
Load  glx
Load  record
Load  freetype
Load  type1
Load  dri
EndSection

Section InputDevice
# Specify which keyboard LEDs can be user-controlled (eg, with xset(1))
#   Option  Xleds 1 2 3

# To disable the XKEYBOARD extension, uncomment XkbDisable.
#   Option  XkbDisable

# To customise the XKB settings to suit your keyboard, modify the
# lines below (which are the defaults).  For example, for a non-U.S.
# keyboard, you will probably want to use:
#   Option  XkbModel  pc102
# If you have a US Microsoft Natural keyboard, you can use:
#   Option  XkbModel  microsoft
#
# Then to change the language, change the Layout setting.
# For example, a german layout can be obtained with:
#   Option  XkbLayout de
# or:
#   Option  XkbLayout de
#   Option  XkbVariantnodeadkeys
#
# If you'd like to switch the positions of your capslock and
# control keys, use:
#   Option  XkbOptionsctrl:swapcaps
# Or if you just want both to be control, use:
#   Option  XkbOptionsctrl:nocaps
#
Identifier  Keyboard0
Driver  keyboard
Option  XkbRules xfree86
Option  XkbModel pc105
Option  XkbLayout us_intl
EndSection

Section InputDevice
Identifier  Mouse0
Driver  mouse
Option  Protocol IMPS/2
Option  Device /dev/psaux
Option  ZAxisMapping 4 5
Option  Emulate3Buttons no
EndSection

Section InputDevice
# If the normal CorePointer mouse is not a USB mouse then
# this input device can be used in AlwaysCore mode to let you
# also use USB mice at the same time.
Identifier  DevInputMice
Driver  mouse
Option  Protocol IMPS/2
Option  Device /dev/input/mice
Option  ZAxisMapping 4 5
Option  Emulate3Buttons no
EndSection

Section Monitor
Identifier   Monitor0
VendorName   Monitor Vendor
ModelNameAOC SPECTRUM 7Clr
DisplaySize  320240
HorizSync30.0 - 64.0
VertRefresh  47.0 - 100.0
Option  dpms
EndSection

Section Device
Identifier  Videocard0
Driver  radeon
VendorName  Videocard vendor
BoardName   ATI Radeon (generic)
VideoRam65536
EndSection

Section Screen
Identifier Screen0
Device Videocard0
MonitorMonitor0
DefaultDepth 8
SubSection Display
Depth 8
Modes640x480
EndSubSection
EndSection

Section DRI
Group0
Mode 0666
EndSection


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-8 ([EMAIL PROTECTED]) (gcc version 3.2.2 20030222 (Red 
Hat Linux 3.2.2-5)) #1 Thu Mar 13 17:18:24 EST 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: Sun Aug 31 15:43:37 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 us_intl
(**) XKB: layout: us_intl
(==) 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

[XFree86] Stopping Maximum Resolution Switches

2003-09-06 Thread GS HUNT
Hello All.

I have a rather unusual problem unlike other resolutions problems, I want 
to use lower resolutions than higher..

In the screen section of the Xconfig file , the resolutions are set to 640x400 
and 800x600 and CTRL ALT +/- cycles through them properly.

However some programs ie Tuxracer, An Xmms Visual GL Plugin,  pick the maxium 
resoultion of my plug and play monitor of 1152X870 which is kinda of a messy.  

Is there something I can do to stop these programs from picking this high 
resolution?

Gary

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


Re: [XFree86] Stopping Maximum Resolution Switches

2003-09-06 Thread John P. Conlon
Try creating a section for that box and monitor combo in your lts.conf 
file and specify a modeline for the monitor.

GS HUNT wrote:

Hello All.

I have a rather unusual problem unlike other resolutions problems, I want 
to use lower resolutions than higher..

In the screen section of the Xconfig file , the resolutions are set to 640x400 
and 800x600 and CTRL ALT +/- cycles through them properly.

However some programs ie Tuxracer, An Xmms Visual GL Plugin,  pick the maxium 
resoultion of my plug and play monitor of 1152X870 which is kinda of a messy.  

Is there something I can do to stop these programs from picking this high 
resolution?

Gary

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

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