CVS Update: xc (branch: trunk)

2004-02-14 Thread David Dawes
CVSROOT:/home/x-cvs
Module name:xc
Changes by: [EMAIL PROTECTED]   04/02/14 09:00:10

Log message:
  Fix comment typo

Modified files:
  xc/programs/Xserver/hw/xfree86/common/:
xf86PciInfo.h 
  
  Revision  ChangesPath
  1.158 +2 -2  xc/programs/Xserver/hw/xfree86/common/xf86PciInfo.h

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


CVS Update: xc (branch: trunk)

2004-02-14 Thread David Dawes
CVSROOT:/home/x-cvs
Module name:xc
Changes by: [EMAIL PROTECTED]   04/02/14 18:16:50

Log message:
  various doc updates for 4.4.0 RC3
  + spell check

Modified files:
  xc/programs/Xserver/hw/xfree86/doc/sgml/:
LICENSE.sgml OpenBSD.sgml README.sgml RELNOTES.sgml 
SiS.sgml index.pre 
  
  Revision  ChangesPath
  1.25  +71 -12xc/programs/Xserver/hw/xfree86/doc/sgml/LICENSE.sgml
  1.33  +2 -2  xc/programs/Xserver/hw/xfree86/doc/sgml/OpenBSD.sgml
  3.139 +28 -16xc/programs/Xserver/hw/xfree86/doc/sgml/README.sgml
  1.109 +22 -13xc/programs/Xserver/hw/xfree86/doc/sgml/RELNOTES.sgml
  3.9   +2 -2  xc/programs/Xserver/hw/xfree86/doc/sgml/SiS.sgml
  1.23  +2 -2  xc/programs/Xserver/hw/xfree86/doc/sgml/index.pre

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


CVS Update: xc (branch: trunk)

2004-02-14 Thread David Dawes
CVSROOT:/home/x-cvs
Module name:xc
Changes by: [EMAIL PROTECTED]   04/02/14 18:23:43

Log message:
  update formatted docs

Modified files:
  ./:
RELNOTES 
  xc/programs/Xserver/hw/xfree86/doc/:
LICENSE README README.OpenBSD README.SiS RELNOTES 
  
  Revision  ChangesPath
  1.33  +71 -60xc/RELNOTES
  1.27  +146 -52   xc/programs/Xserver/hw/xfree86/doc/LICENSE
  3.138 +25 -15xc/programs/Xserver/hw/xfree86/doc/README
  1.47  +2 -2  xc/programs/Xserver/hw/xfree86/doc/README.OpenBSD
  3.20  +4 -4  xc/programs/Xserver/hw/xfree86/doc/README.SiS
  3.131 +71 -60xc/programs/Xserver/hw/xfree86/doc/RELNOTES

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


Re: Virtual Xinerama

2004-02-14 Thread Jan Dittmer
Alex Deucher wrote:
should work for driver based xinerama extensions. Ideally the official
extension would be extended to handle both cases.  If you come up with
a patch, please post!
I started to dig through the code to implement some new config options 
to basically being able to specify a vertical and horizontal split to 
the screens in the ServerLayout section (just as a start to get familar 
with the code).
What I've managed to do so far is to parse the variables into some new 
fields of the confScreenRec structure.
Now I'm trying to access this information from the panoramiX extension - 
but failed. Given the screen number, how do I access the associated 
confScreenRec (or confLayoutRec) structure?

Thanks,

Jan



pgp0.pgp
Description: PGP signature


Slight progress on XFree86 ffb driver for Solaris/SPARC

2004-02-14 Thread Matt Prazak
I appreciate the feedback I've recieved so far on this issue, as XFree86 is a
bit bigger than I'm used to.

For the record, I'm using the XFree86  4.3.99.902 source tarball (with one
compile fix from the devel mailing list) and am testing on Solaris 9 12/02 and
an Ultra 30 with a Creator 3D card.   I used the following host.def to get a
debuggable server to compile:

  #ifndef _HOST_DEF
  #define _HOST_DEF

  /* From build documentation for Solaris */
  #define BuildXFree86OnSparcSunOSYES
  #define ThreadedX   NO

  /* Just build XFree86 and not any Xsun servers */
  #define XsunServer  NO

  /* For the sake of debugging */
  #define OptimizedCDebugFlags-g
  #define InstallXserverSetUIDNO
  #define DoLoadableServerNO
  #define BuildFonts  NO

  /* Needed to avoid linking errors when building XFree86 executable */
  #define AsVISOption -xarch=v8plusa
  #define UseElfFormatYES
  #define XF86CardDrivers sunffb

  #endif /* #ifndef _HOST_DEF */


