Re: SiS driver

2004-02-13 Thread Thomas Winischhofer
Kean Johnston wrote:

All,

Is there any reason why the SiS driver isnt the one Thomas Winischofer 
provides on his site? I recently had very negative experiences with the 
stock SiS driver on a 661FX that his driver solved immediately. Now I 
realized it may have solved just this one problem but it seems as the 
one on his site gets more attention. I know Thomas has submitted other 
fixes into the tree, and may even be the SiS maintainer.
I am, and the current SiS driver (well, more or less) is in CVS (since I 
have write access).

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: A error when compiling XFree864.2 on SELS 8.2 on AMD64 system

2004-02-13 Thread Alan Hourihane
On Fri, Feb 13, 2004 at 10:58:38AM +0800, Yukun Chen wrote:
 Hi All
 
   For some reasons, I have to compile XFree864.2 on SELS 8.2(64bit) with 
 AMD64bit CPU. But when I run make WorldWorld.log on the specific dir, I just get 
 the error 
 
 message in my World.log file as follows:
 
   gcc: cannot specify -o with -c or -S and multiple compilations
   make[2]: ** [imake.o] Error 1
   make[2]: Leaving directory '/xfree86420_release/config/imake
   make[1]: *** [imake.bootstrap] Error 2
   make[1]: Leaving directory '/xfree86420_release'
   make: *** [World] Error 2
 
   The XFree864.2 source packages are gotten from xfree86.org and can be built 
 successfully on other OS such as Redhat. Also, I have ever tried the latest code of 
 XFree864.2 
 
 but failed to achieve. Meanwhile, I searched for it in google but the way taught in 
 such articles dosenot work. Finally , the version of gcc is 3.3
 
   Can anybody be kind to give some ideas for it? 

Even if you fix the build problem above, your going to run into trouble,
as the 4.2 code doesn't have support for the x86_64 architecture of the
AMD64. I guess it may work in it's 32bit mode though, but not having an
AMD64 platform - I really don't know.

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


Re: SiS driver

2004-02-13 Thread Kean Johnston
Thomas Winischhofer wrote:

I am, and the current SiS driver (well, more or less) is in CVS (since I 
have write access).
Ok I will try a get. This was with RC2 that I had the problems, and your 
driver dated 2004-02-11 from your website fixed the problem (with one 
small Imake change). Would you like more details or are you on top of this?

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


Radeon XvMc support

2004-02-13 Thread Andreas
Hi

Does anyone know (or have some contacts at ATI that knows) what the
current status of XvMc hardware support for radeon cards is?

I'm using a fanless EPIA 5000 with fanless Radeon 9200SE PCI and really
need this for smooth dvd playback.

Thanks in advanced!
-Andreas

ps. I'm not part of any of the lists so please CC me on replys. ds.
-- 
\_/ 
 ( _ ) -(_)-  Doctor... remember...
 ~O o~__/ \Always do the right thing.
 (._.) |\ -Spike Lee
___|_|_|_
___
Devel mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/devel


Re: XOpenDisplay for new X Windows Programmer.

2004-02-13 Thread Rick Beldin
First question:  Am I in the right place.  I am trying to write a
simple X Window program but XFee86 seems to focus on video cards or
chips.  So, if I'm not in the right place please tell me where to go but
not like my wife does.
Probably not the right place.  I'm not sure but perhaps some newsgroup
like linux.dev.X11 or comp.programming.X (not sure about this one).
If this is the place, I am starting into X Window programming and I
can't even get the simplest program to run.  It compiles and links fine
but always fails to make the connection to the display manager.  I have
spent 2 days pouring over the internet and trying all sorts of stuff but
nothing has worked.
Don't hardcode in the string to XOpenDisplay().  Pass a NULL, and it
will use value of DISPLAY environment.   I think it is probably trying
to specifically connection to port 6000 on localhost, which on your system
X may not be listening.
Your program doesn't try to create any windows.

Here is a skeleton that I use to start all my test programs:

#include X11/Xlib.h
#include X11/Xatom.h
#include stdio.h


void main(int argc, char *argv[])
{
Display *display;
Window my_window;
int screen;
XEvent event;
display = XOpenDisplay(NULL);
if (display == NULL)
{
printf(error opening display\n);
exit(0);
}
screen = DefaultScreen(display);
XSynchronize(display, 1);
my_window =
XCreateSimpleWindow(display,
   RootWindow(display,screen),
   100,100,
   100,100,
   10,
   BlackPixel(display,screen),
   WhitePixel(display,screen));
XSelectInput(display, my_window, 0x);
XMapWindow(display,my_window);
XFlush(display);
while (1)
{
XNextEvent(display,event);
printf(Event recieved is %d\n,event.type);
}
}

--
+--+
| Rick Beldin|  Hewlett-Packard Company|
||  Global Solutions Engineering   |
||  20 Perimeter Summit|
||  Atlanta, GA 30319  |
+--+
___
Devel mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/devel


