CVS Update: xc (branch: trunk)

2003-07-01 Thread Egbert Eich
CVSROOT:/home/x-cvs
Module name:xc
Changes by: [EMAIL PROTECTED]   03/07/01 05:40:04

Log message:
  + Hopefully this is a more portable version of the Matrox fixes now.
PLEASE TEST

Modified files:
  xc/programs/Xserver/hw/xfree86/drivers/mga/:
mga_driver.c 
  
  Revision  ChangesPath
  1.235 +22 -15xc/programs/Xserver/hw/xfree86/drivers/mga/mga_driver.c

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


CVS Update: xc (branch: trunk)

2003-07-01 Thread Egbert Eich
CVSROOT:/home/x-cvs
Module name:xc
Changes by: [EMAIL PROTECTED]   03/07/01 06:05:34

Log message:
   263. Fixed order of name and filename in encodings.dir files generated by
mkfontscale (Roland Mainz).

Modified files:
  xc/programs/Xserver/hw/xfree86/:
CHANGELOG 
  xc/programs/mkfontscale/:
mkfontscale.c 
  
  Revision  ChangesPath
  3.2761+3 -1  xc/programs/Xserver/hw/xfree86/CHANGELOG
  1.9   +2 -2  xc/programs/mkfontscale/mkfontscale.c

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


CVS Update: xc (branch: trunk)

2003-07-01 Thread David Dawes
CVSROOT:/home/x-cvs
Module name:xc
Changes by: [EMAIL PROTECTED]   03/07/01 12:16:34

Log message:
  Preload the correct libraries for mkfontscale on FreeBSD.

Modified files:
  xc/config/cf/:
FreeBSD.cf X11.tmpl 
  
  Revision  ChangesPath
  3.132 +4 -1  xc/config/cf/FreeBSD.cf
  1.209 +6 -3  xc/config/cf/X11.tmpl

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


CVS Update: xc (branch: trunk)

2003-07-01 Thread David Dawes
CVSROOT:/home/x-cvs
Module name:xc
Changes by: [EMAIL PROTECTED]   03/07/01 19:13:56

Log message:
   265. Fix initialisation in xauth (Martin Birgmeier).

Modified files:
  xc/programs/Xserver/hw/xfree86/:
CHANGELOG xf86Date.h 
  xc/programs/xauth/:
gethost.c 
  
  Revision  ChangesPath
  3.2763+2 -1  xc/programs/Xserver/hw/xfree86/CHANGELOG
  1.36  +2 -2  xc/programs/Xserver/hw/xfree86/xf86Date.h
  3.17  +3 -2  xc/programs/xauth/gethost.c

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


MGA fixes don't compile

2003-07-01 Thread Dr Andrew C Aitchison

 260. Disabled mode writeback to client program from MGA driver (Egbert 
Eich).

This doesn't compile on RedHat 6.2 / egcs-2.91.66