I traced the first roadblock in getting the XFree86 ffb driver working on
Solaris to a function called CheckSbusDevice() in xf86sbusBus.c.  The really
big issue is that Sun's ffb kernel driver does not implement the FBIOGATTR and
FBIOGTYPE ioctl() requests, and some on-line searching reveals that the
requests defined in the header file sys/visual_io.h are a better bet. 
Unfortunately, there doesn't appear to be suitable alternatives to FBIOGATTR
and FBIOGTYPE in that header.

I ran the command truss -f ffbconfig -prconf to see where Sun's programmers
might be getting the required information, and I am seeing the following calls
to ioctl() which appear to be using undocumented requests:

  ...
  11435:  ioctl(3, (('F'8)|80), 0x0002D778) = 0
  11435:  ioctl(3, (('F'8)|84), 0x0002D774) = 0
  11435:  ioctl(3, (('F'8)|85), 0x0002D5E0) = 0
  11435:  ioctl(3, (('F'8)|94), 0x0002D5D0) = 0
  ...
  11435:  ioctl(3, (('F'8)|95), 0x0002D5D0) = 0
  11435:  ioctl(3, (('F'8)|92), 0x0002D5D8) = 0
  11435:  ioctl(3, (('F'8)|93), 0x0002D5D8) = 0
  ...

Do these look familiar to anyone?  I have grepped my whole hard drive with no
luck in finding definitions or documentation of these requests.  Also, some
searches on Goole report people with similar problems...but no answers,
unfortunately.

Matt


__
Do you Yahoo!?
Yahoo! Finance: Get your refund fast by filing online.
http://taxes.yahoo.com/filing.html
___
Devel mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/devel


[XFree86] 73.HK. amazing size

2004-02-14 Thread Selena Carson
drop the hammer on the next girl you screw...

http://www.zzzsattf.com/vp5




















No more of this sort of material. Honoured in 24-48 hours.
http://aspire.amilsdcx.com/a.html
 


that'd eater inundate bragging bernadine metzler teethe xylophone plucky upton anna 
n8


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


[XFree86] Bachelor's Diploma, Master's, or PhD - No Classes Necessary, citric remember calumny basophilic

2004-02-14 Thread Simone Monroe
Academic Qualifications available from prestigious NON–ACCREDITTED 
universities.

Do you have the knowledge and the experience but lack the qualifications?

Are you getting turned down time and time again for the job of your dreams because you just don't have the right letters after your name?

Get the prestige that you deserve today.

Move ahead in your career today.

Bachelors, Masters and PhD's available in your field.

No examinations! No classes! No textbooks.


Call to register and receive your qualifications within days.

24 hours a day 7 days a week.


1-603-457-0202 - USA



No more ads: www.firstlevelsales.com/rems/adoff/

mullen

billfold bellmen burglarproof rumble dusseldorf knew pot console doughnut valhalla amende apathetic holler apology collard gigavolt vermont hydrocarbon implantation florence cocktail 


Re: [XFree86] linux and windows.

2004-02-14 Thread NUKE THEM
This mailinglist is for XFree86. This is the program managing windows (with a 
small w at the beginning) on Unix-based systems like Linux. You should 
probably go to :

http://www.linuxforum.com/forums/

or fast information to:

http://www.linux.org/info/index.html

Hope this helps.

LLAP

Patrick


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


Re: [XFree86] linux and windows.

2004-02-14 Thread shabir mohammed
hello,
  Thank you so much for your help.Both the links came
very useful.i am new to linux and i hope i will get
more help to know more on linux.once again i thank you
very much for your reply.
  shabir.



--- NUKE THEM [EMAIL PROTECTED] wrote:
 This mailinglist is for XFree86. This is the program
 managing windows (with a 
 small w at the beginning) on Unix-based systems
 like Linux. You should 
 probably go to :
 
 http://www.linuxforum.com/forums/
 
 or fast information to:
 
 http://www.linux.org/info/index.html
 
 Hope this helps.
 
 LLAP
 
 Patrick
 
 
 ___
 XFree86 mailing list
 [EMAIL PROTECTED]
 http://XFree86.Org/mailman/listinfo/xfree86