Re: trivial patch for startx.cpp

2004-02-13 Thread Marc Aurele La France
On Fri, 13 Feb 2004, Tyler Retzlaff wrote:

 Everywhere else XCOMM start at col 0 except for startx.cpp (change
 since xf43).  Request that the following trivial patch be applied
 to make startx.cpp XCOMM usage consistent with the rest of tree.

If you read the notice that accompanied the change you are refering to,
you will see that this change of yours is unnecessary.

Furthermore, it is incomplete as there are three other occurrences of
XCOMM preceded by whitespace.

 Index: startx.cpp
 ===
 RCS file: /cvs/xc/programs/xinit/startx.cpp,v
 retrieving revision 3.18
 diff -u -p -r3.18 startx.cpp
 --- startx.cpp  22 Aug 2003 19:27:33 -  3.18
 +++ startx.cpp  13 Feb 2004 06:28:27 -
 @@ -82,7 +82,7 @@ fi
  whoseargs=client
  while [ x$1 != x ]; do
  case $1 in
 -XCOMM '' required to prevent cpp from treating /* as a C comment.
 +XCOMM '' required to prevent cpp from treating /* as a C comment.
  /''*|\./''*)
 if [ $whoseargs = client ]; then
 if [ x$clientargs = x ]; then

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 developer and VP.  ATI driver and X server internals.

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


Re: Radeon XvMc support

2004-02-13 Thread Alex Deucher
--- Andreas [EMAIL PROTECTED] wrote:
 Hi
 
 Does anyone know (or have some contacts at ATI that knows) what the
 current status of XvMc hardware support for radeon cards is?
 
 I'm using a fanless EPIA 5000 with fanless Radeon 9200SE PCI and
 really
 need this for smooth dvd playback.

Ati hasn't released the databooks for the xvmc stuff on their chips
(could be a license issue -- perhaps they licensed it from a 3rd
party?).  anyway, they did provide a binary module with their DDK, but
at the moment, that's it.

FWIW, the via and savage drivers have (apparently) working XvMC
implementations.  the one for savage compiles with the
savage-2-0-0-branch in DRI cvs, however, I haven't gotten a chance to
try it yet.

Alex

 
 Thanks in advanced!
 -Andreas
 
 ps. I'm not part of any of the lists so please CC me on replys. ds.
 -- 
 \_/ 
  ( _ ) -(_)-  Doctor... remember...
  ~O o~__/ \Always do the right thing.
  (._.) |\ -Spike Lee
 ___|_|_|_


__
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


Re: Radeon XvMc support

2004-02-13 Thread Alex Deucher
--- Torgeir Veimo [EMAIL PROTECTED] wrote:
 On Fri, 2004-02-13 at 07:40 -0800, Alex Deucher wrote:
 
  --- Andreas [EMAIL PROTECTED] wrote:
   Hi
   
   Does anyone know (or have some contacts at ATI that knows) what
 the
   current status of XvMc hardware support for radeon cards is?
   
   I'm using a fanless EPIA 5000 with fanless Radeon 9200SE PCI and
   really
   need this for smooth dvd playback.
  
  Ati hasn't released the databooks for the xvmc stuff on their chips
  (could be a license issue -- perhaps they licensed it from a 3rd
  party?).  anyway, they did provide a binary module with their DDK,
 but
  at the moment, that's it.
  
  FWIW, the via and savage drivers have (apparently) working XvMC
  implementations.  the one for savage compiles with the
  savage-2-0-0-branch in DRI cvs, however, I haven't gotten a chance
 to
  try it yet.
 
 Is the DDK available somewhere except passing the ATI developer
 relation
 lottery test?

Not that I know of.  You have to be registered with ATI to access it.

Alex

 
 -- 
 Torgeir Veimo [EMAIL PROTECTED]
 


__
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


Re: 4.4.0 status update

2004-02-13 Thread David Dawes
On Sun, Jan 25, 2004 at 09:28:27PM -0500, David Dawes wrote:
XFree86 4.4.0 release status update.

I'm planning to tag the third 4.4.0 release candidate (4.3.99.903) within
the next week.

This was delayed by the licence discussion.  I'm going to tag 4.4.0 RC3
(4.3.99.903) tomorrow.

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


Re: 4.4.0 status update

2004-02-13 Thread Thomas Winischhofer
David Dawes wrote:
On Sun, Jan 25, 2004 at 09:28:27PM -0500, David Dawes wrote:

XFree86 4.4.0 release status update.

I'm planning to tag the third 4.4.0 release candidate (4.3.99.903) within
the next week.


This was delayed by the licence discussion.  I'm going to tag 4.4.0 RC3
(4.3.99.903) tomorrow.
What's the estimated release date? I have quite a big SiS driver update 
in the queue which MUST go into 4.4 otherwise it is useless on newer 
chipsets. Just need to do some testing first which would take about a week.

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