mga_driver.c:3542: warning: preprocessing directive not recognized within macro arg
mga_driver.c:3542: warning: preprocessing directive not recognized within macro arg
mga_driver.c:3542: warning: preprocessing directive not recognized within macro arg
mga_driver.c:3542: warning: preprocessing directive not recognized within macro arg
mga_driver.c:3542: warning: preprocessing directive not recognized within macro arg
mga_driver.c:3542: warning: preprocessing directive not recognized within macro arg
mga_driver.c: In function `MGASwitchMode':
mga_driver.c:3503: undefined or invalid # directive
mga_driver.c:3505: undefined or invalid # directive
mga_driver.c:3507: undefined or invalid # directive
mga_driver.c:3509: undefined or invalid # directive
mga_driver.c:3523: undefined or invalid # directive
mga_driver.c:3527: undefined or invalid # directive
mga_driver.c: In function `MGAAdjustFrame':
mga_driver.c:3609: warning: implicit declaration of function `HALSetDisplayStart'
make: *** [mga_driver.o] Error 1

This patch expands the macro MGA_HAL() thus allowing the code to compile.

-- 
Dr. Andrew C. Aitchison Computer Officer, DPMMS, Cambridge
[EMAIL PROTECTED]   http://www.dpmms.cam.ac.uk/~werdna
Index: mga_driver.c
===
RCS file: /home/CVS/XFree86/xc/programs/Xserver/hw/xfree86/drivers/mga/mga_driver.c,v
retrieving revision 1.234
diff -u -r1.234 mga_driver.c
--- mga_driver.c2003/06/30 16:52:56 1.234
+++ mga_driver.c2003/07/01 07:32:12
@@ -3490,15 +3490,18 @@
 char sCmdIn[256];
 char sCmdOut[256];
 FILE* fdIn;
+#ifdef MATROX_WRITEBACK
 FILE* fdOut;
 #endif
+#endif
 MGAPtr pMga;
 ScrnInfoPtr pScrn = xf86Screens[scrnIndex];
 pMga = MGAPTR(pScrn);
  
 if  (mode-Flags  0x8000) {
 #ifdef USEMGAHAL
- MGA_HAL(
+  MGAPtr pMga = MGAPTR(pScrn);
+  if (pMga-HALLoaded  HAL_CHIPSETS) {
fdIn = fopen(/tmp/mgaDriverIn, rt);
 #ifdef MATROX_WRITEBACK
fdOut = fopen(/tmp/mgaDriverOut, wt);
@@ -3539,7 +3542,7 @@
mode-Flags = 0x7FFF;
return FALSE;
}
-   )
+  }
 #endif
return FALSE; 
 }   else


Re: bugzilla #439: bufSize in lib/GL/glx/glxcmds.c can be too large.

2003-07-01 Thread Egbert Eich
Ian Romanick writes:
  
  I looked into the code, and I now understand what's going on.  Alexis 
  made a good catch of a very subtle bug!  The main problem that I had was 
  that it wasn't 100% clear at first glance how bufSize / buf / pc were 
  used.  Some form of - 8 should be applied to bufSize.  I have attached 
  the patch that I plan to apply to the DRI tree.  I suspect that it has 
  only cosmetic and / or commentary differences from your patch.
  
  Some things have moved around in the DRI tree, so this patch probably 
  won't apply to the XFree86 tree.


We can wait until the DRI stuff is merged back again.
The patch indeed is very similar to what has been proposed in #439.

I've also looked at the GLX code. At line 671 in glxext.c
there is :
maxSize = ctx-bufSize - sizeof(xGLXRenderLargeReq);

Wouldn't we have to add sz_xGLXRenderReq there again?
I suppose if the size is to small it is saver as if it is too big.

Would you mind taking bug #439 and close it when the code is 
scheduled for merger with XFree86?

Thanks a lot!

   Egbert.

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


Remove redundant SharedLibObjCompile

2003-07-01 Thread Nick Hudson
Hi,

I'm playing with the X build infrastructure and I noticed that 
SharedLibObjCompile is redundant. Attached is a patch to remove it.

Nick
ps. see http://mail-index.netbsd.org/tech-x11/2003/06/02/0001.html for what 
I'm trying to achieve.


Index: config/cf/Imake.rules
===
RCS file: /cvs/xc/config/cf/Imake.rules,v
retrieving revision 3.119
diff -c -r3.119 Imake.rules
*** config/cf/Imake.rules	2003/05/29 15:31:23	3.119
--- config/cf/Imake.rules	2003/06/09 19:49:22
***
*** 123,129 
   * LibObjCompile		(dir,options)
   * DebuggedLibObjCompile	(options)
   * ProfiledLibObjCompile	(options)
-  * SharedLibObjCompile		(options)
   * NormalLibraryObjectRule	()
   * NormalFortranObjectRule	()
   * ObjectFromSpecialSource	(dst,src,flags)
--- 123,128 
***
*** 2277,2289 
  
  #ifndef UnsharedLibObjCplusplusCompile
  #define UnsharedLibObjCplusplusCompile(options) LibObjCplusplusCompile(unshared,$(CXXDEBUGFLAGS) $(CXXLIBDEBUGFLAGS) options)
- #endif
- 
- /*
-  * SharedLibObjCompile - compile fragment for shared objects
-  */
- #ifndef SharedLibObjCompile
- #define SharedLibObjCompile(options) LibObjCompile(shared,options $(SHLIBDEF) $(SHAREDCODEDEF) $(PICFLAGS) $(CDEBUGFLAGS) $(CLIBDEBUGFLAGS))
  #endif
  
  /*
--- 2276,2281 
Index: config/cf/necLib.rules
===
RCS file: /cvs/xc/config/cf/necLib.rules,v
retrieving revision 1.3
diff -c -r1.3 necLib.rules
*** config/cf/necLib.rules	2001/01/17 16:22:32	1.3
--- config/cf/necLib.rules	2003/06/09 19:49:22
***
*** 33,40 
  #define SeparateSharedCompile NO
  #endif
  
- #define SharedLibObjCompile(options) $(_NULLCMD_)
- 
  /*
   * InstallSharedLibrary - generate rules to install the shared library.
   */
--- 33,38 
Index: config/cf/sv3Lib.rules
===
RCS file: /cvs/xc/config/cf/sv3Lib.rules,v
retrieving revision 3.6
diff -c -r3.6 sv3Lib.rules
*** config/cf/sv3Lib.rules	2003/04/14 20:35:50	3.6
--- config/cf/sv3Lib.rules	2003/06/09 19:49:22
***
*** 103,121 
  #endif
  
  /*
-  * SharedLibObjCompile - compile fragment for shared objects
-  */
- #ifndef SharedLibObjCompile
- #define SharedLibObjCompile(options) $(RM) shared/$@ 	   @@\
- 	cat import.h $*.c _$*.c   @@\
- $(CC) -c $(ANSICCOPTIONS) $(CCOPTIONS) $(ALLDEFINES) options \ @@\
- $(SHLIBDEF) $(SHAREDCODEDEF) $(PICFLAGS) $(CDEBUGFLAGS) $(CLIBDEBUGFLAGS) \@@\
- _$*.c  @@\
- 	$(MV) _$*.o shared/$@  @@\
- 	$(RM) _$*.c
- #endif
- 
- /*
   * NormalSharedLibObjCompile - compile fragment for shared object when
   * a normal library is not being built
   */
--- 103,108 


Re: 2003_06_30 mkfontscale creates encodings.dir in wrong order

2003-07-01 Thread Egbert Eich
Thanks!
I've commited this.

Egbert.


Roland Mainz writes:
  
  Hi!
  
  
  
  Xfree86 source tree, pulled at 2003-06-30 this morning. It seems that
  mkfontscale is generating the encodings.dir files in the wrong order.
  The fontenc code expects the name filename order but mkfontscale
  uses now filename name (which means that most encodings are not
  recognised anymore when fonts.scale should be build).
  
  I've attached a patch to fix the issue...
  
  
  
  Bye,
  Roland
  
  -- 
__ .  . __
   (o.\ \/ /.o) [EMAIL PROTECTED]
\__\/\/__/  [EMAIL PROTECTED]
/O /==\ O\  MPEG specialist, CJAVASunUnix programmer
   (;O/ \/ \O;) TEL +49 641 99-41370 FAX +49 641 99-41359Index: mkfontscale.c
  ===
  RCS file: /cvs/xc/programs/mkfontscale/mkfontscale.c,v
  retrieving revision 1.7
  diff -u -r1.7 mkfontscale.c
  --- mkfontscale.c2003/06/20 15:49:52 1.7
  +++ mkfontscale.c2003/06/30 23:03:37
  @@ -1210,7 +1210,7 @@
   free(fullname);
   fullname = n;
   }
  -encodingsToDo = listConsF(encodingsToDo, %s %s, fullname, *name);
  +encodingsToDo = listConsF(encodingsToDo, %s %s, *name, fullname);
   if(encodingsToDo == NULL) {
   fprintf(stderr, Couldn't allocate encodings\n);
   closedir(dirp);
___
Devel mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/devel


Re: MGA fixes don't compile

2003-07-01 Thread Dr Andrew C Aitchison
On Tue, 1 Jul 2003, Egbert Eich wrote:

 Dr Andrew C Aitchison writes:
   
260. Disabled mode writeback to client program from MGA driver (Egbert 
   Eich).
   
   This doesn't compile on RedHat 6.2 / egcs-2.91.66
   
 
 Hi Andrew,
 
 Yes, thanks!
 Mattieu already told me. 
 It builds with gcc 3.3 (however issues warnings). I'll 
 commit a little different fix later.
 I have been thinking to remove the Matrox HAL stuff completely
 and tell Matrox to ship this stuff in their binary only driver.
 
 I had to program around so many things in the HALlib.
 Furthermore using our driver with this lib is quite rediculous.
 
 This lib does allmost all initialization. Only the hw cursor, dri
 and accel functions are taken from our driver. 

I'd be very unhappy to lose the HAL;
it helps a lot when getting a G550 to work with DVI monitors.
Some monitors work without it, but others just don't seem to work
unless I use mga_hal_drv.o

I believe that the /tmp/mgaDriverIn/Out stuff is only used by the
MGA PowerDesktop, and I can live without that, but please don't remove 
the HAL.

-- 
Dr. Andrew C. Aitchison Computer Officer, DPMMS, Cambridge
[EMAIL PROTECTED]   http://www.dpmms.cam.ac.uk/~werdna


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


Re: MGA fixes don't compile

2003-07-01 Thread Alex Deucher
it's also needed for mergedfb support on mga, although it could
probably be rewritten to not use HAL.

Alex

--- Dr Andrew C Aitchison [EMAIL PROTECTED] wrote:
 On Tue, 1 Jul 2003, Egbert Eich wrote:
 
  Dr Andrew C Aitchison writes:

 260. Disabled mode writeback to client program from MGA driver
 (Egbert 
Eich).

This doesn't compile on RedHat 6.2 / egcs-2.91.66

  
  Hi Andrew,
  
  Yes, thanks!
  Mattieu already told me. 
  It builds with gcc 3.3 (however issues warnings). I'll 
  commit a little different fix later.
  I have been thinking to remove the Matrox HAL stuff completely
  and tell Matrox to ship this stuff in their binary only driver.
  
  I had to program around so many things in the HALlib.
  Furthermore using our driver with this lib is quite rediculous.
  
  This lib does allmost all initialization. Only the hw cursor, dri
  and accel functions are taken from our driver. 
 
 I'd be very unhappy to lose the HAL;
 it helps a lot when getting a G550 to work with DVI monitors.
 Some monitors work without it, but others just don't seem to work
 unless I use mga_hal_drv.o
 
 I believe that the /tmp/mgaDriverIn/Out stuff is only used by the
 MGA PowerDesktop, and I can live without that, but please don't
 remove 
 the HAL.
 
 -- 
 Dr. Andrew C. Aitchison   Computer Officer, DPMMS, Cambridge
 [EMAIL PROTECTED] http://www.dpmms.cam.ac.uk/~werdna
 
 
 ___
 Devel mailing list
 [EMAIL PROTECTED]
 http://XFree86.Org/mailman/listinfo/devel


__
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: mkfontscale strikes again

2003-07-01 Thread Juliusz Chroboczek
AA What sort of checking was done before replaceing mkfontdir with 
AA mkfontscale ?

None; there's been a problem of assignment of responsibility.

Please see bug 388, where I'm assuming somebody will do the testing
before committing (or decide not to commit until there's testing), and
Egbert assumes I did the testing.

AA Is there a realistic prospect of testing and fixing this
AA properly within say a week ?

I've scheduled Wednesday evening (CEST) for that.  Might have some
time tonight, no promises though.

Juliusz


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


imakemdep.h ... is this really correct?

2003-07-01 Thread Kean Johnston
All,

At or about line 315 or a top-of-tree config/imake/imakemdep.h there is 
code that looks like this:
#if defined(__GNUC__)  !defined(USE_CC_E)
#define USE_CC_E
...
#endif

I dont know when this was added, or even particularly why, but it seems 
wrong to me. Just because you are using GCC does NOT mean you want to 
use gcc -E as your CPP. In fact, I have just encountered a case where it 
even breaks things in unexpected ways. Here's the problem. I wanted to 
add the -mcpu=i686 -march=i586 lines to my .cf file. But gcc defines 
symbols like -D__i586__, -Di586, -D__i586 etc, which means that the 
generated Makefiles end up with -march=1 -mcpu=i686. This of course 
causes gcc to fail.

Does anyone have any idea why this was deemed necessary, and would 
anyone be heartbroken if I removed that block of code?

Kean

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


RE: Dell C400 fix applied to 855GM?

2003-07-01 Thread Egbert Eich
Sottek, Matthew J writes:
  The Windows driver does full mode programming including all the external
  digital components from many 3rd party companies. The open source XFree

This is pretty much what the SiS driver does after Thomas got his
hands on it. It programms the SiS and it knows about several video
bridges attached to it.

  driver sets modes by using the video bios. That way it does not have to
  have full programming capabilities for 3rd party components. The XFree
  driver is therefore limited to what the vbios can do while the Windows
  driver is not.
  

It is nice to know that - yet it doesn't solve our problem.
The users want to use their systems at resolutions and depths that
are common these days and they care very little about it what the
capablilities of the BIOS are.
I know that the BIOS offers a rather easy way to get over the very
difficult task of getting the video modes right. In fact I was
the one who started the int10 and VESA BIOS stuff - mainly to
get the secondary graphics boards posted.
However we realize over and over again that the implementation
of the VESA BIOS functions is done sloppy and that we are seeing
more problems (which we cannot fix) as if we had gone the hard
route.

Anyway, the solution in this case however should be much simpler:
the BIOS knows about the other modes as they get listed. It just
refuses to set them them it doesn't see more than 892 kB of video
memory.
The BIOS just needs to be convinced of that. We had two ways of
doing that. One was by setting some BIOS flags, the other was 
using a VESA BIOS interface. For whatever reason there is at
least one more way. Now it is the BIOS vendors' term to provide
us with the necessary information.

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


Re: imake template to install files from a third directory

2003-07-01 Thread Egbert Eich
Alexander Pohoyda writes:
  Hi list,
  
  I am unable to find a template to create a rule to install files from
  a directory which does not have a makefile itself.
  I need to process some files matching a mask (e.g. somedir/*.xpm)
  without having to list them all in a makefile.
  
  There is an InstallMultiple(list,dest) macro, but it takes a file list
  as an argument, so that's exactly what I want to avoid.
  
  I believe that this is quite a general task, so I dare to propose a
  new template. Please see the attached patch. I would appreciate any
  ideas about this patch or maybe there are good reasons not to have
  such a template? Better ways to do this?
  

I've looked all over the X sources and I was not able to find a case
where we don't supply a list. However have you tried to use
somedir/*.xpm  in InstallMultiple()? InstallMultiple()
does a 
 for i in $LIST; do...

if $LIST gets replaced by somedir/*.xpm it should do what you have in
mind.

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


Re: Dell C400 fix applied to 855GM?

2003-07-01 Thread Thomas Winischhofer
Egbert Eich wrote:
Sottek, Matthew J writes:
  The Windows driver does full mode programming including all the external
  digital components from many 3rd party companies. The open source XFree
This is pretty much what the SiS driver does after Thomas got his
hands on it. It programms the SiS and it knows about several video
bridges attached to it.
OT, but for the record: With SiS, it is actuall the other way round. 
SiS' Windows drivers do mode changes _exclusively_ by calling the BIOS. 
That's why they never need to update their Windows driver... and produce 
zillions of different BIOSes instead :(

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: MGA fixes don't compile

2003-07-01 Thread Egbert Eich
Dr Andrew C Aitchison writes:
  On Tue, 1 Jul 2003, Egbert Eich wrote:
  
  I'd be very unhappy to lose the HAL;
  it helps a lot when getting a G550 to work with DVI monitors.
  Some monitors work without it, but others just don't seem to work
  unless I use mga_hal_drv.o
  
  I believe that the /tmp/mgaDriverIn/Out stuff is only used by the
  MGA PowerDesktop, and I can live without that, but please don't remove 
  the HAL.
  

OK, you have to know - as you are the MGA maintainer.
I just think it makes the code very ugly. 
It hasn't helped me getting two G450 running in one 
system, either.


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


Re: mkfontscale strikes again

2003-07-01 Thread Egbert Eich
Dr Andrew C Aitchison writes:
  With Roland's fix, mkfontscale generates encodings.dir files
  containing the string (null), ie with lines like:
  
  big5-0 (null)(null)large/big5.eten-0.enc
  big5.eten-0 (null)large/big5.eten-0.enc
  viscii1.1-1 (null)./viscii1.1-1.enc.gz
  adobe-symbol (null)./adobe-symbol.enc.gz
  
  The following diff seems to remove the nulls;
  any idea whether this is the right solution ?

Juliusz?

  
  diff -u -r1.8 mkfontscale.c
  --- mkfontscale.c   2003/06/30 16:52:57 1.8
  +++ mkfontscale.c   2003/07/01 11:58:19
  @@ -1203,7 +1203,7 @@
   continue;
   
   for(name = names; *name; name++) {
  -if(fullname[0] != '/') {
  +if(encodingPrefix  fullname[0] != '/') {
   char *n;
   n = dsprintf(%s%s, encodingPrefix, fullname);
   if(n == NULL) {
  
  
  What sort of checking was done before replaceing mkfontdir with 
  mkfontscale ?

I had the impression that this had been tested to some extend.
Otherwise I wouldn't have committed the fixes.
Appearantly is had not been tested thoroughly.

  
  Is there a realistic prospect of testing and fixing this
  properly within say a week ?
  If not, I'd like to revert to building the real mkfontdir app and
  having a build option to use one or the other when making XFree86.
  

Yes, if we don't have an improved version by the end of the week
I will revert this.
Having build options for all kinds of experimental stuff doesn't
sound like a realistic solution. Better to have some sandbox
separate from the main tree.

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


Re: mkfontscale strikes again

2003-07-01 Thread Juliusz Chroboczek
 What sort of checking was done before replaceing mkfontdir with 
 mkfontscale ?

EE I had the impression that this had been tested to some extend.

Egbert,

I am sorry if I misled you.

I had tested the mkfontdir replacement on the font directories I hold
on my laptop.  I did not test this on a tree build, as building a tree
on my laptop takes a long time and I was busy.

It was my impression that I had been clear on this subject in bugzilla #388.

  http://bugs.xfree86.org/cgi-bin/bugzilla/show_bug.cgi?id=388

I'll try to be even more cautious in the future.

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


Re: mkfontscale strikes again

2003-07-01 Thread Dr Andrew C Aitchison
On Tue, 1 Jul 2003, Egbert Eich wrote:

 Having build options for all kinds of experimental stuff doesn't
 sound like a realistic solution. Better to have some sandbox
 separate from the main tree.

True.
If we had known that this was experimental, a branch of the CVS tree
would have made sense.

-- 
Dr. Andrew C. Aitchison Computer Officer, DPMMS, Cambridge
[EMAIL PROTECTED]   http://www.dpmms.cam.ac.uk/~werdna

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


Re: mkfontscale strikes again

2003-07-01 Thread Juliusz Chroboczek
AA any idea whether this is the right solution ?

Please try the attached instead.

Juliusz

Index: xc/programs/mkfontscale/mkfontscale.c
===
RCS file: /cvs/xc/programs/mkfontscale/mkfontscale.c,v
retrieving revision 1.9
diff -u -r1.9 mkfontscale.c
--- xc/programs/mkfontscale/mkfontscale.c	2003/07/01 13:05:34	1.9
+++ xc/programs/mkfontscale/mkfontscale.c	2003/07/01 19:19:32
@@ -117,6 +117,7 @@
 }
 if(prefix[strlen(prefix) - 1] != '/')
 strcat(prefix, /);
+encodingPrefix = dsprintf(%s, prefix);
 
 outfilename = NULL;
 
@@ -154,7 +155,8 @@
 usage();
 exit(1);
 }
-strcpy(prefix, argv[argn + 1]);
+free(encodingPrefix);
+encodingPrefix = dsprintf(%s, argv[argn + 1]);
 argn += 2;
 } else if(strcmp(argv[argn], -e) == 0) {
 if(argn = argc - 1) {
@@ -199,8 +201,6 @@
 }
 }
 
-encodingPrefix = dsprintf(%s, prefix);
-
 if(outfilename == NULL) {
 if(doBitmaps)
 outfilename = fonts.dir;
@@ -1211,10 +1211,12 @@
 closedir(dirp);
 return -1;
 }
-free(fullname);
-fullname = n;
+encodingsToDo = listConsF(encodingsToDo, %s %s, *name, n);
+free(n);
+} else {
+encodingsToDo = 
+listConsF(encodingsToDo, %s %s, *name, fullname);
 }
-encodingsToDo = listConsF(encodingsToDo, %s %s, *name ,fullname);
 if(encodingsToDo == NULL) {
 fprintf(stderr, Couldn't allocate encodings\n);
 closedir(dirp);


Re: imakemdep.h ... is this really correct?

2003-07-01 Thread Kean Johnston
I dont know when this was added, or even particularly why, but it seems
wrong to me. Just because you are using GCC does NOT mean you want to
use gcc -E as your CPP.

Yes, it does.
Why?

This is defining the CPP to use for porcessing Imakefile's. Many many 
UNIXes provide /lib/cpp as a general preprocessing tool. GCC or any 
other compiler is an extension package. Imake is used in environments 
outside of X11, albeit infrequently. IMHO, imake should be biased to 
using tools that are as generic as possible, not as specific as 
possible. Linux, and others, also provide /lib/cpp or /usr/bin/cpp or 
some equivalent, there is no need to use gcc -E.

By forcing USE_CC_E in imakemdep.h, you completely eliminate the ability 
for a platform's .cf file to set the desired cpp with CppCmd. Look at 
how it is used in imahe.c, circa line 314. USE_CC_E is designed, as I 
remember and as I read the code, for systems that do NOT provide a 
suitable /lib/cpp or other preprocessor.

I stand by that assertion I made earlier ... setting USE_CC_E just 
because of the compiler I chose is wrong. You are making global system 
decisions based on a compiler setting. Thats just plain wrong.

Beef up SCO's section in Imake.cf to more closely match Linux's.  Perhaps
this should be more globally done for any platform using GCC.
That looks like you are fixing a bug created by a bug, not a bug created 
by a problem. You do realize that all of that trickery for Linux would 
not be needed if those lines in imakemdep.h were removed?

s/ deemed//.  Builds break on platforms where gcc is not the default
compiler.
I dont understand how. If gcc is not the default compiler the .cf 
defines CppCmd. Thats the right place to fix it. SCO doesnt have gcc as 
its default compiler, and it works quite fine with those lines removed 
from imakemdep.h.

Kean

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


Re: imakemdep.h ... is this really correct?

2003-07-01 Thread Marc Aurele La France
On Tue, 1 Jul 2003, Kean Johnston wrote:

 I dont know when this was added, or even particularly why, but it seems
 wrong to me. Just because you are using GCC does NOT mean you want to
 use gcc -E as your CPP.

  Yes, it does.

 Why?

 This is defining the CPP to use for porcessing Imakefile's. Many many
 UNIXes provide /lib/cpp as a general preprocessing tool. GCC or any
 other compiler is an extension package. Imake is used in environments
 outside of X11, albeit infrequently. IMHO, imake should be biased to
 using tools that are as generic as possible, not as specific as
 possible. Linux, and others, also provide /lib/cpp or /usr/bin/cpp or
 some equivalent, there is no need to use gcc -E.

 By forcing USE_CC_E in imakemdep.h, you completely eliminate the ability
 for a platform's .cf file to set the desired cpp with CppCmd. Look at
 how it is used in imahe.c, circa line 314. USE_CC_E is designed, as I
 remember and as I read the code, for systems that do NOT provide a
 suitable /lib/cpp or other preprocessor.

 I stand by that assertion I made earlier ... setting USE_CC_E just
 because of the compiler I chose is wrong. You are making global system
 decisions based on a compiler setting. Thats just plain wrong.

  Beef up SCO's section in Imake.cf to more closely match Linux's.  Perhaps
  this should be more globally done for any platform using GCC.

 That looks like you are fixing a bug created by a bug, not a bug created
 by a problem. You do realize that all of that trickery for Linux would
 not be needed if those lines in imakemdep.h were removed?

  s/ deemed//.  Builds break on platforms where gcc is not the default
  compiler.

 I dont understand how. If gcc is not the default compiler the .cf
 defines CppCmd. Thats the right place to fix it. SCO doesnt have gcc as
 its default compiler, and it works quite fine with those lines removed
 from imakemdep.h.

Different pre-processors have, in general, different pre-defines.  Using a
different pre-processor to generate Makefiles than that used to
pre-process the C source is asking for trouble (and getting it).  While
that might not be the case for SCO by some happenstance, it definitely is
on Solaris and IRIX, to name two.

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


Re: mkfontscale strikes again

2003-07-01 Thread Juliusz Chroboczek
Please test

  http://bugs.xfree86.org/cgi-bin/bugzilla/show_bug.cgi?id=425

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


fonts/FreeType builds even when HasFreetype2=YES

2003-07-01 Thread Kean Johnston
All,

fonts/FreeType is built even if HasFreetype2 is set to YES. 
lib/freetype2 correctly doesn't build if HasFreetype2 is set to YES. Is 
this difference by design or accident? If by accident, can I adjust 
xfree86.cf to #define BuildFreetype !HasFreetype2?

Kean

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


Re: fonts/FreeType builds even when HasFreetype2=YES

2003-07-01 Thread David Dawes
On Tue, Jul 01, 2003 at 03:29:45PM -0700, Kean Johnston wrote:
All,

fonts/FreeType is built even if HasFreetype2 is set to YES. 
lib/freetype2 correctly doesn't build if HasFreetype2 is set to YES. Is 
this difference by design or accident? If by accident, can I adjust 
xfree86.cf to #define BuildFreetype !HasFreetype2?

The two are independent, so the difference is by design.

David
-- 
David Dawes
Founder/committer/developer The XFree86 Project
www.XFree86.org/~dawes
___
Devel mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/devel


Re: MGA fixes don't compile

2003-07-01 Thread David Dawes
On Tue, Jul 01, 2003 at 02:55:19PM +0100, Dr Andrew C Aitchison wrote:
On Tue, 1 Jul 2003, Egbert Eich wrote:

 Dr Andrew C Aitchison writes:
   
260. Disabled mode writeback to client program from MGA driver (Egbert 
   Eich).
   
   This doesn't compile on RedHat 6.2 / egcs-2.91.66
   
 
 Hi Andrew,
 
 Yes, thanks!
 Mattieu already told me. 
 It builds with gcc 3.3 (however issues warnings). I'll 
 commit a little different fix later.
 I have been thinking to remove the Matrox HAL stuff completely
 and tell Matrox to ship this stuff in their binary only driver.
 
 I had to program around so many things in the HALlib.
 Furthermore using our driver with this lib is quite rediculous.
 
 This lib does allmost all initialization. Only the hw cursor, dri
 and accel functions are taken from our driver. 

I'd be very unhappy to lose the HAL;
it helps a lot when getting a G550 to work with DVI monitors.
Some monitors work without it, but others just don't seem to work
unless I use mga_hal_drv.o

Maybe the situation would be better if the mga_hal module was limited
to doing just those initialisations that can't, for whatever reasons,
be done in open source.  If I recall correctly, the original reason for
not having this in open source was that enabling the second display on
the G400 couldn't be done without exposing how macrovision could be
disabled (or something like that).

I get the impression that the mga_hal module went beyond what was
originally intended, and it definitely makes a mess of the mga driver,
as Egbert noted.

I believe that the /tmp/mgaDriverIn/Out stuff is only used by the
MGA PowerDesktop, and I can live without that, but please don't remove 
the HAL.

When the PowerDesktop stuff was originally discussed a while back, it
was recommended that it be implemented via a server extension.  That
recommendation was obviously ignored.  What Matrox puts in their own
driver is their business, but it definitely doesn't belong in XFree86
in its current state.

David
-- 
David Dawes
Founder/committer/developer The XFree86 Project
www.XFree86.org/~dawes
___
Devel mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/devel


Autônomo com Internet

2003-07-01 Thread Elmer
Empresa procura Autônomos para trabalho utilizando a Internet, em tempo
parcial ou integral e com altos ganhos. Não requer experiência.
Detalhes no site ou na Apresentação em São Paulo.

Visite: www.hipernegocio.com

Elmer
NGTCorp - Dúvidas pelo email [EMAIL PROTECTED]





Para ser removido de futuros correios, por favor, envie email para
[EMAIL PROTECTED], com o assunto REMOVER. Obrigado.
___
Devel mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/devel


Re: mkfontscale strikes again

2003-07-01 Thread Kean Johnston
Juliusz Chroboczek wrote:
Please test

  http://bugs.xfree86.org/cgi-bin/bugzilla/show_bug.cgi?id=425
This fixes the -n -r problems for me, and compiles OK. However, are you 
trying to emulate the exact semantic behavious of mkfontdir? If so then 
the way you implement doEncodings is incorrect. In mkfontdir, it first 
does the unlink (removing the file) and then creates it if there are 
encodings to output. It does this regardless of whether or nor you 
specify -e. If there are no encodings there is no file, not a file with 
just a 0 (which is what will currently be produced). Its ordering is 
also different, which may or may not have an impact. The function that 
produces encodings.dir is only run *after* the font tables are written, 
and only if that work didnt produce an error.

If these semantics are unimportant then ignore the above.

Please also note that the -x option conflicts with the usage in 
mkfontdir. In mkfontscale it means add an encoding. In mkfontdir it 
means ignore the following suffix. This is part of the reason why the 
fonts.dir file created during the build is a little more than double the 
size it needs to be, because -x isn't working. If the -x option is 
really entrenched in mkfontscale, then the mkfontdir wrapper is going to 
have to parse all arguments and convert a -x to some other option that 
does the same thing in mkfontscale. If you dont want to do that work let 
me know I'll happily add both the argument to mkfontscale and the mods 
to the mkfontdir script to cope with it. It would be much easier if we 
can just change the current -x option to be something else though.

Kean

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


Re: fonts/FreeType builds even when HasFreetype2=YES

2003-07-01 Thread Kean Johnston
David Dawes wrote:
On Tue, Jul 01, 2003 at 03:29:45PM -0700, Kean Johnston wrote:

All,

fonts/FreeType is built even if HasFreetype2 is set to YES. 
lib/freetype2 correctly doesn't build if HasFreetype2 is set to YES. Is 
this difference by design or accident? If by accident, can I adjust 
xfree86.cf to #define BuildFreetype !HasFreetype2?


The two are independent, so the difference is by design.
Ah.

But since they both link files out of the same source directory, and 
they appear to both be compiled the same way, would a system-provided 
FreeType 2.1.4 not suffice for both? Could I bother you to explain how 
they are independant? Thanks :)

If a system-provided FreeType 2.1.4 does indeed provide for both cases, 
is it then not appropriate to make BuildFreetype !HasFreetype2 as I 
suggested above?

Kean

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


Re: Dell C400 fix applied to 855GM?

2003-07-01 Thread David Dawes
On Mon, Jun 30, 2003 at 09:01:31AM -0700, Hope Merritt wrote:
All,

The patches will not work do to a limitation in the
Dell system BIOS and Intel VBIOS.  Dell locks their
pre-allocated (once called stolen) memory at 1MB and
therefore you will be limited in modes on Linux since
the VBIOS limits its modes to the amount of
pre-allocated memory.  Intel has implemented a
workaround, but it would require Dell to implement one
of Intel’s latest VBIOS drops in there systems BIOS
and then update the system BIOS.  I would expect any
855 release of system BIOS from Dell in the next 2
months to have the VBIOS that allows the Xserver to
report memory it allocated to the VBIOS and the modes
could be adjusted.

Another problem I get a lot of reports about is that the VBIOS doesn't
support video modes like 1400x1050, the panel resolution used by a number
of laptops.

David
-- 
David Dawes
Founder/committer/developer The XFree86 Project
www.XFree86.org/~dawes
___
Devel mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/devel


Re: fonts/FreeType builds even when HasFreetype2=YES

2003-07-01 Thread David Dawes
On Tue, Jul 01, 2003 at 07:14:03PM -0700, Kean Johnston wrote:
David Dawes wrote:
 On Tue, Jul 01, 2003 at 03:29:45PM -0700, Kean Johnston wrote:
 
All,

fonts/FreeType is built even if HasFreetype2 is set to YES. 
lib/freetype2 correctly doesn't build if HasFreetype2 is set to YES. Is 
this difference by design or accident? If by accident, can I adjust 
xfree86.cf to #define BuildFreetype !HasFreetype2?
 
 
 The two are independent, so the difference is by design.
Ah.

But since they both link files out of the same source directory, and 
they appear to both be compiled the same way, would a system-provided 
FreeType 2.1.4 not suffice for both? Could I bother you to explain how 
they are independant? Thanks :)

They are independent for two reasons.  The first is that the
system-provided FreeType library isn't (yet) used by the freetype
XFree86 server module.  The second is that lib/font/FreeType is an
X server font backend that contains more than just the FreeType
library.  It is a goal to resolve the first reason (making the
lib/font/FreeType build smaller), but the second will remain.

David
-- 
David Dawes
Founder/committer/developer The XFree86 Project
www.XFree86.org/~dawes
___
Devel mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/devel


Re: imakemdep.h ... is this really correct?

2003-07-01 Thread Marc Aurele La France
On Tue, 1 Jul 2003, Kean Johnston wrote:

 At or about line 315 or a top-of-tree config/imake/imakemdep.h there is
 code that looks like this:
 #if defined(__GNUC__)  !defined(USE_CC_E)
 #define USE_CC_E
 ...
 #endif

 I dont know when this was added, or even particularly why, but it seems
 wrong to me. Just because you are using GCC does NOT mean you want to
 use gcc -E as your CPP.

Yes, it does.

  In fact, I have just encountered a case where it
 even breaks things in unexpected ways. Here's the problem. I wanted to
 add the -mcpu=i686 -march=i586 lines to my .cf file. But gcc defines
 symbols like -D__i586__, -Di586, -D__i586 etc, which means that the
 generated Makefiles end up with -march=1 -mcpu=i686. This of course
 causes gcc to fail.

Beef up SCO's section in Imake.cf to more closely match Linux's.  Perhaps
this should be more globally done for any platform using GCC.

 Does anyone have any idea why this was deemed necessary,

s/ deemed//.  Builds break on platforms where gcc is not the default
compiler.

  and would
 anyone be heartbroken if I removed that block of code?

Such a patch would be rejected.

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


[XFree86] problem VMWare

2003-07-01 Thread






XFree86.0.log
Description: Binary data


[XFree86] www.playerbarter.com - game auctions no fees - no credit card req.

2003-07-01 Thread Player Barter
www.playerbarter.com online gaming auction site is taking the Gaming industry by storm 
!!
- Loads of listings
- Free registration
- No Credit card required
- Free listings
- Advanced user interface
- Many features specific to the online gaming community

Register today free, and with no credit card.  Use the service to post your items and 
MAKE MONEY from your online time.

Buyers will find many Items on all servers and in all games including the NEWLY 
RELEASED Star Wars Galaxies.

www.playerbarter.com

Check out the site today !!
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] ? = What system set-up configuration should i use for OS X 10.2.6

2003-07-01 Thread Brian Egeness
Hello,
Glad to be here. The Fink app is genius but here's my problem. 

I'm new and I'm sure alot of other new users would like to migrate also but...without clear, concise straight-to-the-point direction the mind pico-fies. Dammit Jim..I'm a new user, not a professor!!! Keep it simple and they will come! I had a similar problem 4 years ago when trying to install YDL and later NetBSD. It appears not much progress has been made in top-down logic flowchart-like documentation...too much muck to crawl through before actually finding an install right for me. 4 weeks I spent trying to get one of those builds up and running. But at that time it was bandit and chaos/control config files bogging down the process. Now the UNIX-like software is finally catching up with today's hardware but disjointed and unstructured help files and docs persist in the UNIX-like community. I've read most of the help files and docs with no success.  

Anyway...Do I want XDarwin? I don't know! Here's what I'm looking for from a system and maybe someone can tell me what packages i need to get there because I'm done reading for hours and hours only to progress an inch. It shouldn't take 40 min. to fry an egg ya know? I think XDarwin is the correct one but...what are the pros and cons? Are there better X Servers? Is XDarwin the same as XFree86-Server? At 56k in the Virgin Islands and a demanding work schedule I don't have the time to find out the hard way.

I direct this to the best of an experienced and seasoned user's knowledge :

I have OS X 10.2.6 running on a G4 dual 1.25 gHz box
I have installed X11SDK and Apple Developer Tools
I have removed Apple's version of X11 and X11R6
I have installed xfree86-base 4.2.1.1-3 (not the rootless) via fink install* 10 hours later...:( got bandwidth? *

Will X11SDK conflict with XFree86 in any way? I didn't think so but thought I should ask the more informed?

I need the best window manager, X server, and GUI (GNOME?) for my box and OS. 
I want this setup to allow for the most apps to run stable. 
In your opinion, better to go with root or rootless xfree86?
I need concise info and to the point pros and cons if more than one choice. (keep it short, simple and please no geek speak or intellectual flexing)

The rest I will learn after I can get a setup that works!

A big island thank you to whoever has the time to help!!! 

Brian





[XFree86] Re: Movie

2003-07-01 Thread bugs
Thank you for your interest in Red Hat's products.

For the latest product errata, please visit these pages on the Red Hat
website:

http://www.redhat.com/apps/support/updates.html

(This page lists all available errata.  If the errata includes updated
software, you can manually download the software from each errata page.)

http://www.redhat.com/network/

(This is the main page for Red Hat Network.  Once registered, you can use
Red Hat Network to download and install updated software in a more
automated fashion.)

Again, thank you for your interest in our products.

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


[XFree86] Re: Movie

2003-07-01 Thread Mike A. Harris
On Tue, 1 Jul 2003 [EMAIL PROTECTED] wrote:

I've just talked with our Red Hat sysadmins about this email as I 
just spotted it here on the list.  I figured some people would 
likely be annoyed by it, and that it is likely some virus or 
somesuch that triggered this.

I am told that someone must have both [EMAIL PROTECTED] and 
[EMAIL PROTECTED] in their email address book, and have gotten 
one of the newer Windows email viruses which sends a message to 
one address from your address book with another address from your 
address book in the header.  If an autoresponder is at the end of 
the To: address, in this case [EMAIL PROTECTED], then the 
autoresponder will respond as it has no idea what is sending 
email to it, or any way of determining the legitimacy of the 
email.

In this case, our [EMAIL PROTECTED] autoresponder has replied with 
a form letter to the address on the From: line, which was 
[EMAIL PROTECTED], and since this list is open posting, and not 
subscriber-only, the message was accepted.

It's unfortunate that all of the garbage spam email, and email 
viruses out there are clogging our inboxes more and more every 
day, and removing some of the usefulness that we get from these 
forms of communication.

The address [EMAIL PROTECTED] can safely be blocked from posting to 
this list if the list maintainer wishes, as there is no 
legitimate reason that [EMAIL PROTECTED] autoresponder would or 
should ever post here.

Apologies for any inconvenience.

TTYL


Date: Tue, 1 Jul 2003 04:27:59 -0400
From: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
Subject: Re: Movie

Thank you for your interest in Red Hat's products.

For the latest product errata, please visit these pages on the Red Hat
website:

http://www.redhat.com/apps/support/updates.html

(This page lists all available errata.  If the errata includes updated
software, you can manually download the software from each errata page.)

http://www.redhat.com/network/

(This is the main page for Red Hat Network.  Once registered, you can use
Red Hat Network to download and install updated software in a more
automated fashion.)

Again, thank you for your interest in our products.

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


-- 
Mike A. Harris


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


[XFree86] core pointer error

2003-07-01 Thread PRASHANT N
i entered the command
ln -sf /dev/psaux /dev/mouse
and tried to start the xserver
but it gives the same error .
i am atttaching the log file xfree86.0.log for your reference
please guide me
thanks

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


XFree86.0.log
Description: Binary data


Re: [XFree86] [SOLVED] How can one disable the mouse cursor?

2003-07-01 Thread Egbert Eich
Dennis Herbrich writes:
  Gnah, never mind, just after I wrote the last mail, I found the solution
  to my problem by sheer accident while skimming the xsetroot manpage.
  
  To remove the pesky mouse cursor, I started the bitmap tool, and saved
  the empty image right away as transparent.cursor after setting the
  hotspot. Now, to use this, I only needed to put xsetroot -cursor
  transparent.cursor transparent.cursor into my .xinitrc, and the cursor
  is nowhere to be seen. Yay.

This however only works for the root window. If your application sets another 
cursor it will be displayed when the cursor is above an app window.
The same is true for most modern window managers which create their
own root windows.

  BTW, SDL seems to crash and take X with it when it's fullscreened and
  the used mouse driver is void. Using a real mouse driver and
  AllowMouseOpenFail while simply not attaching a mouse works just fine,
  though. No idea where this problem lies, probably in SDL, so I'll
  contact them instead about this.
  

This shouldn't happen. Maybe there is a bug in the void driver.
Can you use a debugger to look at this, please? If you use a 
modularized Xserver please get gdb from www.dawa.demon.co.uk/xfree-gdb.
This can also display symbols from modules.
You may have to use the command 'module', though to load them
before you can get them displayed.

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


Re: [XFree86] Gamma problems

2003-07-01 Thread Alex Sandro Queiroz e Silva
Hallo,

kenpark79 wrote:

NO I HAVE THE SAME PROBLEM SETTING THE GAMMA DON'T RESOLVE IT.
IT'S A BUG ALREADI REPORTED TU XFREE BUGZILLA.
P.S.  *Bugzilla Bug * NUMBER *351* 

ther's a experimental patch to try but i have don't tested it
http://marc.theaimsgroup.com/?l=xfree86m=105582853120655w=2
	Yes, I've tried to set the gamma already but I couldn't. I was afraid 
it was a bug since then. I will try the patch and see if it helps.

-Alex

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


RE: [XFree86] S3 Trio64V2

2003-07-01 Thread Cynthia Grossen
You have to send us the log file if you want accurate help. And be polite,
he was trying to help you.

 -Original Message-
 From: Rogue Spider [mailto:[EMAIL PROTECTED] 
 Sent: Monday, June 30, 2003 7:10 PM
 To: [EMAIL PROTECTED]
 Subject: Re: [XFree86] S3 Trio64V2
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


RE: [XFree86] problem VMWare

2003-07-01 Thread Cynthia Grossen
(EE) VMWARE(0): Driver can't support depth 24

Lower your color depth. Try 16 and then 8. You may need to edit your config
file directly. The color depth setting can be found in the screen section.

This man page will help.
http://www.xfree86.org/4.3.0/XF86Config.5.html

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, July 01, 2003 2:59 AM
To: [EMAIL PROTECTED]
Subject: [XFree86] problem VMWare
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] Re: [ctl-linux] window manager issues

2003-07-01 Thread Phillip . Watts
Same problem.
Booted Knoppix from a CD.  Ran great.
Said screw RH and installed Knoppix.

Hate to be so bubbly about knoppix, but in four instances of
X/video problem it has worked when others do not.
Don't know enough about X to know why.





Joe England [EMAIL PROTECTED] on 06/27/2003 04:23:27 PM

To:   central texas linus users group [EMAIL PROTECTED], [EMAIL PROTECTED]
cc:(bcc: Phillip Watts/austin/Nlynx)

Subject:  [ctl-linux] window manager issues



Hi,

I installed RH8 on a box using a VIA EPIA-M Mini-ITX Mainboard. When I
booted the system I got an error message to the effect that the board
was newer than the version of XFree86 in the Red Hat 8.0 distribution.

Next I went to the XFree86.org site got the newest version (4.3.0),
installed it and ran xf86config. Now, I get a proper-looking gray
background and some text rendered on a broken looking terminal window,
while the little wristwatch twiddle never goes away and the console
doesn't accept input. In other, I think that XFree86 is running OK but
that I have some window manager issue.

Also, if I type startx in the alternate shell I get the following:


Fatal server error:
Server is already active for display 0
If this server is no longer running, remove /tmp/.X0-lock
and start again

When reporting a problem related to a server crash, please send
the full server output, not just the last messages.
Please report problems to [EMAIL PROTECTED]

Xlib: connection to :0.0 refused by server
Xlib: Invalid MIT-MAGIC-COOKIE-1 key
giving up
xinit: unable to connect to X server
xinit: No such process (errno 3): Server error.





ls -l /tmp/.X0-lock  shows that the lock file was last written at about
boot time as expected.

Does anyone have advice?

Joe




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
-
Visit our website at http://www.ctlug.org.





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


[XFree86] Server crash on Win4Lin Redhat 9.0 Kernel

2003-07-01 Thread Stephen Laing




Hi,

I have had two XFree86 crashes while evaluating Redhat 9.0 with a win4Lin
modified Kernel.

The crash occurred when I tried to run Netscape 7.0, version string:
(  	
 Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.0.1) Gecko/20020823 Netscape/7.0) 
	  

Regards,

Stephen Laing
-- 
Stephen Laing [EMAIL PROTECTED]

Work: Telephone  +44 1753 874330  Fax  +44 1753 874365

Home: Telephone  +44 1189 671459  Mobile +44 7941 635243

http://www.atalanta-consulting.co.uk



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 Wed Apr 23 13:42:48 PDT 2003 PF
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: Tue Jul  1 13:54:06 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 gb
(**) XKB: layout: gb
(==) 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 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
(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 = 0x8000fac0, mode1Res1 = 0x8000
(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 8086,1130 card , rev 02 class 06,00,00 hdr 00
(II) PCI: 00:01:0: chip 8086,1131 card , rev 02 class 06,04,00 hdr 01
(II) PCI: 00:1e:0: chip 8086,244e card , rev 02 class 06,04,00 hdr 01
(II) PCI: 00:1f:0: chip 8086,2440 card , rev 02 class 06,01,00 hdr 80
(II) PCI: 00:1f:1: chip 8086,244b card 8086,4541 rev 02 class 01,01,80 hdr 00
(II) PCI: 00:1f:2: chip 8086,2442 card 8086,4541 rev 02 class 0c,03,00 hdr 00
(II) PCI: 00:1f:3: chip 8086,2443 card 8086,4541 rev 02 class 0c,05,00 hdr 00
(II) PCI: 01:00:0: chip 10de,0110 card 10de,004a rev b2 class 03,00,00 hdr 00
(II) PCI: 02:09:0: chip 10b7,9200 card 10b7,1000 rev 78 class 02,00,00 hdr 00
(II) PCI: 02:0c:0: chip 1274,1371 card 1274,1371 rev 09 class 04,01,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,2), 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: 0x0008 (VGA_EN is set)
(II) Bus 1 non-prefetchable memory range:
[0] -1  0   0xfc90 - 0xfe9f (0x210) MX[B]
(II) Bus 1 prefetchable memory range:
[0] -1  0   0xe460 - 0xf46f (0x1010) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 2: bridge is at (0:30:0), (0,2,2), BCTRL: 0x0002 (VGA_EN is cleared)
(II) Bus 2 I/O range:
[0] -1  0   0xd000 - 0xdfff (0x1000) IX[B]
(II) Bus 2 non-prefetchable memory range:
[0] -1  0   0xfea0 - 0xfeaf (0x10) MX[B]
(II) Bus 2 prefetchable memory range:
[0] -1  0   0xf470 - 0xf47f (0x10) MX[B]
(II) PCI-to-ISA bridge:
(II) Bus -1: bridge is at (0:31:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
(--) PCI:*(1:0:0) nVidia Corporation NV11 [GeForce2 MX/MX 400] rev 178, Mem @ 
0xfd00/24, 0xe800/27, BIOS @ 0xfe9f/16
(II) Addressable 

RE: [XFree86] Re: [ctl-linux] window manager issues

2003-07-01 Thread News/Info
Well that's nice, but I guess that really does not address the issue
presented.

Joe post your XFree86.x.log, that should provide a better starting point.

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Behalf Of [EMAIL PROTECTED]
Sent: Tuesday, July 01, 2003 9:00 AM
To: Joe England
Cc: central texas linus users group; [EMAIL PROTECTED]
Subject: [XFree86] Re: [ctl-linux] window manager issues


Same problem.
Booted Knoppix from a CD.  Ran great.
Said screw RH and installed Knoppix.

Hate to be so bubbly about knoppix, but in four instances of
X/video problem it has worked when others do not.
Don't know enough about X to know why.





Joe England [EMAIL PROTECTED] on 06/27/2003 04:23:27 PM

To:   central texas linus users group [EMAIL PROTECTED], [EMAIL PROTECTED]
cc:(bcc: Phillip Watts/austin/Nlynx)

Subject:  [ctl-linux] window manager issues



Hi,

I installed RH8 on a box using a VIA EPIA-M Mini-ITX Mainboard. When I
booted the system I got an error message to the effect that the board
was newer than the version of XFree86 in the Red Hat 8.0 distribution.

Next I went to the XFree86.org site got the newest version (4.3.0),
installed it and ran xf86config. Now, I get a proper-looking gray
background and some text rendered on a broken looking terminal window,
while the little wristwatch twiddle never goes away and the console
doesn't accept input. In other, I think that XFree86 is running OK but
that I have some window manager issue.

Also, if I type startx in the alternate shell I get the following:


Fatal server error:
Server is already active for display 0
If this server is no longer running, remove /tmp/.X0-lock
and start again

When reporting a problem related to a server crash, please send
the full server output, not just the last messages.
Please report problems to [EMAIL PROTECTED]

Xlib: connection to :0.0 refused by server
Xlib: Invalid MIT-MAGIC-COOKIE-1 key
giving up
xinit: unable to connect to X server
xinit: No such process (errno 3): Server error.





ls -l /tmp/.X0-lock  shows that the lock file was last written at about
boot time as expected.

Does anyone have advice?

Joe




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
-
Visit our website at http://www.ctlug.org.





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

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


[XFree86] 3dlabs wildcat vp 880 - Dual Monitor setup

2003-07-01 Thread Alex Deucher
I believe Sven Luther was working on support for P10 based 3dlabs
cards.  I don't know what the status is.

Alex


-

I'm looking for a sample config for the 3dlabs wildcat
vp 880 useing dual display.  I have been looking at
man configs and have had no success.  Anouther issue I
have ran into is a driver that will work with the dual
monitor.  Any help is appreciated.


Thanks,
Justin Noack

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


[XFree86] driver

2003-07-01 Thread Fabrizio



Salve 
vorrei avere i driver per S3 VIRGE/DX (tornado) 
per Win ME


Grazie


[XFree86] ATI IGP 340M - Dual head on a lapltop

2003-07-01 Thread Alex Deucher
the radeon driver supports dualhead.  you can either do it with two
screen entries and xinerama or with my mergedfb patch
(http://bugs.xfree86.org//cgi-bin/bugzilla/show_bug.cgi?id=276).  the
IGP chipsets do not support HW 3D yet.  Make sure your screen entries
do not contain the videoram option as that will prevent dualhead from
working.  check the radeon and XF86Config man pages for more info.

Alex



Hello,

I've an hp ze4430 laptop. It contains an ATI Radeon Mobility U1 (IGP
340M w/ 64MB shared memory). I am currently using the radeon driver
that I believe was shipped with XFree 4.3. This graphics card has the
ability to extend the desktop to 2048x78 using an external monitor. I
have been unable to find any documentation about such a feature being
supported (or not) by the radeon driver. I have attempted to obtain
such
a result by trying everything I know to do in my XF86Config file. I can
get a 2048x768 desktop using the Xinerama option, but the extra desktop
space does not display on the external monitor, rather in empty space
next to the laptop's flat panel. I've also been successful cloning the
display on both monitors using different methods (MonitorLayout and
CloneDisplay). Does anyone know if the current radeon driver supports
this feature or of any documentation that may contain information that
will help me achieve this setup?

Regards,

Brandon Wittenburg

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


RE: [XFree86] driver

2003-07-01 Thread Cynthia Grossen
We haven't got any of those here. Try microsoft's website or the website for
the manufacturer (S3) of your video card.

-Original Message-
From: Fabrizio [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, July 01, 2003 9:36 AM
To: [EMAIL PROTECTED]
Subject: [XFree86] driver


Salve vorrei avere i driver per S3 VIRGE/DX   ( tornado) per Win ME


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


[XFree86] Re : [XFree86] ATI All-In-Wonder 128 locks up system under X

2003-07-01 Thread E. ALLAUD

Section Monitor
Identifier   Monitor0
VendorName   Monitor Vendor
ModelNameSylvaniaTF72
HorizSync30.0 - 70.0
VertRefresh  50.0 - 160.0
			^

This seems suspicious to me (I think your monitor advertized 50-75 vert 
refresh rates range via ddc). Try to put the same range here : 50.0 - 
75.0.

HTH
Bye
Manu

pgp0.pgp
Description: PGP signature


Re: [XFree86] ATI IGP 340M - Dual head on a lapltop

2003-07-01 Thread Brandon Wittenburg
Thanks Alex. If you've a spare moment would you mind looking at my
current XF86Config file? http://www.656.org/ati/XF86Config The
XFree86.0.log is at http://www.656.org/ati/XFree86.0.log Just please let
me know if something jumps out as being horribly wrong (I've stripped
comments, so it is pretty easy to read through). I submitted a second
email concerning my problem yesterday with more accurate information.
Mainly that the chipset is an IGP 320M, not 340M as I had previously
believed. When defining two screens, two monitors, and two devices and I
am getting a clone of the primary head on the secondary head. Xinerama
says that it is enabled in the log, but you couldn't tell by looking at
the display. From the bugzilla record below I gather I'll need the cvs
to use the patch. Is this correct? Thanks for your help.

Brandon

On Tue, 2003-07-01 at 08:38, Alex Deucher wrote:
 the radeon driver supports dualhead.  you can either do it with two
 screen entries and xinerama or with my mergedfb patch
 (http://bugs.xfree86.org//cgi-bin/bugzilla/show_bug.cgi?id=276).  the
 IGP chipsets do not support HW 3D yet.  Make sure your screen entries
 do not contain the videoram option as that will prevent dualhead from
 working.  check the radeon and XF86Config man pages for more info.
 
 Alex
 
 
 
 Hello,
 
 I've an hp ze4430 laptop. It contains an ATI Radeon Mobility U1 (IGP
 340M w/ 64MB shared memory). I am currently using the radeon driver
 that I believe was shipped with XFree 4.3. This graphics card has the
 ability to extend the desktop to 2048x78 using an external monitor. I
 have been unable to find any documentation about such a feature being
 supported (or not) by the radeon driver. I have attempted to obtain
 such
 a result by trying everything I know to do in my XF86Config file. I can
 get a 2048x768 desktop using the Xinerama option, but the extra desktop
 space does not display on the external monitor, rather in empty space
 next to the laptop's flat panel. I've also been successful cloning the
 display on both monitors using different methods (MonitorLayout and
 CloneDisplay). Does anyone know if the current radeon driver supports
 this feature or of any documentation that may contain information that
 will help me achieve this setup?
 
 Regards,
 
 Brandon Wittenburg
 
 __
 Do you Yahoo!?
 SBC Yahoo! DSL - Now only $29.95 per month!
 http://sbc.yahoo.com
 ___
 XFree86 mailing list
 [EMAIL PROTECTED]
 http://XFree86.Org/mailman/listinfo/xfree86

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


[XFree86] Net Manual

2003-07-01 Thread Gustavo Hernandez
Title: Mensaje



Hi 
guys,

 does anyone know a good manual to config nets?? I've Debian 
3.0, 2 PCs, main pc with two net cards, one connected to cablemodem, and 2nd 
connected to a hub where 2nd pc is connected too. Thanks in 
advance.

Gustavo Hernandez.


[XFree86] regarding touchscreen drivers

2003-07-01 Thread c.n naveen
Hi,



   I am using Xfree-4.0.3 version. I have a toucscreen
driver, the touchscreen is connected to a virtual COM
port and it does not generate interrupt.  I have  a
module which reads this port and writes data to a
file. The touchscreen works for a while when it gets
started up 
but later hangs, the keyboard and the mouse function
properly during this time.  Can anyone help me in this
regard?

   thanks in advance.

naveen.


Send free SMS using the Yahoo! Messenger. Go to http://in.mobile.yahoo.com/new/pc/
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] A problem with my build of version-4.3.0 on my RH 7.1system.

2003-07-01 Thread Oisin Feeley
On Thu, 26 Jun 2003, george goffe wrote:

 Howdy,
 
 This is the first time I've had to contact the bugs
 department at XFree86.org so if there's a better way
 to do this please let me know.
 

Hi George,
although it's great to send logs (indeed essential) your inclusion of 
logs.tar.gz reached nearly 405Kb which is not a good thing to send 
out to a huge mailing list.  It means that we all receive it, including 
those of us that use dial-up modem accounts.  It would be better to put 
these on a webpage and provide the URL for those that want to delve into 
the problem.  That said, I hope that you receive assistance with your 
problem.

Oisin Feeley



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


Re: [XFree86] Problem with glxinfo

2003-07-01 Thread Stéphane Purnelle
On Mon, 2003-06-30 at 23:09, Andy Goth wrote:
 On Monday, June 30, 2003 2:01 pm, Stéphane Purnelle wrote:
  I donwloaded and updated Mesa to Mesa 5.0.1.
  Maybe it's the source of problem ?
 
 I'm more inclined to think that the following is the problem:
 
   Xlib:  extension XFree86-DRI missing on display :0.0.
 
 Try adding Load dri to /etc/X11/XF86Config .  Showing us your 
 /etc/X11/XF86Config and /var/log/XFree86.0.log may help.

Here, the XF86Config and the log file.



# XFree86 4 configuration created by pyxf86config

Section ServerLayout
Identifier Default Layout
Screen  0  Screen0 0 0
InputDeviceMouse0 CorePointer
InputDeviceKeyboard0 CoreKeyboard
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 pc102
Option  XkbLayout be
EndSection

Section InputDevice
Identifier  Mouse0
Driver  mouse
Option  Protocol IMPS/2
Option  Device /dev/input/mice
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
ModelNameIiyama MA901U, VisionMaster Pro 452
DisplaySize  380290
HorizSync30.0 - 96.0
VertRefresh  50.0 - 180.0
ModeLine 1400x1050 129.0 1400 1464 1656 1960 1050 1051 1054 1100 +hsync 
+vsync
ModeLine 1400x1050 151.0 1400 1464 1656 1960 1050 1051 1054 1100 +hsync 
+vsync
ModeLine 1400x1050 162.0 1400 1464 1656 1960 1050 1051 1054 1100 +hsync 
+vsync
ModeLine 1400x1050 184.0 1400 1464 1656 1960 1050 1051 1054 1100 +hsync 
+vsync
Option  dpms
EndSection

Section Device

#Driver  nvidia
#   Option  NvAGP 1
Identifier  Videocard0
Driver  nv
VendorName  Videocard vendor
BoardName   NVIDIA GeForce 4 (generic)
ChipSet GeForce4 MX 420
VideoRam65536
BusID   
EndSection

Section Screen
Identifier Screen0
Device Videocard0
MonitorMonitor0
DefaultDepth 16
SubSection Display
Depth 16
Modes1280x1024 1280x960 1152x864 1024x768 800x600 
640x480
EndSubSection
SubSection Display
Depth 24
Modes1280x1024 1280x960 1152x864 1024x768 800x600 
640x480
EndSubSection
SubSection Display
Depth 15
Modes1280x1024 1280x960 1152x864 1024x768 800x600 
640x480
EndSubSection
EndSection

Section DRI
Mode 0666
EndSection


XFree86 Version 4.3.0
Release Date: 27 February 2003
X Protocol Version 11, Revision 0, Release 6.6
Build Operating System: Linux 2.4.18-24.8.0smp i686 [ELF] 
Build Date: 06 March 2003
Before reporting 

Re: [XFree86] Problem with glxinfo

2003-07-01 Thread Stéphane Purnelle
On Mon, 2003-06-30 at 23:18, Ian Romanick wrote:
 You have an Nvidia card.  Did you load Nvidia's 3D drivers?  If not, you 
 won't get any accelerated 3D.  glxinfo is working perfectly.

What would you mean ?

Attention, i don't would like to install NVidia driver because the text
mode (80x25) don't work.  The card don't change frequency and the text
console is not readable.




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

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


RE: [XFree86] Caught signal 11. Server abortin

2003-07-01 Thread V. Jagadesh Lee









With
4.3.0 XFree86 there are a lot of new hardware supported but it does not support
a lot of hardware that were supported by earlier versions. I suggest you down
load an earlier version depending on your hardware and install it.



Lee



-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf
Of Emilio Bustos
Sent: Friday, June 27, 2003 4:14 AM
To: [EMAIL PROTECTED]
Subject: [XFree86] Caught signal
11. Server abortin





I met a problem with the XFree86 of my RH9 box.
Hope somebody can help
me out. Thanks in advance!





I have the Diamond stealth 64 video
3200 (old hard) with 2 mg. Why don´t start my server?











I checked the log, but I can't figure out what is
wrong and what I need
to do to fix the problem according to the log. So I write this email to
you with the log and config files attached, hopefully, I can get
some advice from
you. I really appreciate your time and help!

Thank you!





 Emilio E.P. Bustos
[EMAIL PROTECTED]










[XFree86] Virtual HDTV resolution

2003-07-01 Thread Brandon Beattie
Hello everyone,

 I've been trying to find a solution to my problem for quite some time
but am unable to find anything that works.

 My situation is I have a DLP projector that has a max resolution of
1024x768.  However, the screen is 16x9, so I need a resolution of
1024x576.  I created a modline for this and it works for my NVidia fx
5200, but the projector interprets it as 1024x600.  Plus, my computer 
monitor doesn't support this res. so I can't get the same image to come 
up on both at once.  

 My next thought was to try to create a virtual screen of 1024x576, and
a physical resolution of 1024x768. (Hoping that I would get black bars
on top, bottom, or both).  What happens in this situation is XFree uses
640x480 in a 1024x576 virtual.  This occurs even with only a 1024 mode
defined.  

 My largest issue with doing this, is mythtv, mplayer, xine, etc, all
call to X directly to get the display size when doing a fullscreen on
these aplications (I believe this is so, but could be wrong).  If I
can't get things to be seen as 1024x576, then I have little/no chance of
getting the other apps to work correctly.  I havn't been able to find
out if any window managers or desktops support specifying a resolution
to occupy, and what would happen to video apps when they go fullscreen.

 My last option would be to use xinearama or twinview, but I don't think
these would be a good route for me, since I want the same image on both
displays at once.

I would appreciate any ideas on what I may be able to do, to get things
to work correctly.  My main concern is getting a 1024x576 virtual running
in a 1024x768 physical mode.

Thank you,

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


[XFree86] DPMS does not work on NVidia Quadro4 (NV25GL) w/DVI

2003-07-01 Thread Cory Bell
DPMS used to work fine on this monitor, stopped working when I switched
from a VGA/HD-DB15 cable to a Dual-Link DVI-D cable.

Any ideas?

-Cory

System Info -
Distro: RedHat 9
Kernel: 2.4.20-8
XFree86 Version: 4.3.0 (Red Hat Linux release: 4.3.0-2)
Video Card: 10de:025b rev a3 (Quadro4 700 XGL)
Video Driver: nv
Monitor: NEC 1760VM / DVI

Config excerpts:
Section Monitor
Identifier   Monitor0
VendorName   NEC
ModelNameLCD1760VM
HorizSync31-69
VertRefresh  56-75
Option  dpms
EndSection
...
Section Device
Identifier  Videocard0
Driver  nv
VendorName  Videocard vendor
BoardName   NVIDIA Quadro 4 (generic)
VideoRam65536
Option  CrtcNumber1
Option  FlatPanel on
EndSection

From the logs:
(**) Option dpms
(**) NV(0): DPMS enabled
...
(II) Loading /usr/X11R6/lib/modules/libvgahw.a
(II) Module vgahw: vendor=The XFree86 Project
compiled for 4.3.0, module version = 0.1.0
ABI class: XFree86 Video Driver, version 0.6
(**) NV(0): Option FlatPanel on
(**) NV(0): Option CrtcNumber 1
(==) NV(0): Using HW cursor
(**) NV(0): forcing DFP usage
(--) NV(0): Linear framebuffer at 0xF400
(--) NV(0): MMIO registers at 0xFC00
(II) NV(0): Detected CRTC controller 0 being used
(**) NV(0): Forcing usage of CRTC 1


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


Re: [XFree86] Virtual HDTV resolution

2003-07-01 Thread MikeH
Hi,

On Tuesday 01 Jul 2003 7:09 pm, Brandon Beattie wrote:
  My situation is I have a DLP projector that has a max resolution of
 1024x768.  However, the screen is 16x9, so I need a resolution of
 1024x576.  I created a modline for this and it works for my NVidia fx
 5200, but the projector interprets it as 1024x600.  Plus, my computer
 monitor doesn't support this res. so I can't get the same image to come
 up on both at once.

I had (nearly) the same situation getting a widescreen ratio
tv-out on my nvidia card. The trick was to generate a modeline
for the specific resolution you want, and specifiy only that
resolution on the Modes section in XF86config.
(best ask someone else about the modeline though! I had
terrible trouble finding a tool to generate mine. In the end I
took the modeline for 800x600 and modified it by hand to get
800x450, the output res I wanted.)

Mplayer can be set to a specific resolution through the command
line, so even if your output res is 4:3, you can use the
-aspect and -x -y switches with mplayer to get the
resolution and aspect ration you want. 

Hope that helps

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


[XFree86] Trouble with a SiS650

2003-07-01 Thread Jesus Rivero



 Hello, My name is Jesus and im 
trying to install Linux on a MSI motherboard, but im having torubles configuring 
the video card (integrated). I downloaded a driver, but i dont have a clue how 
to get it work.. Thanks for your help


Jesus Rivero


[XFree86] Re: core pointer error

2003-07-01 Thread Egbert Eich
PRASHANT  N writes:
  i entered the command
  ln -sf /dev/psaux /dev/mouse
  and tried to start the xserver
  but it gives the same error .
  i am atttaching the log file xfree86.0.log for your reference
  please guide me
  
(II) LoadModule: psaux
(WW) Warning, couldn't open module psaux
(II) UnloadModule: psaux
(EE) Failed to load module psaux (module does not exist, 0)
(II) LoadModule: mouse
(WW) Warning, couldn't open module mouse
(II) UnloadModule: mouse
(EE) Failed to load module mouse (module does not exist, 0)

Looks like your installation and your config file is hosed.
There is no module psaux. /dev/psaux is the device for a PS/2
mouse.
A module /usr/X11R6/lib/modules/input/mouse_drv.o should however
exist.
Reinstall the package that contains the Xserver modules and rerun
your config utility.

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


Re: [XFree86] 3dlabs wildcat vp 880 - Dual Monitor setup

2003-07-01 Thread Justin Noack
Thanks for the response let me know if you hear of anything.

Justin Noack

- Original Message - 
From: Alex Deucher [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, July 01, 2003 9:34 AM
Subject: [XFree86] 3dlabs wildcat vp 880 - Dual Monitor setup


 I believe Sven Luther was working on support for P10 based 3dlabs
 cards.  I don't know what the status is.
 
 Alex
 
 
 -
 
 I'm looking for a sample config for the 3dlabs wildcat
 vp 880 useing dual display.  I have been looking at
 man configs and have had no success.  Anouther issue I
 have ran into is a driver that will work with the dual
 monitor.  Any help is appreciated.
 
 
 Thanks,
 Justin Noack
 
 __
 Do you Yahoo!?
 SBC Yahoo! DSL - Now only $29.95 per month!
 http://sbc.yahoo.com
 ___
 XFree86 mailing list
 [EMAIL PROTECTED]
 http://XFree86.Org/mailman/listinfo/xfree86
 
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


RE: [XFree86] S3 Trio64V2

2003-07-01 Thread Rogue Spider
Getting back with version information

4.2.1 version 11 revision 0 release 6600
release date 3 sep 2002
build OS FreeBSD 5.0-RC i386 ELF

I was being nice.
to send you the log file I need
to a) know how to access a 3.5 b) copy the file
to it c) get the info back off it onto a win 2000
system.
and my disk, I can format but cant use,
dont have a heXed clue were to copy to if no disk
exist
and the disk once formated to use freebsd wont work on
a windows 95,98,me.2000, or any other os were I can
access the Internet.
which is why I asked for any help at all.
I really didna mean to sound disrespectful really.
I just dont have a clue what else to try.
and as a windows system trouble shooter I feel like
a complete Idiot dealing with a whole new os.

--- Cynthia Grossen [EMAIL PROTECTED] wrote:
 You have to send us the log file if you want
 accurate help. And be polite,
 he was trying to help you.

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


[XFree86] Sis650

2003-07-01 Thread Jesus Rivero





Im trying to install Linux on a MSI MotherBoard 
with video, audio and Lan integrated. the X is giving me a problem because the 
video card it is not listed in Linux drivers (SiS 650). I downloaded a driver 
but it wont work. I dont know who to install this new driver.. Please 
Help


XFree86.0.log
Description: Binary data


RE: [XFree86] problem in X

2003-07-01 Thread Mark Vojkovich
On Tue, 1 Jul 2003, V. Jagadesh Lee wrote:

 Vinoth,
 
 I am Jagadesh Lee from same place as you. With 4.3.0 XFree86 there are a
 lot of new hardware supported but it does not support a lot of hardware
 that were supported by earlier versions. I suggest you down load an
 earlier version depending on your hardware and install it.
 
 Best wishes,
 Lee

   That would be bad advice since the error doesn't have anything
to do with what hardware he has.  He seems to be missing kernel
support for virtual terminals, which is something that any version
of XFree86 would require.


Mark.


 
 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On
 Behalf Of vinoth kumar
 Sent: Tuesday, July 01, 2003 11:28 AM
 To: [EMAIL PROTECTED]
 Subject: [XFree86] problem in X
 
 sir, 
 iam vinoth (india-tamilnadu) started working
 in linux  before two months (linux 7.0) now i have
 installed redhat linux 9.0 in my system  at the
 beginig i have worked in the graphical mode but
 suddenly a problem occured kindly guide me,
 i have attached the bug report,
  
 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: Mon Jun
 30 21:15:41 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
 (**) XKB: layout: us
 (==) 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 3
 
 
 Fatal server error:
 xf86OpenConsole: Cannot open virtual console 3 (No
 such file or directory)
 
 
 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]
  
 
 
 __
 Do you Yahoo!?
 SBC Yahoo! DSL - Now only $29.95 per month!
 http://sbc.yahoo.com
 ___
 XFree86 mailing list
 [EMAIL PROTECTED]
 http://XFree86.Org/mailman/listinfo/xfree86
 
 
 ___
 XFree86 mailing list
 [EMAIL PROTECTED]
 http://XFree86.Org/mailman/listinfo/xfree86
 

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


[XFree86] Could not open default font 'fixed'

2003-07-01 Thread Nick Sequino
Hello:

This is a Red Hat 8.0 standalone PC ... I was trying to install Oracle 9i
Release 2 on Linux and I unfortunately followed 2 or 3 different sets of
directions for establishing the Oracle user account and dba account.

Regardless, I can no longer start in runlevel 5 gui mode now ... I don't
want to reinstall Red Hat yet again, and lose the files I've just downloaded
plus many other valuable files just because of this damned problem ... this
is twice now ...

Can you help?

The only clues I have are from the /var/log/XFree86.0.log file, which ends
with the following:

Could not init front path element unix/:7100, removing from list!

And then when I try to restart I always get:  could not open default font
'fixed'.

The very last thing I was doing was trying to sign in as the oracle user.  I
had just written a new .bash_profile file, this time in /opt/oracle.
For the previous two days I was using another .bash_profile file, in
/usr/oracle.  I had just blown away that /usr/oracle directory when this
problem started.

It was looking for my $ORACLE_HOME location, which had been /usr/oracle, but
I'd just switched it to /opt/oracle and moved over some files to there.
When I restarted it came back with some problem with the
/usr/oracle/.gconf-test-locking-file and not being able to locate it.

I created that file brute-force style with cat  thatfilename ... and then
got this cannot start X problem.

Please answer.
Please try to help.  I'm on the same PC, on the Windows XP side sending this
to you.  (I set it up with a dual boot with grub.)

Please answer.

Nick

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


Re: [XFree86] DPMS does not work on NVidia Quadro4 (NV25GL) w/DVI

2003-07-01 Thread Mark Vojkovich
   DPMS support in the nv driver is new to XFree86 4.3 and only
supports CRTs.  It doesn't work on the DVI connector.


Mark.

On 1 Jul 2003, Cory Bell wrote:

 DPMS used to work fine on this monitor, stopped working when I switched
 from a VGA/HD-DB15 cable to a Dual-Link DVI-D cable.
 
 Any ideas?
 
 -Cory
 
 System Info -
 Distro: RedHat 9
 Kernel: 2.4.20-8
 XFree86 Version: 4.3.0 (Red Hat Linux release: 4.3.0-2)
 Video Card: 10de:025b rev a3 (Quadro4 700 XGL)
 Video Driver: nv
 Monitor: NEC 1760VM / DVI
 
 Config excerpts:
 Section Monitor
 Identifier   Monitor0
 VendorName   NEC
 ModelNameLCD1760VM
 HorizSync31-69
 VertRefresh  56-75
 Option  dpms
 EndSection
 ...
 Section Device
 Identifier  Videocard0
 Driver  nv
 VendorName  Videocard vendor
 BoardName   NVIDIA Quadro 4 (generic)
 VideoRam65536
 Option  CrtcNumber1
 Option  FlatPanel on
 EndSection
 
 From the logs:
 (**) Option dpms
 (**) NV(0): DPMS enabled
 ...
 (II) Loading /usr/X11R6/lib/modules/libvgahw.a
 (II) Module vgahw: vendor=The XFree86 Project
 compiled for 4.3.0, module version = 0.1.0
 ABI class: XFree86 Video Driver, version 0.6
 (**) NV(0): Option FlatPanel on
 (**) NV(0): Option CrtcNumber 1
 (==) NV(0): Using HW cursor
 (**) NV(0): forcing DFP usage
 (--) NV(0): Linear framebuffer at 0xF400
 (--) NV(0): MMIO registers at 0xFC00
 (II) NV(0): Detected CRTC controller 0 being used
 (**) NV(0): Forcing usage of CRTC 1
 

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


Re: [XFree86] Problem with glxinfo

2003-07-01 Thread Ian Romanick
Stéphane Purnelle wrote:
On Mon, 2003-06-30 at 23:18, Ian Romanick wrote:

You have an Nvidia card.  Did you load Nvidia's 3D drivers?  If not, you 
won't get any accelerated 3D.  glxinfo is working perfectly.


What would you mean ?

Attention, i don't would like to install NVidia driver because the text
mode (80x25) don't work.  The card don't change frequency and the text
console is not readable.
That sounds like a problem for you.  Nvidia has not made available 
documentation for the XFree86 / DRI folks to write 3D drivers, so the 
*ONLY* accelerated 3D drivers are the closed-source drivers from Nvidia. 
 By text-mode I assume you mean an FBcon driver?  That has nothing to 
do with XFree86 anyway.  The sollution is that you're going to have to 
figure out which sets of drivers (for FBcon and XFree86) to install 
together to get the set of functionality that you want.  You may find 
that you can't get everything. :(

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


Re: [XFree86] Problem with glxinfo

2003-07-01 Thread Stéphane Purnelle
On Tue, 2003-07-01 at 22:29, Ian Romanick wrote:
 Stéphane Purnelle wrote:
  On Mon, 2003-06-30 at 23:18, Ian Romanick wrote:
  
 You have an Nvidia card.  Did you load Nvidia's 3D drivers?  If not, you 
 won't get any accelerated 3D.  glxinfo is working perfectly.
  
  
  What would you mean ?
  
  Attention, i don't would like to install NVidia driver because the text
  mode (80x25) don't work.  The card don't change frequency and the text
  console is not readable.
 
 That sounds like a problem for you.  Nvidia has not made available 
 documentation for the XFree86 / DRI folks to write 3D drivers, so the 
 *ONLY* accelerated 3D drivers are the closed-source drivers from Nvidia. 
   By text-mode I assume you mean an FBcon driver?  That has nothing to 
 do with XFree86 anyway.  The sollution is that you're going to have to 
 figure out which sets of drivers (for FBcon and XFree86) to install 
 together to get the set of functionality that you want.  You may find 
 that you can't get everything. :(

Thank you for your answer

the original problem is the loki_demos or other games/software don't
work correctly because the XFREE86/DRI is not present for glxinfo.

If you have a solution for me.




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

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


RE: [XFree86] Trouble with a SiS650

2003-07-01 Thread News/Info



Well if you are Jesus it should 
not be that big of a deal, make some miracles happen or something... 
;-)

Sorry could not help 
it.

A little more info is needed 
like what os kernel, what video card, etc... and what 
versions.

You can always try 
Xconfigurator as a start...


-Original Message-From: [EMAIL PROTECTED] 
[mailto:[EMAIL PROTECTED]On Behalf Of Jesus 
RiveroSent: Tuesday, July 01, 2003 3:23 PMTo: 
[EMAIL PROTECTED]Subject: [XFree86] Trouble with a 
SiS650
 Hello, My name is Jesus and im 
trying to install Linux on a MSI motherboard, but im having torubles configuring 
the video card (integrated). I downloaded a driver, but i dont have a clue how 
to get it work.. Thanks for your help


Jesus Rivero


[XFree86] Font server problem ...

2003-07-01 Thread Nick Sequino
Hello:

This is apparently a Red Hat xfs configuration problem.

Red Hat 8.0 standalone PC ... I was trying to install Oracle 9i
Release 2 on Linux and I unfortunately followed 2 or 3 different sets of
directions for establishing the Oracle user account and dba account.

Regardless, I can no longer start in runlevel 5 gui mode now ... I don't
want to reinstall Red Hat yet again, and lose the files I've just downloaded
plus many other valuable files just because of this damned problem ... this
is twice now ...

I have these clues: the /var/log/XFree86.0.log file, which ends with:

Could not init font path element unix/:7100, removing from list!

I've located the xfs files but haven't modified them.  Changed nothing so
far.

When I try to restart I always get:  could not open default font
'fixed'.

If I do this:  /sbin/service xfs status
I get the following: dead but pid file exists.

How can I (should I?) locate and kill that file/process?

Can someone please help?

Nick

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


RE: [XFree86] S3 Trio64V2

2003-07-01 Thread News/Info
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Behalf Of Rogue Spider
Sent: Tuesday, July 01, 2003 3:43 PM
To: [EMAIL PROTECTED]
Subject: RE: [XFree86] S3 Trio64V2


Getting back with version information

4.2.1 version 11 revision 0 release 6600
First, use a new floppy which should already be formatted for DOS.
If not then use your Windows whatever computer to format it - for
simplicity's sake.
Take the disk, insert into floppy drive and type:

   mount /dev/fd0

You should see the green light on the drive light up.
Check your fstab file by typing:

   cat /etc/fstab

You should see a line in there that looks something like:

/dev/fd0/mnt/floppy auto a bunch of other opitions

If it shows auto in the third column it means the system will atomatically
detect what file system (dos, linux, etc..) the floppy was formatted for and
mount that file system.

The column that reads /mnt/floppy is equivalent of typing a: in dos.

If the mounting step above worked then you would go to the floppy by typing:

   cd /mnt/floppy

To copy files to the floppy you do:

   cp /var/log/XFree86.0.log /mnt/floppy/XFree86.0.log

When you are finished copying the files you should unmount the drive:

   umount /mnt/floppy

Then send your attachment



release date 3 sep 2002
build OS FreeBSD 5.0-RC i386 ELF

I was being nice.
to send you the log file I need
to a) know how to access a 3.5 b) copy the file
to it c) get the info back off it onto a win 2000
system.
and my disk, I can format but cant use,
dont have a heXed clue were to copy to if no disk
exist
and the disk once formated to use freebsd wont work on
a windows 95,98,me.2000, or any other os were I can
access the Internet.
which is why I asked for any help at all.
I really didna mean to sound disrespectful really.
I just dont have a clue what else to try.
and as a windows system trouble shooter I feel like
a complete Idiot dealing with a whole new os.

--- Cynthia Grossen [EMAIL PROTECTED] wrote:
 You have to send us the log file if you want
 accurate help. And be polite,
 he was trying to help you.

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

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


Re: [XFree86] Font server problem ...

2003-07-01 Thread Brandon Wittenburg
 
 Could not init font path element unix/:7100, removing from list!
 

You are getting this because xfs has died and is no longer listening to
that port.

 
 How can I (should I?) locate and kill that file/process?
 

On Redhat I believe you should be able to do:

/etc/init.d/xfs stop

this should remove the pid file.

and then

/etc/init.d/xfs start

and look for errors, or if you are luck, the [ok].

Regards,

Brandon Wittenburg


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


RE: [XFree86] Font server problem ...

2003-07-01 Thread News/Info
The pid files for RH are usually in /var/run

If not you can do:

   find / -name xfs.pid

include the quotes due to the .

that should show you where it is.

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Behalf Of Nick Sequino
Sent: Tuesday, July 01, 2003 5:26 PM
To: [EMAIL PROTECTED]
Subject: [XFree86] Font server problem ...


Hello:

This is apparently a Red Hat xfs configuration problem.

Red Hat 8.0 standalone PC ... I was trying to install Oracle 9i
Release 2 on Linux and I unfortunately followed 2 or 3 different sets of
directions for establishing the Oracle user account and dba account.

Regardless, I can no longer start in runlevel 5 gui mode now ... I don't
want to reinstall Red Hat yet again, and lose the files I've just downloaded
plus many other valuable files just because of this damned problem ... this
is twice now ...

I have these clues: the /var/log/XFree86.0.log file, which ends with:

Could not init font path element unix/:7100, removing from list!

I've located the xfs files but haven't modified them.  Changed nothing so
far.

When I try to restart I always get:  could not open default font
'fixed'.

If I do this:  /sbin/service xfs status
I get the following: dead but pid file exists.

How can I (should I?) locate and kill that file/process?

Can someone please help?

Nick

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

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


[XFree86] XFree86 problems starting up [Am I mailing the right place?]

2003-07-01 Thread James Aley
Hi there,

I was looking around the web for support and stumbled across this link 
to send a mail, so I hope I got the right place :P

I'm trying to use XFree86 on my iBook, but when I run it, the xclock 
appears at the top right of the screen briefly, then disappears, and 
the XDarwin app closes. I've been looking around the web but I am 
clueless, sorry!

Any help appreciated,

Thanks.

James Aley. [EMAIL PROTECTED]

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


Re: [XFree86] ATI IGP 340M - Dual head on a lapltop

2003-07-01 Thread hy0
Please double check the sync ranges specified for your external CRT:
HorizSync  50-90
VertRefresh 60
For 60 Hz refresh, HorizSync is too high for the three modes listed in you
config file (they need 48.4, 37.9 and 31.5 respectively).

Regards,
Hui

- Original Message -
From: Brandon Wittenburg [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Tuesday, July 01, 2003 10:13 AM
Subject: Re: [XFree86] ATI IGP 340M - Dual head on a lapltop


 Thanks Alex. If you've a spare moment would you mind looking at my
 current XF86Config file? http://www.656.org/ati/XF86Config The
 XFree86.0.log is at http://www.656.org/ati/XFree86.0.log Just please let
 me know if something jumps out as being horribly wrong (I've stripped
 comments, so it is pretty easy to read through). I submitted a second
 email concerning my problem yesterday with more accurate information.
 Mainly that the chipset is an IGP 320M, not 340M as I had previously
 believed. When defining two screens, two monitors, and two devices and I
 am getting a clone of the primary head on the secondary head. Xinerama
 says that it is enabled in the log, but you couldn't tell by looking at
 the display. From the bugzilla record below I gather I'll need the cvs
 to use the patch. Is this correct? Thanks for your help.

 Brandon

 On Tue, 2003-07-01 at 08:38, Alex Deucher wrote:
  the radeon driver supports dualhead.  you can either do it with two
  screen entries and xinerama or with my mergedfb patch
  (http://bugs.xfree86.org//cgi-bin/bugzilla/show_bug.cgi?id=276).  the
  IGP chipsets do not support HW 3D yet.  Make sure your screen entries
  do not contain the videoram option as that will prevent dualhead from
  working.  check the radeon and XF86Config man pages for more info.
 
  Alex
 
  
 
  Hello,
 
  I've an hp ze4430 laptop. It contains an ATI Radeon Mobility U1 (IGP
  340M w/ 64MB shared memory). I am currently using the radeon driver
  that I believe was shipped with XFree 4.3. This graphics card has the
  ability to extend the desktop to 2048x78 using an external monitor. I
  have been unable to find any documentation about such a feature being
  supported (or not) by the radeon driver. I have attempted to obtain
  such
  a result by trying everything I know to do in my XF86Config file. I can
  get a 2048x768 desktop using the Xinerama option, but the extra desktop
  space does not display on the external monitor, rather in empty space
  next to the laptop's flat panel. I've also been successful cloning the
  display on both monitors using different methods (MonitorLayout and
  CloneDisplay). Does anyone know if the current radeon driver supports
  this feature or of any documentation that may contain information that
  will help me achieve this setup?
 
  Regards,
 
  Brandon Wittenburg
 
  __
  Do you Yahoo!?
  SBC Yahoo! DSL - Now only $29.95 per month!
  http://sbc.yahoo.com
  ___
  XFree86 mailing list
  [EMAIL PROTECTED]
  http://XFree86.Org/mailman/listinfo/xfree86

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


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


Re: [XFree86] Caught signal 11. Server abortin

2003-07-01 Thread Emilio Bustos



I understand your explication, but in the install 
instance the setup accept the card.
And the card is in compatibility list 
Thanks

  - Mensaje original - 
  De: V. Jagadesh 
  Lee 
  Para: [EMAIL PROTECTED] 
  Enviado: Martes 1 de Julio de 2003 
  14:18
  Asunto: RE: [XFree86] Caught signal 11. 
  Server abortin
  
  
  With 4.3.0 XFree86 there 
  are a lot of new hardware supported but it does not support a lot of hardware 
  that were supported by earlier versions. I suggest you down load an earlier 
  version depending on your hardware and install 
it.
  
  Lee
  
  -Original 
  Message-From: [EMAIL PROTECTED] 
  [mailto:[EMAIL PROTECTED] On 
  Behalf Of Emilio BustosSent: Friday, June 27, 
  2003 4:14 
  AMTo: [EMAIL PROTECTED]Subject: [XFree86] Caught signal 11. 
  Server abortin
  
  
  I met a problem with the XFree86 of 
  my RH9 box. Hope somebody can helpme out. Thanks in 
  advance!
  
  I have the Diamond stealth 64 
  video 3200 (old hard) with 2 mg. Why don´t start my 
  server?
  
  
  
  I checked the log, 
  but I can't figure out what is wrong and what I needto do to fix the 
  problem according to the log. So I write this email toyou with the log and 
  config files attached, hopefully, I can get some advice 
  fromyou. I really appreciate your time and help!Thank 
  you!
  
   Emilio E.P. 
  Bustos[EMAIL PROTECTED]


Re: [XFree86] ATI IGP 340M - Dual head on a lapltop

2003-07-01 Thread Brandon Wittenburg
On Sat, 2000-07-01 at 16:49, hy0 wrote:
 Please double check the sync ranges specified for your external CRT:
 HorizSync  50-90
 VertRefresh 60
 For 60 Hz refresh, HorizSync is too high for the three modes listed in you
 config file (they need 48.4, 37.9 and 31.5 respectively).
 
 Regards,
 Hui


Thanks for the advise. However, when I set the HorizSync to something
lower, the CRT fails to initialize. It is a unknown monitor. It has no
brand identifier on it anywhere that I can see. With the HorizSync set
as it is the CRT will always come on.

The problem I am fighting is that the CRT is displaying a clone of the
primary display. According to everything that I have read it should be
able to use xinerama to make one big desktop. But I have been unable to
actually get anything but a cloned display (it does not help to only see
what I am doing twice ;)). I have read that dri and xinerama do not work
well with each other. This is perfectly fine with me since dri is not
supported for my chipset anyway.

Right now I am at a total loss as to what approach I should take. It
seems as if there should be something I have to do to tell X to display
a seperate screen on the external monitor (I thought that Xinerama would
do this) instead of cloning the primary display.

The only thing that I am sure of right now is that the Windows (ms)
could display on the external monitor in a xinerama style, but I would
rather have only one screen with gnu/linux+xfree+gnome than proper dual
support from ms. I like my gnu tools better. :)

Regards,

Brandon

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


[XFree86] Help SiS 620 Video Card

2003-07-01 Thread Gabriel Antonio Aravena Gatica
Hello:

I do not speak much English so I will try to be precise.

I have a problem with the video card sis 620 in version 4.3.0 of XFree86.  
sis 530 detects one to me and when the change to 620 of all ways to me 
continues working badly, the screen with annoying vertical lines is seen, 
the rare thing is that in the version 4.2.x did not have that problem.  the 
possibility exists of occupying some to driver exclusive.  the video card 
this integrated in the plate mother.

Thank you very much.

_
Charla con tus amigos en línea mediante MSN Messenger: 
http://messenger.yupimsn.com/

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


[XFree86] Virtual Resolution

2003-07-01 Thread Brandon Beattie
Is it possible, or what does it take to get a virtual resolution
that is smaller than the actual physical resolution?  

Example:

a 1024x768 (virtual) in 1280x1024 (physical)
or 1024x576 (virtual) in 1024x768 (physical)

Currently when I specify a smaller virtual, XFree drops into 640x480
(physical) which is smaller than the 1024x576. 

Basically I want to reverse what a virtual mode is normally used for. 
-- But it appears I may need to force it, somehow, to do this.  (You'd
think this would be easier to do than what it took to support a larger 
virtual resolution. :-)

Thanks,

--Brandon


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


Re: [XFree86] Question about GCC version

2003-07-01 Thread William Gallafent
On Tue, 1 Jul 2003, Joseph Felps wrote:

 What is the best version to use to compile X from source?

Who knows! I've used various of 3.2.x and 3.3, all with success.

 I've compiled it and with 2.95.4 but I cannot get it to install without
 giving an error.

What error?

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


Re: [XFree86] Question about GCC version

2003-07-01 Thread Joseph Felps
William Gallafent wrote:

On Tue, 1 Jul 2003, Joseph Felps wrote:

 

What is the best version to use to compile X from source?
   

Who knows! I've used various of 3.2.x and 3.3, all with success.

 

I've compiled it and with 2.95.4 but I cannot get it to install without
giving an error.
   

What error?

 

Is there a make(install) log that I can post?  If so where would it be.

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


RE: [XFree86] problem in X

2003-07-01 Thread Bharathi S
On Tue, 1 Jul 2003, V. Jagadesh Lee wrote:

 With 4.3.0 XFree86 there are a lot of new hardware supported but it

Vinoth is using 4.3.0, So I think, Problem may be due to the wrong
settings. Usally X will use the VT7, but here X is trying to open VT3.

Try to reconfigure ur X and test :)  Tool - redhat-config-xfree

  Subject: [XFree86] problem in X
  Fatal server error: xf86OpenConsole: Cannot open virtual console 3 
  (No such file or directory)

Bye :)
-- 
Bharathi S, IndLinuX Team,   (__)
DON Lab,TeNeT Group, oo )
IIT-Madras, Chennai-INDIA.   (_/\ 

Learn By Listening. Understand By Reflecting.

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


Re: [XFree86] Virtual Resolution

2003-07-01 Thread Mark Vojkovich
On Tue, 1 Jul 2003, Brandon Beattie wrote:

 Is it possible, or what does it take to get a virtual resolution
 that is smaller than the actual physical resolution?  

   This is not possible.  Conceptually, it doesn't really even
make sense.  Virtual is by definition, greater than or equal
to the mode.

Mark.


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


Re: [XFree86] Question about GCC version

2003-07-01 Thread Mark Vojkovich
On Tue, 1 Jul 2003, Joseph Felps wrote:

 What is the best version to use to compile X from source?  I've compiled 
 it and with 2.95.4 but I cannot get it to install without giving an error.

  It should compile with any.  I use 2.95.3.  Your error is unlikely
to have anything to do with the compiler.


Mark.

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


[XFree86] How do I install 4.3.0 for cygwin?

2003-07-01 Thread Paul Farmer



The current release of cygwin distributes release 
4.2.0 of xfree86. I want to be able to resize my
root window so I want to install release 4.3.0 of 
xfree86. I downloaded the install Xinstall.sh program
and it told me to download the extract.exe program. 
I download an extract.exe program and 
tried once again. This time it told me that I had 
the wrong version of extract.exe. I ran sh Xinstall.sh -check
and it reported the following:

CYGWIN_NT-5.1 version 1.3.22(0.78/3/2) architecture 
i686.

I cannot find this extract.exe. 

Can some one help.

I am running cygin on a multihead xp 
computer.

Thanks,

Paul.




Re: [XFree86] [SOLVED] How can one disable the mouse cursor?

2003-07-01 Thread Dennis Herbrich
On Tue, Jul 01, 2003 at 02:10:39PM +0200, Egbert Eich wrote:
 Dennis Herbrich writes:
 [transparent image used as mouse pointer]
 
 This however only works for the root window. If your application sets another 
 cursor it will be displayed when the cursor is above an app window.
 The same is true for most modern window managers which create their
 own root windows.

Of course, I'm fully aware of that. Fortunately I do not need to run any
window manager, and the one and only application that is supposed to run
on a regular basis is a fullscreen SDL chooser application, which
happens to show the root window mouse cursor. I'm sure that it's
possible from within SDL to toggle the cursor visibility, but the
transparent cursor works fine without tinkering with the SDL app's
sources.

 [SDL taking X down when fullscreening with void mouse driver]
 
 This shouldn't happen. Maybe there is a bug in the void driver.
 Can you use a debugger to look at this, please?

I would give it a try, but I have only touched gdb a few times. Is there
any online documentation available about creating useful output, or
could you send me terse intructions to [EMAIL PROTECTED] I am not
quite sure how to produce a dump that would be helpful. Heck, I wouldn't
know how to produce a dump at all. ;)

 Egbert.

Regards,
  Dennis

-- 
We're Germans and we use Unix. That's a combination of two demographic
groups known to have no sense of humour whatsoever.
  -- Hanno Mueller in de.comp.os.unix.programming   GPG 0x2B3C646D
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86