__
Do you Yahoo!?
Yahoo! Finance: Get your refund fast by filing online.
http://taxes.yahoo.com/filing.html
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] Xfree86 problem

2004-02-14 Thread Craig



i've just installed redhat 8.0 on to my computer, 
all worked fine except for the display, whixg was incorrectly scaled. it was 
like the resoloution was set very low. I attempted to change the resoloution but 
it stil wouldn't work. sometimes the GUI would fail to load completely. My video 
card had been correctly detected, but my monitor just used generic drivers. 
initially i was using Xfree86 v 4.0.2, which I recently updated to v4.2.0. this 
removed the original problem, my monitor now displays graphics in the correct 
size, however a new problem has emerged. redhat boots fine right up to loading 
the GUI, but the login screen doesnt come up. All i get is a blank desktop with 
my mouse pointer on it. the pointer shows that the computer is processing, but 
nothing happens. I cna freely move the mouse. I dont know much about linux 
systems, but im wanting to learn, hence installing it, so any help would be very 
gratefully received.

craig

P.S. here's a few other bits of info you may find 
useful
 
OS: 

 redhat linux v.2.4.18-14
 architecture: 

  i686
 
Monitor:EM-171

P.P.S i'v tried looking for linux drivers for my 
monitor but with out luck, I can't even find the manufacturers 
website.


[XFree86] Xfree86 config

2004-02-14 Thread ashton honnecke
Hello All,
My name is Ashton and I am having some trouble reconfiguring my
XFree86Config.
I (Red Carpet) just upgraded from Xfree86 4.3.0-2.90.43 to
4.3.0-2.90.55.  This seems to have changed the way that my XF86Config is
interpreted.  I had originally configured it with Matrox Powerdesk.  
I had a dual head display where both monitors together were treated as
one monitor (the desktop spanned across both monitors).  When I
upgraded, I had two monitors that displayed the exact same image as each
other, and a desktop that was as wide as two monitors would need.  The
desktop now scrolls to the left and the right.  I seem to be able to get
it working, except the toolbars that I have won't span both screens. It
is as if I have two desktops right next to each other, not one very wide
desktop.
Powerdesk seems to not support 4.3.0-2.90.55, but I don't really want
to go back to 4.3.0-2.90.43.  I was wondering If anyone here could tell
me what was going on.  Do I just need to reconfigure my config file? Or,
am I out of luck without the powerdesk config.

# Begin XFree86Config #

Section ServerLayout
Identifier Matrox PowerDesk configured.
Screen Display Merged 0 0
InputDeviceMouse0 CorePointer
InputDeviceKeyboard0 CoreKeyboard
EndSection
 
Section Files
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
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
Identifier  DevInputMice
Driver  mouse
Option  Protocol IMPS/2
Option  Device /dev/input/mice
Option  ZAxisMapping 4 5
Option  Emulate3Buttons no
EndSection
 
Section Monitor
Identifier   Display 1
VendorName   Syntax
ModelNameSlimAGE 1821
DisplaySize  380290
HorizSync30.0 - 81.0
VertRefresh  40.0 - 76.0
Option   dpms
EndSection
 
Section Monitor
Identifier   Display 2
VendorName   Syntax
ModelNameSlimAGE 1821
DisplaySize  380290
HorizSync30.0 - 81.0
VertRefresh  40.0 - 76.0
Option   dpms
EndSection
 
Section Monitor
Identifier   Display Merged
VendorName   Syntax
ModelNameSlimAGE 1821
DisplaySize  380290
HorizSync30.0 - 81.0
VertRefresh  40.0 - 76.0
EndSection
 
Section Device
Identifier  MATROX CARD 1
Driver  mga
VendorName  Videocard vendor
BoardName   Matrox Millennium G550
Option  hw cursor off
BusID   PCI:1:0:0
EndSection
 
Section Device
Identifier  MATROX CARD 2
Driver  mga
VendorName  Videocard vendor
BoardName   Matrox Millennium G550
Option  hw cursor off
BusID   PCI:1:0:0
Screen  1
EndSection
 
Section Screen
Identifier Display 1
Device MATROX CARD 1
MonitorDisplay 1
DefaultDepth 16
SubSection Display
Depth 16
Modes1280x1024 1280x960 1152x864 1024x768
800x600 640x480
EndSubSection
EndSection
 
Section Screen
Identifier Display 2
Device MATROX CARD 2
MonitorDisplay 2
DefaultDepth 16
SubSection Display
Depth 16
Modes1280x1024 1280x960 1152x864 1024x768
800x600 640x480
EndSubSection
EndSection
 
Section Screen
Identifier Display Merged
Device MATROX CARD 1
MonitorDisplay Merged
DefaultDepth 16
Option  Monitor2Position LeftOf
Option  MergedFB
Option  MetaModes 1280x1024-1280x1024 1280x960-1280x960
1152x864-1152x864 1024x768-1024x768 800x600-800x600 640x480-640x480
1280x1024 1280x960 1152x864 1024x768 800x600 640x480 
Option  Monitor2HSync 30.0-81.0 
Option  Monitor2VRefresh 40.0-76.0 
SubSection Display
Virtual   2560 1024
Depth 16
Modes1280x1024 1280x960 1152x864 1024x768
800x600 640x480
EndSubSection
EndSection
 
Section DRI
Group0
Mode 0666
EndSection

# End XFree86Config 

[XFree86] KDM dies with signal 11

2004-02-14 Thread Gerhard W. Gruber
I'm not sure if I should report this here, but I experience some problems with
KDM. I don't know if this is the right place to go, but it was mentioned in
the xdm.log file to report it here.

Lately I very often have the problem, that KDM dies when I log out after a
session. The only things I changed inbetween is that I installed VMWare
4.0.5.6030 but I'm not sure if this is the cause, because now it also dies
when I don't use vmware. I'm not sure if it is related to the screenblanker or
OpenGL in general. It seems that this mostly happens after using some
screenblanker. Even looking only into the preview of the control center seems
to suffice. When I do some normal stuff and log out then this doesn't happen.

Any suggestions on what I can do?

-- 
Gerhard Gruber
Maintainer of
SoftICE for Linux - http://pice.sourceforge.net/
Fast application launcher - http://sourceforge.net/projects/launchmenu

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


[XFree86] problem with fullscreen with quake3

2004-02-14 Thread Yool
hHelo!
i have a problem to exec quake3 on fullscreen under xfce4 (and the other wm too), 
 i've always see a bit of taskbar (with a title quake III arena ect.) and cant see 
 a bit lower screen of the game  :/.
But when i exec q3 dirctly with .xinitrc (exec /path to/quake3) 
i dont have this problem.
Maybe i have to exec q3 with some switch or smth?
help plizz
yool
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] Bachelor's Diploma, Master's, or PhD - No Classes Necessary, drophead granitic flow nameplate

2004-02-14 Thread Rodger Mcgill
Academic Qualifications available from prestigious NON–ACCREDITTED 
universities.

Do you have the knowledge and the experience but lack the qualifications?

Are you getting turned down time and time again for the job of your dreams because you just don't have the right letters after your name?

Get the prestige that you deserve today.

Move ahead in your career today.

Bachelors, Masters and PhD's available in your field.

No examinations! No classes! No textbooks.


Call to register and receive your qualifications within days.

24 hours a day 7 days a week.


1-603-457-0202 - USA



No more ads: www.firstlevelsales.com/rems/adoff/

foolhardy

bundy design raj creature bosonic cogent fatima lance drastic admiral woman agony belief devisee boy hoyden connivance oh cancelling lakehurst cossack advisor lampoon sachs entertain edgewise roadside cowpea hillbilly pall gymnastic desolater impalpable volunteer honeysuckle consul griffith 


[XFree86] Problem with fullscreen - quake3

2004-02-14 Thread Yool
Helo!
i have a problem to exec quake3 on fullscreen under xfce4 (and the other wm too), 
i've always see a bit of taskbar (with a title quake III arena ect.) and cant see 
a bit lower screen of the game  :/.
But when i exec q3 dirctly with .xinitrc (exec /path_to/quake3) 
i dont have this problem.
Maybe i have to exec q3 from aterm with some switch or smth?
help plizz
yool
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] Server Error

2004-02-14 Thread Abijith K
Server Error.

My X server doesn't start and I don't know how to add UNIX_SOCKETS to 
the kernel so that I can startx please help me.  

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