CVS Update: xc (branch: trunk)

2003-09-02 Thread Marc Aurele La France
CVSROOT:/home/x-cvs
Module name:xc
Changes by: [EMAIL PROTECTED]   03/09/02 10:13:41

Log message:
  Typo

Modified files:
  xc/programs/Xserver/hw/xfree86/common/:
xf86Init.c 
  
  Revision  ChangesPath
  3.205 +2 -2  xc/programs/Xserver/hw/xfree86/common/xf86Init.c

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


CVS Update: xc (branch: trunk)

2003-09-02 Thread Marc Aurele La France
CVSROOT:/home/x-cvs
Module name:xc
Changes by: [EMAIL PROTECTED]   03/09/02 11:19:17

Log message:
   413. Add missing REQUEST_SIZE_MATCH() to xSyncSetCounter protocol request
(noticed by Ruben Nunez Francisco).

Modified files:
  xc/programs/Xserver/Xext/:
sync.c 
  xc/programs/Xserver/hw/xfree86/:
CHANGELOG 
  
  Revision  ChangesPath
  3.13  +5 -5  xc/programs/Xserver/Xext/sync.c
  3.2837+3 -1  xc/programs/Xserver/hw/xfree86/CHANGELOG

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


CVS Update: xc (branch: trunk)

2003-09-02 Thread Thomas Winischhofer
CVSROOT:/home/x-cvs
Module name:xc
Changes by: [EMAIL PROTECTED]   03/09/02 11:25:07

Log message:
SiS driver update

Modified files:
  xc/programs/Xserver/hw/xfree86/:
CHANGELOG 
  
  Revision  ChangesPath
  3.2838+5 -1  xc/programs/Xserver/hw/xfree86/CHANGELOG

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


CVS Update: xc (branch: trunk)

2003-09-02 Thread Mark Vojkovich
CVSROOT:/home/x-cvs
Module name:xc
Changes by: [EMAIL PROTECTED]   03/09/02 18:10:28

Log message:
Fix a minor GeForceFX + flatpanel + video overlay corruption issue.

Modified files:
  xc/programs/Xserver/hw/xfree86/drivers/nv/:
nv_dac.c 
  
  Revision  ChangesPath
  1.36  +3 -1  xc/programs/Xserver/hw/xfree86/drivers/nv/nv_dac.c

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


Intellimouse protocol 4th byte limits and AMI 150T OpticalWebScroll Mouse

2003-09-02 Thread Matthew Bell
Hi,
I have been reading about the Intellimouse protocol and the usage of the 4th
byte in the standard packet. Some documentation claims that the low order nibble
is used as magnitude and the high order nibble as sign (F for negative, 0 for
positive), encoded in 2's complement; This would indicate that the valid range
for this input is 15 to -15. Some documents claim that the full range of 127 to
-127 is valid. However, dz @
xc/programs/Xserver/hw/xfree86/input/mouse/mouse.c:1414 is limited to 6  -6
and this certainly seems incorrect. The case in point is an AMI 150T Optical
WebScroll mouse, which reports vertical scroll as 1 and -1 (FF) and horizontal
scroll as 7 and -7 (F9). I have a patch to remove the checks on the limits that
works for me:

--- xc/programs/Xserver/hw/xfree86/input/mouse/mouse.c.orig 2001-12-19
16:05:22.0 +
+++ xc/programs/Xserver/hw/xfree86/input/mouse/mouse.c  2003-08-31
23:55:04.0 +0100
@@ -1411,7 +1411,5 @@
dx = (pBuf[0]  0x10) ?pBuf[1]-256  :  pBuf[1];
dy = (pBuf[0]  0x20) ?  -(pBuf[2]-256) : -pBuf[2];
dz = (char)pBuf[3];
-   if ((dz = 7) || (dz = -7))
-dz = 0;
break;

  
I also tested it with  15   -15 which worked as well. I do not know the
correct solution.

Hoping to be helpful
Matthew Bell
___
Devel mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/devel


synaptics lockups (was Re: radeon lockups ...)

2003-09-02 Thread Warren Turkal
Warren Turkal wrote:

 Michel Dänzer wrote:
 In that case it can hardly be an X problem. Sounds rather like the
 kernel (anything interesting in its output? Does the same thing happen
 with 2.4 kernels?) or hardware.
 
 I am testing 4.2.1 at this point to see if I come up with the same issues
 as with 4.3.0.
 
 Warren Turkal

I came up with the same issues as with 4.3. It turns out that I was running
a not-the-latest version of the synaptics event driver for XFree86. I
looked in the changelog of the newest one, and it claims to have a work
around for a bug in XFree86 that could cause lockups. Does this bug still
exist?

Here is link to the driver:
http://w1.894.telia.com/~u89404340/touchpad/index.html

I guess my personal suspicions that it was only locking while I was using
the touchpad could have had some merit. I am sorry I did not mention that
earlier. Is the synaptics driver to be included in XFree86 anytime soon
since it is required with 2.6 kernels on computers with synaptics
touchpads? You cannot use a regular ps2 mouse driver without lots of
contortions (ie kernel options).

Warren Turkal
-- 
Treasurer, GOLUM, Inc.
http://www.golum.org

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


howto beep in dix/main.c or some other DDX function?

2003-09-02 Thread Tao, Qian (? IES)
Title: howto beep in dix/main.c or some other DDX function?






I want to write a beep func in above.





Re: synaptics lockups (was Re: radeon lockups ...)

2003-09-02 Thread Mike A. Harris
On Mon, 1 Sep 2003, Warren Turkal wrote:

 In that case it can hardly be an X problem. Sounds rather like the
 kernel (anything interesting in its output? Does the same thing happen
 with 2.4 kernels?) or hardware.
 
 I am testing 4.2.1 at this point to see if I come up with the same issues
 as with 4.3.0.
 
 Warren Turkal

I came up with the same issues as with 4.3. It turns out that I was running
a not-the-latest version of the synaptics event driver for XFree86. I
looked in the changelog of the newest one, and it claims to have a work
around for a bug in XFree86 that could cause lockups. Does this bug still
exist?

Here is link to the driver:
http://w1.894.telia.com/~u89404340/touchpad/index.html

I guess my personal suspicions that it was only locking while I was using
the touchpad could have had some merit. I am sorry I did not mention that
earlier. Is the synaptics driver to be included in XFree86 anytime soon
since it is required with 2.6 kernels on computers with synaptics
touchpads? You cannot use a regular ps2 mouse driver without lots of
contortions (ie kernel options).

It's GPL licensed unfortunately.  Only MIT licensed code is 
accepted into XFree86, so this driver will never be included.  
That means once kernel 2.6 is standard, the majority of laptop 
users with synaptics touchpads will have to rely on their OS 
distribution to provide the GPL driver, or will have to compile 
it themselves.

The only other option would be for someone to write a brand new 
driver for synaptics and license it as MIT, without looking at 
the GPL driver's source code.  It's possible to do a clean room 
implementation, but I'm not sure if anyone would really want to 
bother when there's a working driver already.


-- 
Mike A. Harris

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


Re: synaptics lockups (was Re: radeon lockups ...)

2003-09-02 Thread Daniel Stone
On Tue, Sep 02, 2003 at 02:04:00AM -0400, Mike A. Harris wrote:
 It's GPL licensed unfortunately.  Only MIT licensed code is 
 accepted into XFree86, so this driver will never be included.  
 That means once kernel 2.6 is standard, the majority of laptop 
 users with synaptics touchpads will have to rely on their OS 
 distribution to provide the GPL driver, or will have to compile 
 it themselves.
 
 The only other option would be for someone to write a brand new 
 driver for synaptics and license it as MIT, without looking at 
 the GPL driver's source code.  It's possible to do a clean room 
 implementation, but I'm not sure if anyone would really want to 
 bother when there's a working driver already.

Well, couldn't the upstream author just relicense it?

-- 
Daniel Stone  [EMAIL PROTECTED]
http://www.debian.org - http://www.kde.org - http://www.freedesktop.org
Configurability is always the best choice when it's pretty simple to implement
  -- Havoc Pennington, gnome-list


pgp0.pgp
Description: PGP signature


Re: synaptics lockups (was Re: radeon lockups ...)

2003-09-02 Thread Mike A. Harris
On Tue, 2 Sep 2003, Daniel Stone wrote:

Date: Tue, 2 Sep 2003 20:30:58 +1000
From: Daniel Stone [EMAIL PROTECTED]
To: Mike A. Harris [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Content-Type: multipart/signed; micalg=pgp-sha1;
   protocol=application/pgp-signature; boundary=qjNfmADvan18RZcF
Subject: Re: synaptics lockups (was Re: radeon lockups ...)

On Tue, Sep 02, 2003 at 02:04:00AM -0400, Mike A. Harris wrote:
 It's GPL licensed unfortunately.  Only MIT licensed code is 
 accepted into XFree86, so this driver will never be included.  
 That means once kernel 2.6 is standard, the majority of laptop 
 users with synaptics touchpads will have to rely on their OS 
 distribution to provide the GPL driver, or will have to compile 
 it themselves.
 
 The only other option would be for someone to write a brand new 
 driver for synaptics and license it as MIT, without looking at 
 the GPL driver's source code.  It's possible to do a clean room 
 implementation, but I'm not sure if anyone would really want to 
 bother when there's a working driver already.

Well, couldn't the upstream author just relicense it?

That depends on wether or not the code is original code, or if it 
is a derivative of any other GPL sources.  It's possible 
theoretically, but dependant on the history of the code, and also 
the author(s) wishes.


-- 
Mike A. Harris

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


Re: synaptics lockups (was Re: radeon lockups ...)

2003-09-02 Thread Mike A. Harris
On Tue, 2 Sep 2003, Daniel Stone wrote:

  The only other option would be for someone to write a brand new 
  driver for synaptics and license it as MIT, without looking at 
  the GPL driver's source code.  It's possible to do a clean room 
  implementation, but I'm not sure if anyone would really want to 
  bother when there's a working driver already.
 
 Well, couldn't the upstream author just relicense it?
 
 That depends on wether or not the code is original code, or if it 
 is a derivative of any other GPL sources.  It's possible 
 theoretically, but dependant on the history of the code, and also 
 the author(s) wishes.

That was kind of implicit.

To you perhaps, but not to everyone out there.  Many people think 
you can just relicense code on a whim if you're the author, 
regardless of wether your work contains GPL'd bits from other 
things or not.


-- 
Mike A. Harris

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


Re: synaptics lockups (was Re: radeon lockups ...)

2003-09-02 Thread Daniel Stone
On Tue, Sep 02, 2003 at 07:19:38AM -0400, Mike A. Harris wrote:
 On Tue, 2 Sep 2003, Daniel Stone wrote:
 On Tue, Sep 02, 2003 at 02:04:00AM -0400, Mike A. Harris wrote:
  It's GPL licensed unfortunately.  Only MIT licensed code is 
  accepted into XFree86, so this driver will never be included.  
  That means once kernel 2.6 is standard, the majority of laptop 
  users with synaptics touchpads will have to rely on their OS 
  distribution to provide the GPL driver, or will have to compile 
  it themselves.
  
  The only other option would be for someone to write a brand new 
  driver for synaptics and license it as MIT, without looking at 
  the GPL driver's source code.  It's possible to do a clean room 
  implementation, but I'm not sure if anyone would really want to 
  bother when there's a working driver already.
 
 Well, couldn't the upstream author just relicense it?
 
 That depends on wether or not the code is original code, or if it 
 is a derivative of any other GPL sources.  It's possible 
 theoretically, but dependant on the history of the code, and also 
 the author(s) wishes.

That was kind of implicit.

-- 
Daniel Stone  [EMAIL PROTECTED]
http://www.debian.org - http://www.kde.org - http://www.freedesktop.org
Configurability is always the best choice when it's pretty simple to implement
  -- Havoc Pennington, gnome-list


pgp0.pgp
Description: PGP signature


Re: XInput: The device type in XListInputDevices comes up again...

2003-09-02 Thread Bryan W. Headley
Egbert Eich wrote:

As you said a HID device is more or less unidirectional. Therefore
you won't be able to detect from the device interface that something
is wrong. The HID interface itself would have to provide QoS.
Anyway QoS would not be part of XI but would be implemented in the
HW messaging extension. 

Under Linux it is. Under BSD and Solaris (I think), you have read/write 
to USB devices.

But if you do a read() from the device and the syscall errors out, 
that's an issue the X Driver can report. If the X driver expects 
relative coordinates but for some reason is receiving absolute 
coordinates, that's reason to issue a report.

And yes, the kernel device driver can also issues quality of service 
reports. In the kernel's case, there's no-one that you can specifically 
send reports to. With my kernel device driver, I have a diagnostic 
file in the procfs that something could monitor for complaints...

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


Re: XInput: The device type in XListInputDevices comes up again...

2003-09-02 Thread Bryan W. Headley
Egbert Eich wrote:
Bryan W. Headley writes:
   
   Maybe not everything... Some things only make sense at server startup,
   but yes, I want to make things configurable on the fly - but using
   another extension, not XI.
   
  
  Correct. My outlook is a more generic client -- driver API (remember I 
  use the word client very loosely -- it could be the parse XF86Config 
  file, tell drivers to load into memory, and configure yourself to XXX 
  client. Because face it, what's unique about an input device that it 
  needs a special status-reporting, state-setting, loading/unloading self 
  to hotplug events API?

Well, maybe we should first define the word 'client' so we are sure
to talk about the same thing. When I say 'cleint' I mean X client
(ie. any application connecting to the server thru the protocol).
Your definition and mine are very similar. I would continue the 
definition to say that even intrinsic server functions, like loading a 
driver into memory, can be initiated by a client. Why? Because I would 
want to keep the actual server separate from these ancilliary functions.

Maybe I haven't understood what this is good for. Maybe it is just the
confusion of terms.
Darn! What I offered later in the mail thread you didn't see value in, 
either. I'll either have to send you to some white papers talking about 
other products doing QoS, or think of a better example for you...

That's a different client than what I'm calling a client. OK, I should
call my client an X-client. 
I don't think this needs to live in it's own thread. You have to
open a /dev/something and listen for messages, don't you? No reason
to have a separate thread there.
Don't forget, the same select() loop also receives X events and you 
don't want the server to appear sluggish while dealing with non-core 
events. So yeah, spawning a thread to deal with them is not a bad idea.

Right. That's what we need a registry for.
I think your registry would know how to identify hardware and determine 
the correct drivers to load.

But are you also suggesting that it knows how to ask the NVidia driver 
for its video resolution (e.g., it prefers a message in string format 
like, reso?, whereas the CT driver might use a different message?)

  Let's all get out the USB HID documentation and rip to pieces what's 
  wrong/vague/ill considered in their teminology, then we'll have the 
  beginnings of a wrong/vague etc., language for talking to drivers...

OK, you want to start with the HW interface.
Ah, no. HID tries to standardize hardware attributes for different 
devices into common terminology. Then they define standard messages for 
setting attributes and querying attributes from the hardware, given a 
standardized language. (Actually, enums) Their specs barely 
acknowledge that it's running on USB :-)

But it's the beginning of figuring out what attributes different types 
of hardware would have, and creating standardized terms for everything. 
(I believe) they made a few mistakes, but it's still something to learn 
from.

 The XI needs to be
entirely independent of this. It must abstract the entire HW if
and needs to be generic enough to permit different HW interfaces.
In prinicple both should be developed independently by different
groups. Otherwise the XI X-client interface will be implemented
too much along the OS specific HW interface.
Completely agree. The X-client interface should only be concerned with 
the message format.

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


Resume

2003-09-02 Thread Electrician
.


Resume from:Rich

 
 for   JoborServiceno job too small 




 E L E C T R I C I A N


  Tel. (408) 482-2102   [EMAIL PROTECTED]






WIRING  INSTALLATION

Hands on electrical installations perform fitting, mounting, laying cables 
on Commercial, Industrial, residential new  existing buildings.

Electrical Power Supply for Lights, Plugs, Receptacles, 
Panels,  Fuse boxes, 
Emergency Generators wiring and testing, Transformers, 
Power Lines  conduit layout, 
bending and mounting, parking lighting, lamps, switches, 
SOLAR PROJECTS, posts and underground installations. 

Shopping Centers; grocery stories, hardware stories, 
restaurants  residential - housing areas, computer 
business  fast food units 
installation  buildings; Solar Panels, Sun Tracking, 
Flywheel Storage  electric cars systems modify, 
Natural Energy in Remote areas install. 




LOW VOLTAGE forHOME  OFFICE



12 / 24 Volt audio  video equipment, 
Computer  data network wiring, 
data backup and UPS; Monitoring Video Control  backup tapes set 
up and mounting, electro-optical assemblies  subsystems. 
DC Power Supply, Switch  Motion sensors Alarm. 
Fire  safety systems install.


Fiber Optics systems, PLC setup, Master Control Center, 
cable modems  cable TV install. Network, UPS Battery 
Backup mounting and charging systems; Power supply testing, 
troubleshooting, and analyzing to a components level. 
Electric Vehicles Design, Assembly  Installations.

CC TV  Cameras, Security Systems  Sensors for Safety, 
Fire sprinklers and traffic Monitoring  Door Control. 
Telephones / Net move  install.



TECHNICIAN


Use lab  shop equipment, mechanical, 
electrical  electronic tools,
 measurement  testing equipment,  
video cameras  microscopes. 
Support scientists  electronic engineers. 
Mechanical  Electro-Mech. Design.


OFFICE, ELECTRICAL AND MECHANICAL PROJECTS


Electrical  Network Sketches, one line diagrams, 
and as is drawings update. 
Customizing Electronic and Electrical Components  Parts, 
Layouts electronic and electrical schematic, 
connectors and mechanical detailing. Quotes, 
supply, bids and job estimating. 


Customers contact, inspection, 

project mgmt  supervision of electricians  material handling; 

Use CAD, Windows and applications;




ELECTRICAL  MAINTENANCE SERVICE   Citizen; open for travel



Tel. (408) 482-2102   [EMAIL PROTECTED] 









.


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


Re: XDarwin build error

2003-09-02 Thread Torrey Lyons
 Matthieu Herrb [EMAIL PROTECTED] wrote:
 Hi,
 
 when building the latest XFree86 on Mac OS 10.2.4, I get link errors. A
 first one is easily fixed by the attached patch, but XDarwinApp also
 fails to link with the following error for which I can't find the
 missing code...

Yes, I have this issue fixed on my laptop. Unfortunately for the next week or so I 
can't commit the changes as I am away on vacation with only slow web mail access. 
Unfortunately this error crept shortly before I left.

Here's the backstory: XDarwin is going to support two rootless implementations using 
different API's. On Panther (and hopefully 10.2.x) XDarwin can use Apple's new Xplugin 
library which was developed specifically for it. Earlier versions will have to use the 
mixture of Cocoa and Carbon that we used in XFree86 4.3.0. The missing xp_* symbols 
that you see are from libXplugin.

Here's the way I have fixed this: applewm.c will be built into XDarwin as you did with 
your Imakefile patch. However, applewm.c is being improved to work with either the 
Xplugin or Cocoa implementations. The XDarwin build is also being modified so that it 
always builds both implementations (if possible) and dynamically loads the appropriate 
one in at runtime. This should make testing both implementations much easier. (This 
bug slipped through because I only tested it when building for Xplugin.)

In the short term you can do one of the following to fix the problem:

1. Build the Xplugin implementation. To do this download Apple's X11 public beta and 
install it. (Actually you only need to install libXplugin, which has its own installer 
buried in the X11 installer bundle.) Then add the following line to your host.def file:

#define XpLibDir /usr/lib

Rebuild and everything should build correctly. You will also find that GLX is now 
exactly as fast as Mac OS X's native OpenGL.

2. Comment out the AppleWMSendEvent() call in Xserver/hw/darwin/quartz/quartz.c. You 
should be able to rebuild without applewm.c.

--Torrey

 making all in programs/Xserver/miext/rootless...
 make[4]: Nothing to be done for `all'.
 /usr/bin/cc -o XDarwinApp -Os -Wall -Wpointer-arith -no-cpp-precomp 
 -L../../exports/lib dix/libdix.a os/libos.a ../../exports/lib/libXau.a 
 ../../exports/lib/libXdmcp.a  hw/darwin/libdarwin.a hw/darwin/quartz/libXQuartz.a 
 hw/darwin/quartz/cr/libcr.a miext/rootless/librootless.a 
 hw/darwin/quartz/aquaWindow.o   hw/darwin/quartz/aquaPicture.o
 miext/shadow/libshadow.a fb/libfb.a Xext/libext.a xkb/libxkb.a
 lbx/liblbx.a   ../../lib/lbxutil/liblbxutil.a dbe/libdbe.a 
 record/librecord.a  XTrap/libxtrap.a randr/librandr.a render/librender.a 
 dix/libxpstubs.a mi/libmi.a Xext/libext.a xkb/libxkb.a
 lbx/liblbx.a   ../../lib/lbxutil/liblbxutil.a dbe/libdbe.a 
 record/librecord.a  XTrap/libxtrap.a randr/librandr.a render/librender.a 
 -L/usr/X11R6/lib../../lib/font/libXfont.a -lfreetype dix/libxpstubs.a -lz
-framework IOKit -framework ApplicationServices -framework Cocoa !
 -framework CoreAudio -framework Carbon -ObjC  
 ld: Undefined symbols:
 _xp_configure_window
 _xp_disable_update
 _xp_frame_draw
 _xp_frame_get_rect
 _xp_frame_hit_test
 _xp_reenable_update
 make[3]: *** [XDarwinApp] Error 1
 
 Here's the patch to build applewm.o:
 
 Index: Imakefile
 ===
 RCS file: /cvs/xf86/xc/programs/Xserver/hw/darwin/quartz/Imakefile,v
 retrieving revision 1.9
 diff -u -r1.9 Imakefile
 --- Imakefile 12 Aug 2003 23:47:10 -  1.9
 +++ Imakefile 1 Sep 2003 21:15:30 -
 @@ -18,6 +18,7 @@
  quartzPasteboard.c \
  quartzStartup.c \
  pseudoramiX.c \
 + applewm.c \
  aquaPicture.c \
  aquaWindow.c \
  $(APPLEWMSRC)
 @@ -32,6 +33,7 @@
  quartzPasteboard.o \
  quartzStartup.o \
  pseudoramiX.o \
 + applewm.o \
  aquaPicture.o \
  aquaWindow.o \
  $(APPLEWMOBJ)
 
   Matthieu
 
 
___
Devel mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/devel


Re: XInput: The device type in XListInputDevices comes up again...

2003-09-02 Thread Egbert Eich
Bryan W. Headley writes:
  Egbert Eich wrote:
  
  Your definition and mine are very similar. I would continue the 
  definition to say that even intrinsic server functions, like loading a 
  driver into memory, can be initiated by a client. Why? Because I would 
  want to keep the actual server separate from these ancilliary functions.

This is not how an X client works. X abstracts all these details from
the client. The client should not have to deal with HW specific
details at all. Certain exceptions to this rule make sense, I agree,
but they must be considered carefully.

  
   Maybe I haven't understood what this is good for. Maybe it is just the
   confusion of terms.
  
  Darn! What I offered later in the mail thread you didn't see value in, 
  either. I'll either have to send you to some white papers talking about 
  other products doing QoS, or think of a better example for you...

I did see the examples later in the message.

So far X doesn't send QoS messages to the user.
Most of the time these things are expected to be handled by the
driver as good as it can. If it cannot handle them the condition
is usually fatal anyway. Such things get recorded in the log file
as this is something the 'administrator' will have to deal with.
When a read returns unexpectedly this usually doesn't point to
a problem the user can deal with. If somebody cuts the cable 
this would either result in a normal unplug event (in case of a USB
device) with the result that the client will receive the message
that the device has been unregistered or remain unnoticed altogether 
(serial device).
I do understand the 'the battery in the cordless mouse is getting low'
message. This would better live in the hardware messaging, ie. the
successor of todays xf86misc extension.

  
   That's a different client than what I'm calling a client. OK, I should
   call my client an X-client. 
   I don't think this needs to live in it's own thread. You have to
   open a /dev/something and listen for messages, don't you? No reason
   to have a separate thread there.
  
  Don't forget, the same select() loop also receives X events and you 
  don't want the server to appear sluggish while dealing with non-core 
  events. So yeah, spawning a thread to deal with them is not a bad idea.
  

How much traffic do you expect? 

   
   Right. That's what we need a registry for.
  
  I think your registry would know how to identify hardware and determine 
  the correct drivers to load.
  
  But are you also suggesting that it knows how to ask the NVidia driver 
  for its video resolution (e.g., it prefers a message in string format 
  like, reso?, whereas the CT driver might use a different message?)

That's why we need a registry. And I don't like string messages
either. This is the current ad hoc implementiaton. 

  
 Let's all get out the USB HID documentation and rip to pieces what's 
 wrong/vague/ill considered in their teminology, then we'll have the 
 beginnings of a wrong/vague etc., language for talking to drivers...
   
   OK, you want to start with the HW interface.
  
  Ah, no. HID tries to standardize hardware attributes for different 
  devices into common terminology. Then they define standard messages for 
  setting attributes and querying attributes from the hardware, given a 
  standardized language. (Actually, enums) Their specs barely 
  acknowledge that it's running on USB :-)

OK. 
  
  But it's the beginning of figuring out what attributes different types 
  of hardware would have, and creating standardized terms for everything. 
  (I believe) they made a few mistakes, but it's still something to learn 
  from.

OK.

  
The XI needs to be
   entirely independent of this. It must abstract the entire HW if
   and needs to be generic enough to permit different HW interfaces.
   In prinicple both should be developed independently by different
   groups. Otherwise the XI X-client interface will be implemented
   too much along the OS specific HW interface.
  
  Completely agree. The X-client interface should only be concerned with 
  the message format.
  

OK.

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


Re: XInput: The device type in XListInputDevices comes up again...

2003-09-02 Thread Egbert Eich
Bryan W. Headley writes:
  Egbert Eich wrote:
  
   
   As you said a HID device is more or less unidirectional. Therefore
   you won't be able to detect from the device interface that something
   is wrong. The HID interface itself would have to provide QoS.
   Anyway QoS would not be part of XI but would be implemented in the
   HW messaging extension. 
   
  
  Under Linux it is. Under BSD and Solaris (I think), you have read/write 
  to USB devices.
  
  But if you do a read() from the device and the syscall errors out, 
  that's an issue the X Driver can report. If the X driver expects 
  relative coordinates but for some reason is receiving absolute 
  coordinates, that's reason to issue a report.

Are you sure? 
We'd have to check why the read would error out. It would do so
if the device was closed because it was removed. That's a normal 
event when a device is hot pluggable. If XI supports removing of
devices it would just notify the XClient of the removal.
The coordinate issue is a device - driver compatibility problem.
Do we want to report this to the client, or is it sufficient to
tell the user about the problem in the log file.

  
  And yes, the kernel device driver can also issues quality of service 
  reports. In the kernel's case, there's no-one that you can specifically 
  send reports to. With my kernel device driver, I have a diagnostic 
  file in the procfs that something could monitor for complaints...
  

Do you have to obtain this information from a dedicated diagnostics
file, couldn't you read it from the general kernel log? I do
understand QoS notifications where one deals with frequently occuring
conditions that require rapid action - like battery low information,
but all cases of software of hardware failure are exceptional
incidences that would be sufficient to log.

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


Re: Help on creating a Window Manager

2003-09-02 Thread Mark Lehrer
On Tue, 2 Sep 2003 13:53:07 -0700
[EMAIL PROTECTED] (Heather Stern) wrote:

 Those would include aewm (which I think had the same intention - a
 pure ICCCM rendition), ratpoison (avoiding fat libraries and

I missed the original message so perhaps this was already mentioned, but
I tried one called wm2 which is almost the most primitive window
manager possible - you can resize  close windows and bring up a menu to
launch Xterm.  Changing anything requires hacking the source, there are no
configurable features.  You can apt-get it on Debian.

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


X for a cramped PC environment

2003-09-02 Thread Heather Stern
  Howdy folks.  I'm part of a development project which works on a 
  bootable business card (LNX-BBC, at www.lnx-bbc.org).  At present
  with some config work (and a scalpel during the install phase of
  or builds) we use a tinyX/Kdrive based framebuffer server, and a
  seriously trimmed down set of fonts.
(Specifically, we wanted modifiable as well as 
free-to-distribute, and needed to trim space a lot)

  We're moving our build system towards being a cross-compilation
  style build.  I say style because even though the build hosts
  are linux-i386, and the normal build of the disc is for linux-i386,
  making it treat the environment as if cross-compiled is resulting
  in far better self-consistency.  However, it's hell on anything that
  thinks it can spot being cross-compiled by deciding that some small
  sample binary doesn't work - because it would.

  Some of our dev team are also working on other platforms - not very
  far along yet - and those will *actually* be cross-compiled.

  I would expect that Kdrive should be especially amenable to this sort
  of teasing since it would normally be cross-compiled into say,
  handhelds.  But if I can get something which is nearly as tiny and
  still contains the TTF rendering ability while supporting a config
  file then we can treat mice much more kindly too.

  I realize it's a bit vague as yet, but I'm looking into the following
  experiments, so if anyone has already gone into these, feel free to
  point me into the applicable archive thread or chime in.  (And yes,
  I'm on the list; no need to cc me unless you're taking stuff private.)

  So I'm wondering if:
 1. anyone has been experimenting with X that's almost so tiny as
tinyX, and liked what they got?
 2. kdrive is an easier option instead of a patch kit in newer code
than 4.2.1?
 3. anyone else has tried this weird thought towards cross compile,
or if anyone with normal cross compile experience has a
pointer to avoidable gotchas.
 4. anyone knows a truetype/scalable cursor font?  (the plan is to
build an X server with *only* the TTF renderer, and tweak the 
limited number of X apps in our environment to use fonts we 
have present. For fixed there's a TTF 6x13 font that uses X's
glyphs and ought to do if scalable fonts do poorly there.)

  At present we seem to get a clean build but the install is funny, and
  that's not in the part where I'm trimming font files out.  A server
  imply oesn't end up in the final build tree.  

TIA everyone.

  . | .   Heather Stern  | [EMAIL PROTECTED]
---*--- Starshine Technical Services - * - [EMAIL PROTECTED]
  ' | `   Sysadmin Support and Training  |(800) 938-4078

The bugs you have to avoid are the ones that give the user not only
the inclination to get on a plane, but also the time.  -- Kay Bostic
___
Devel mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/devel


We can help

2003-09-02 Thread Reba Sterling
Introducing VP-RX Pills.
VP-RX will Expand, Lengthen and Enlarge your Penís 3+ Inches!
100% Satísfaction Guaranteed!

Visit our site: http://www.98207.biz/mka/m2c.php?man=st4vp

* Totally confidential, no one needs to know!
* No embarrassing doctor or pharmacy visits!
* We have sold over 1 million bottles!
* If you don't like our product don't keep it, 
  send it back for a 100% money back refund!









I want to be removed from future ads: http://www.98207.biz/bek/

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


[Fonts] URGENT RESPONSE NEEDED

2003-09-02 Thread KHIN MYINT LWIN
FROM:KHIN M. LWIN
E-MAIL:[EMAIL PROTECTED]
Dear Sir/Madam,

I apologize for the unexpected nature of this mail. I got your e-mail
address from the Thailand intercontinental peace group.

I am Khin Myint Lwin, 55, Chinese/Burmese, and the leader of the Myanmar
Kyone Yeom Group headquartered in Mong Yawn, Myanmar. We engage in Real
Estate, food processing and the transportation of Chinese, Thai and
Burmese migrant workers to destinations around the globe.

I am writing you from my Yangoon home where I await my appeal case
against a 37 years jail sentence I received for alleged human trafficking, illegal
sale of gold and running a prostitution ring. I am currently under house
arrest. My appeal hearing is set for December 2003.
These are all trumped-up charges. One of my boats carrying migrant
workers to Singapore last year was hit by waves and sank killing 87 passengers they 
suspected me of funding the Karen National Liberation Army (KNLA), a
rebel movement fighting for the rights of the Karen ethnic group in Myanmar.

The government has also seized most of my assets valued at nearly one
Billion dollars ($973,000,000.00) in Myanmar, Thailand and
China.

My wife and three daughters (8,12,14) are now staying with my mother
in-law in Mandalay. They now face a severe disruption in their livelihood and

the education of my daughters is in jeopardy. This feels me with so much
pain. My wife and daughters are my main concern right now.

I have a cash account deposit I made in the Netherlands, which the
Burmese government didn't know about. When I liquidated my flower and electronic
companies in the Netherlands in 2002, I deposited the proceeds of Eleven
million dollars ($11,000,000.00) in a securities firm in the Netherlands
while I was negotiating the take-over of a telecom company in Germany.

Right now, I need this money so I could get the best lawyer for my appeal
case coming up in December and most of all get my family out of Myanmar
to a safer country. They face constant harassment from government agents.

I need your assistance to get some of this money through to my wife and
daughters who are in Mandalay. Your responsibility will be to assume the
new ownership of the money. Transfer this money into your own account for
safety
first.

You will keep 20% for your efforts. You will then send my share in bits
as I family to leave Myanmar. I can also get the best lawyer and lobby power
and most possibly be free soonest.

ownership changed to yours. I can do this online and via email. Luckily, I
can monitor the status of my deposit via the Internet with my login info.

When all is done, the company will contact you about your new status. They
will tell you what to do. Most of their transactions can also be done
online. After that, you carry out the directives as explained above.

If you do this, I will be personally grateful to you in many ways. Not
only in the 20% of ($11M) reward you will get, but also when I am free, as I
know I will soon, I will show you what it means to do me a favor.

If you can't, or decide not to, I will understand. Thanks for your attention
anyhow.
Regards,

Khin Myint Lwin

  

[Fonts] Antigen encontro el gusano VIRUS= Sobig.F@m (Norman,CA(Vet))

2003-09-02 Thread ANTIGEN_FSC3
Title: Antigen encontro el gusano VIRUS= [EMAIL PROTECTED] (Norman,CA(Vet))





Antigen para Exchange encontró el archivo thank_you.pif infectado con el gusano VIRUS= [EMAIL PROTECTED] (Norman,CA(Vet)).
El archivo esta actualmente Purged. El mensaje, Re: Thank you!, fue
enviado por [EMAIL PROTECTED] y fue descubierto en IMC Queues\Inbound
localizado en fsc/FSC/FSC3.





[I18n] AltGr for ISO_Level3_Shift

2003-09-02 Thread David Holl
I'm having trouble using FOUR_LEVEL key groups  Here's an example xkb 
map to remap my space bar to produce the letters A, B, C, D:

partial default alphanumeric_keys
xkb_symbols basic {
key.type[Group1]=FOUR_LEVEL;
key SPCE { [ A, B, C, D ] };
key RALT { type[Group1]=TWO_LEVEL, [ ISO_Level3_Shift, Multi_key ] };
};

From my understanding, this map should function like this:
Space - A
Shift+Space   - B
AltGr+Space   - C
AltGr+Shift+Space - D

So I place the map in my X11/xkb/symbols/pc directory (with the rest of
the maps) and load it with:

setxkbmap -rules xfree86 -model pc104 -layout us,space \
-option  -option grp:ctrl_shift_toggle

But at a command line (xterm/tcsh), the A  B mappings work, but pressing
AltGr+Space or AltGr+Shift+Space does not produce C or D, respectively.

However, I tried xev (print contents of X events), and I can see the
A,B,C,D keysyms just fine (below).  Any idea what's wrong?  Could the
application still be trying to interpret the AltGr key or something?

I'm running XFree86 4.3.0.  (if that helps...)

KeyPress event, serial 26, synthetic NO, window 0x161,
root 0x48, subw 0x0, time 332437917, (85,65), root:(1422,86),
state 0x2000, keycode 65 (keysym 0x41, A), same_screen YES,
XLookupString gives 1 bytes:  A
...
KeyPress event, serial 26, synthetic NO, window 0x161,
root 0x48, subw 0x0, time 332438995, (85,65), root:(1422,86),
state 0x2001, keycode 65 (keysym 0x42, B), same_screen YES,
XLookupString gives 1 bytes:  B
...
KeyPress event, serial 26, synthetic NO, window 0x161,
root 0x48, subw 0x0, time 332440895, (85,65), root:(1422,86),
state 0x2008, keycode 65 (keysym 0x43, C), same_screen YES,
XLookupString gives 1 bytes:  C
...
KeyPress event, serial 26, synthetic NO, window 0x161,
root 0x48, subw 0x0, time 332442642, (85,65), root:(1422,86),
state 0x2009, keycode 65 (keysym 0x44, D), same_screen YES,
XLookupString gives 1 bytes:  D


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


Re: [XFree86] Xig-Sundry-Nonstandard

2003-09-02 Thread Eric Anholt
On Mon, 2003-09-01 at 06:08, Kyle wrote:
 When trying to play unreal tournament 2003 I recieve this error message:
 code
 Xlib:  extension XiG-SUNDRY-NONSTANDARD missing on display :0.0.
 OpenGL renderer relies on DXTC/S3TC support.

The lack of the XiG extension isn't the problem, it's the lack of the
S3TC support.  Update to a newer version of UT2k3 which doesn't require
it.

-- 
Eric Anholt[EMAIL PROTECTED]  
http://people.freebsd.org/~anholt/ [EMAIL PROTECTED]


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


Re: [XFree86] Sync-On-Green option

2003-09-02 Thread Mark Vojkovich
On Tue, 2 Sep 2003, Bonny wrote:

 In data Mon, 1 Sep 2003 12:15:06 -0700 (PDT)
 Mark Vojkovich [EMAIL PROTECTED] scriveva:
 
 While some video cards can produce composite syncs or
 sync-on-green,
  not all, perhaps even most, cannot.  There are, however, converters
  that go between the monitor and video card that can change VGA into
  sync-on-green or composite.  The schematics are simple.
 
 I have an NVidia Geforce2 MX card, how may I check whether or not it
 supports syncongreen?

  NVIDIA cards do not support sync on green or composite syncs.


Mark.

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


[XFree86] File was infected with a virus

2003-09-02 Thread KDDI-INFO
Note: JP stands for Japanese.
(B
(BALERT!!
(BThis e-mail contained one or more virus-infected files.
(B(JP:$B0J2<$N%a!<%k$K%3%s%T%e!<%?%&%#%k%9$rH/8+$7$^$7$?!#(J)
(B
(BSubject:  Re: Thank you!
(BMessage-ID:  [EMAIL PROTECTED]
(BDate: 2003/09/02
(BFrom: [EMAIL PROTECTED]
(BTo: [EMAIL PROTECTED]
(B
(BThe following attachments were infected and have been repaired or deleted:
(B(JP:[EMAIL PROTECTED]|$"$k$$$O:o=|$5$l$^$7$?!#(J)
(Bstatus = repaired :$B=$I|@.8y(J
(B deleted  :$B:o=|(J   
(Bfile=document_9446.pif,status=deleted,virus-id=36527,[EMAIL PROTECTED]
(B
(BThank you,
(B
(BKDDI Corporation [EMAIL PROTECTED]
(B___
(BXFree86 mailing list
(B[EMAIL PROTECTED]
(Bhttp://XFree86.Org/mailman/listinfo/xfree86

[XFree86] RedHat 9-video-X failure on Matrox-G450

2003-09-02 Thread Jim G.



After a "good" completion of the install, during the first boot 
attempt:

1) X is never able to start.
2) An endless loop error messages and attempted recoveries then 
follows.
3) No other modes or solutions are offered, system is useless.

Here (below) is the quoted error log file:
/var/log/XFree86.0.log

**( begin quoted file: 
/var/log/XFree86.0.log)**
XFree86 Version 4.3.0 (Red Hat Linux release: 4.3.0-2)Release Date: 
27 February 2003X Protocol Version 11, Revision 0, Release 6.6Build 
Operating System: Linux 2.4.20-3bigmem i686 [ELF] Build Date: 27 February 
2003Build Host: porky.devel.redhat.comBefore reporting 
problems, check http://www.XFree86.Org/to make sure 
that you have the latest version.Module Loader presentOS Kernel: Linux 
version 2.4.20-8 ([EMAIL PROTECTED]) 
(gcc version 3.2.2 20030222 (Red Hat Linux 3.2.2-5)) #1 Thu Mar 13 17:18:24 EST 
2003 Markers: (--) probed, (**) from config file, (==) default 
setting, (++) from command 
line, (!!) notice, (II) 
informational, (WW) warning, 
(EE) error, (NI) not implemented, (??) unknown.(==) Log file: 
"/var/log/XFree86.0.log", Time: Mon Sep 1 08:12:22 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 7

(II) Open APM successful(II) Module ABI versions:XFree86 ANSI 
C Emulation: 0.2XFree86 Video Driver: 0.6XFree86 XInput 
driver : 0.4XFree86 Server Extension : 0.2XFree86 Font 
Renderer : 0.4(II) Loader running on linux(II) LoadModule: 
"bitmap"(WW) Warning, couldn't open module bitmap(II) UnloadModule: 
"bitmap"(EE) Failed to load module "bitmap" (module does not exist, 
0)(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.0ABI class: 
XFree86 Video Driver, version 0.6

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

When reporting a problem related to a server crash, please sendthe 
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].

*(end quoted file: 
/var/log/XFree86.0.log)**

Thank You,
Jim
[EMAIL PROTECTED]


[XFree86] Report to Sender.

2003-09-02 Thread Gateway
Incident Information:-

Database:   d:/notes/data/mail.box
Originator: [EMAIL PROTECTED]
Recipients: [EMAIL PROTECTED], [EMAIL PROTECTED]
Subject:*** GMX Spamverdacht *** Re: Details
Date/Time:  02-09-2003 06:58:11

Message sent to [EMAIL PROTECTED] was quarantined because it
contained banned content.



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


[XFree86] Re: RedHat 9-video-X failure on Matrox-G450

2003-09-02 Thread Mike A. Harris
On Mon, 1 Sep 2003, Jim G. wrote:

Date: Mon, 1 Sep 2003 21:56:13 -0700
From: Jim G. [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Cc: Corn, Scott [EMAIL PROTECTED], me_jimdat [EMAIL PROTECTED]
Content-Type: multipart/alternative;
   boundary==_NextPart_000_001E_01C370D3.DC90E6C0
Subject: RedHat 9-video-X failure on Matrox-G450

After a good completion of the install, during the first boot attempt:

1)  X is never able to start.
2)  An endless loop error messages and attempted recoveries then follows.
3)  No other modes or solutions are offered, system is useless.

Here (below) is the quoted error log file:
/var/log/XFree86.0.log 
[SNIP]
(II) Loader running on linux
(II) LoadModule: bitmap
(WW) Warning, couldn't open module bitmap
(II) UnloadModule: bitmap
(EE) Failed to load module bitmap (module does not exist, 0)
(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

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

Your OS installation is corrupt most likely.  The modules are 
provided in the /usr/X11R6/lib/modules directory, and that is 
where the X server looks for them by default.  Your log file 
shows that that is where it is looking for them, and it isn't 
finding them.  So somehow your modules are either deleted, or 
corrupted.

You mention above that this is right after a fresh installation, 
which makes me wonder if your hard disk is damaged.  It's also 
possible that DMA on your disks are preventing the disks from 
working correctly.

You might want to try the Red Hat shrike-list mailing list 
instead, as this is more of a hardware problem, or problem 
requiring special handling of your system perhaps.

Hope this helps.

-- 
Mike A. Harris

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


[XFree86] I am prostitute... fphYH DOHND

2003-09-02 Thread roberto

Hello

I am prostitute from Ukraine

See my photo in attached file



I cost 100$ per hour

If you want fuck me contact this e-mail:
[EMAIL PROTECTED]

Thank you.


jCaoGTg






attachment: mypic.jpg

Re: [XFree86] I am prostitute... fphYH DOHND

2003-09-02 Thread J.L. Coenders
No Thank you ;)

*** REPLY SEPARATOR  ***

On 2-9-2003 at 2:06 PM [EMAIL PROTECTED] wrote:

Hello

I am prostitute from Ukraine

See my photo in attached file



I cost 100$ per hour

If you want fuck me contact this e-mail:
[EMAIL PROTECTED]

Thank you.


jCaoGTg







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




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


[XFree86] Re: How Energy Storage can help us ?

2003-09-02 Thread Flywheel
Nice Hello from Flywheel Storage 

 Sun Tracking 

Goodbay to Blackout forever 




[EMAIL PROTECTED]




Responding to your Questions;





We offer Safety Solution

Rolling Blackout will always happened, since the SYSTEM - 
is design to protect itself in dangerous 
Over-Current Situations.

Breakers basic duty is defense whole system, shut down, 
and isolate from Grid; 


Wave of over-current travel to next Sub-Station
and stimulate the same results on another, then another, 
then another. And a VOLTAGE is growing rapidly.

Growing Disconnection in Domino Effect; 
we did seen twice;


Accident ~ 30 years ago (baby boom) - for purpose recently.


To decrease all Over-Current situation

in POWER LINE or reduce to Zero 

ALL EXCESS ENERGY

USE

Energy Storage 25 - 1000 MWh 

and no Sub - Station will ever have any risk again.


Small units UPS   20 - 200 kWh protect Stories, 

mainframes, servers, computers and homes, 

hospitals, public  private places;

give back emergency energy for hours  days

and/or time for diesel/gas generator to work.

But with Solar Palette  Sun Tracking - you don't need anything else.

 Enjoy Safety  Energy Supply for generations to come;




Rest you can find on:

 

www.sun-tracking.com

www.flywheel-storage.com

 
 
[EMAIL PROTECTED]




Thanks,

 
 Have a nice Weekend !



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


[XFree86] New computer, same monitor, only 8-bit color?

2003-09-02 Thread Michael W. Lucas
Hi,

I have a new computer, but recycled my monitor.  The monitor (a Sampo
AlphaScan 711) could do 1024x768 in 24-bit color on the old computer.
On the new system, using the same monitor settings but a newer (and
better supported) video card, it suddenly can do only 8-bit color,
even with the same monitor settings.

I'm running:

XFree86 Version 4.3.0
Release Date: 27 February 2003
X Protocol Version 11, Revision 0, Release 6.6
Build Operating System: FreeBSD 5.1 i386 [ELF] 
Build Date: 27 August 2003

The new card is a Rage Mobility P/M AGP 2x, the old one is a Riva TNT2.

Rather than flood the list with huge attachments of log files and
configuration files, I've posted both the old and new ones on the Web.

New computer:
http://www.blackhelicopters.org/~mwlucas/XF86Config
http://www.blackhelicopters.org/~mwlucas/XFree86.0.log

Old computer:
http://www.blackhelicopters.org/~mwlucas/XF86Config-old
http://www.blackhelicopters.org/~mwlucas/XFree86.0.log-old

The obvious question, what is your monitor config in each?, is
answered they're basically identical, both taken from xf86cfg.

New monitor:
Section Monitor

#DisplaySize  320   240 # mm
Identifier   Monitor0
VendorName   STC
ModelName2c7
HorizSync31.5 - 31.5
HorizSync35.2 - 35.2
HorizSync35.5 - 35.5
VertRefresh  50.0 - 90.0
Option  DPMS
EndSection

Old monitor:
Section Monitor
Identifier   Monitor0
VendorName   Monitor Vendor
ModelNameMonitor Model
HorizSync31.5 - 31.5
HorizSync35.2 - 35.2
HorizSync35.5 - 35.5
VertRefresh  50.0 - 90.0
EndSection

Any thoughts, anyone?  Help?

==ml

-- 
Michael Lucas   [EMAIL PROTECTED], [EMAIL PROTECTED]
Today's chance of throwing it all away to start a goat farm: 41.8%
http://www.BlackHelicopters.org/~mwlucas/
   Absolute OpenBSD:   http://www.AbsoluteOpenBSD.com/
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] Test VGA interface

2003-09-02 Thread Chimou
On Mon, 2003-09-01 at 14:44, Kevin Brosius wrote:
 Chimou wrote:
  
  
  Hi,
  
  I would like to know if it is possible with standard xfree features
  to know if a display is connected to a particular VGA interface or
  if it is specific to the hardware/driver used.
  
  For information, I have a nvidia card and I use the binary driver
  from NVIDIA. The goal is to start a different layout in function of
  connected display.
  
  Thx for your help or your tips
 
 The XF86Config file allows you to specify BusID for each Device in the
 form:
 BusID0:14:0
 Each device could then be configured with it's own Screen section. 
 And then you just need to specify their layout with the ServerLayout
 section (if you are doing multi-head).  Most of what you need should be
 in 'man XF86Config' for the keywords.

I think you may have misundertand my question. I already have a working
configuration for both my xinerama and my mono monitor with two layout
(I attach my XF86Config with this email).

That what I would do it's to automatically detect if a monitor is
connected to my analog D-SUB VGA Connector of my laptop, and if yes,
start X with the layout support Xinerama, and if no, start X with
the simple layout with only one monitor.

So my question is : Does someone know a command or a package, within
X or indepently (specific or not to a particular card), to detect
which monitor is attached to a card ?

Thx in advance for your help.


-- 
Chimou [EMAIL PROTECTED]
###

Section Files

RgbPath/usr/X11R6/lib/X11/rgb
FontPath   /usr/X11R6/lib/X11/fonts/local/
FontPath   /usr/X11R6/lib/X11/fonts/misc/
FontPath   /usr/X11R6/lib/X11/fonts/75dpi/:unscaled
FontPath   /usr/X11R6/lib/X11/fonts/100dpi/:unscaled
FontPath   /usr/X11R6/lib/X11/fonts/Type1/
FontPath   /usr/X11R6/lib/X11/fonts/truetype/
FontPath   /usr/X11R6/lib/X11/fonts/TTF/
FontPath   /usr/X11R6/lib/X11/fonts/75dpi/
FontPath   /usr/X11R6/lib/X11/fonts/100dpi/

EndSection

###

Section Module

Loaddbe
Loadextmod
Loadtype1
Loadfreetype
Loadglx

EndSection

###

Section ServerFlags

#Option NoTrapSignals
#Option DontVTSwitch
#Option DontZap
#Option Dont Zoom
#Option DisableVidModeExtension
#Option AllowNonLocalXvidtune
#Option DisableModInDev
#Option AllowNonLocalModInDev

Option BlankTime 0
Option StandbyTime 5
Option SuspendTime 10
Option OffTime 15

EndSection

###

Section InputDevice

Identifier  clavier
Driver  Keyboard
Option AutoRepeat 500 30
Option XkbRules   xfree86
Option XkbModel   pc105
Option XkbLayout  fr

EndSection

Section InputDevice

Identifier  touchpad
Driver  mouse
Option ProtocolPS/2
Option Device  /dev/psaux
Option Emulate3Buttons

EndSection

Section InputDevice

Identifier  logitech usb
Driver  mouse
Option ProtocolimPS/2
Option Device  /dev/input/mice
Option Buttons 5
Option ZAxisMapping 4 5
Option SendCoreEvents true

EndSection

###

Section Monitor

Identifier  lcd
DisplaySize 335 210
HorizSync 30-82
VertRefresh 50-160
Modeline 1680x1050 135.36 1680 1712 2224 2256 1050 1072 1081 1103
Option DPMS

EndSection

Section Monitor

Identifier  lg775n
HorizSync 30-64
VertRefresh 50-100
Modeline 1680x1050 135.36 1680 1712 2224 2256 1050 1072 1081 1103
Option DPMS

EndSection

Section Monitor

Identifier  a901ht
Option DPMS

EndSection

Section Monitor

Identifier  tv
HorizSync   50-100
VertRefresh 30-100

EndSection

###

Section Device

Identifier  solo
Driver  nvidia
#Driver  nv
Option  NoLogo true 
Option  NvAGP 3
Option  FlatPanelProperties Scaling = aspect-scaled
Option  TwinView false

EndSection

Section Device

Identifier  boulot
Driver  nvidia
Option  NoLogo true 
Option  NvAGP 3
Option  FlatPanelProperties Scaling = aspect-scaled
Option  SecondMonitorHorizSync 30-82
Option  SecondMonitorVertRefresh 50-160
Option  TwinView true
Option  Metamodes 
1024x768,1680x1050;NULL,1280x1024;NULL,1024x768;NULL,800x600;NULL,640x480

EndSection

Section Device

Identifier  tv
Driver  nvidia
Option  NoLogo true 
Option  NvAGP 3
#Option  TVStandard PAL-N
Option  TwinView true
Option  TwinViewOrientation Clone
Option 

[XFree86] touch screen driver

2003-09-02 Thread cristian
Hi @ all. I have a problem with touch screen on an embedded device 
(linux on cirrus logic ep 7311 - arm).
I have compiled xfree as tiny X and this is my host.def file:
/*
* This configuration file contains additional configuration needed
* to cross compile X for the Compaq iPAQ handheld computer.
* To use this, add the following to host.def:
  #define KDriveXServer YES
  #define XiPAQH3000Server YES
*/
#define KDriveXServer   YES
#define TinyXServer YES
#define XfbdevServerYES
All work fine (Xfbdev, blackbox and some applications as xeyes, xcalc, 
xclock...)
but touch screen doesn't work.

Then, i added line
#define TouchScreen YES
but compilation crashed because file h3600_ts.h non exists in xc source 
tree.

How can I do?
What kind of specification you need for help me?
Thanks. Cristian C.


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


[XFree86] Keyboard configuration for Alt chars

2003-09-02 Thread Ph Legay
Hello,

I have installed the mandrake 9.1 on my Macintosh (Of course this
distribtion has a XFREE 4.3 environment).
But I have no # { [ | \ with my keyboard. In a tty console (CTL+ALT+F1),
I succeed to modify my keyboard configuration, But nothing with the X
Keyboard.
I try a lot of things (create my own rule, so no keyboard, CTL+ALT does
not work, ...), but it seems to difficult for me, without any tutorial.
I can access to the Xkeyboard protocol PDF file.
So today I have a keyboard, I can modify the mapping of the key 5 : ( +
5 to a + 5, but no braceleft char.
Questions
-
a) Is there a tutorial to understand the rule file ?
b) Is there a tutorial to build a keyboard mapping ?
c) In my symbol file, there is key = ( 5 braceleft braketleft. Why
can not obtain the braceleft char ? I kown (I see by typping) that the
first column is for normal char, the second column is for the shift
char. What for are the third and the fourth column ? In other word,
whare is the modifier order ?
When I solve my keyboard tty problem, I read a document that explain
each column. The keyboard mapping is an array the first char is for
normal char, the second for shift char, ... and if you want a char in
the last column, you can introduce voidsymbol for the useless column.
d) how to active the third and the fourth column for each char ?
e) Can I create new modifers ? (I try an xkbcomp does not like)
f) Is the order of modifiers fixed ?
g) My distribution has no xev ? Where can I found it ? (I want to check
if the modifiers are generated)
h) I read that there is some graphical interface for xmodmap ? Do you
know it ? Where can I find it ?
i) Is there a tutorial of xmodmap ?
j) Where are the x-doc.org files ? where is http://www.tsu.ru/~pascal/en/ ?
Notice :
Macintosh mouse is a single button, so F11 and F12 keys are used to
emulated a 3 button mouse. Perhaps this mechanism brakes the alt
modifier of my keyboard ? How can I chack this idea ?
Thanks
PHL.
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] I am prostitute... YNHFq FMhpv

2003-09-02 Thread mic

Hello

I am prostitute from Ukraine

See my photo in attached file



I cost 100$ per hour

If you want fuck me contact this e-mail:
[EMAIL PROTECTED]

Thank you.


ZdVncJG






attachment: mypic.jpg

Re: [XFree86] 9200 Radeon DVI...

2003-09-02 Thread Alex Deucher
Open a bug on xfree86 bugzilla ( http://bugs.xfree86.org/ ).  I've
heard of several people with radeon 9200s that couldn't get the DVI
port working.

Alex

--

Hi Alex,

On Thu, 2003-08-28 at 14:10, Alex Deucher wrote:
 Try xfree86 cvs.  some oems wire their dacs differently.  cvs has
code
 to deal with certain situations.

I tried CVS today - doesn't appear to have made a difference, I'm
afraid. I checked my XFree86.log to verify I was running the right code
;) 

Is there anything I can look for or send that might help figure out
what
special love this card needs to output DVI?

Many thanks,

Alex.

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


Re: [XFree86] Keyboard configuration for Alt chars

2003-09-02 Thread Frank Murphy
On Tuesday 02 September 2003 2:52, Ph Legay wrote:
 I have installed the mandrake 9.1 on my Macintosh (Of course this
 distribtion has a XFREE 4.3 environment).

 But I have no # { [ | \ with my keyboard. In a tty console (CTL+ALT+F1),
 I succeed to modify my keyboard configuration, But nothing with the X
 Keyboard.

The keyboard maps for the different consoles (ctrl+alt+F1, +F2, etc) are 
different from the keyboard maps for X. I don't know about Mandrake, but for 
Debian, the console keymaps are stored in /usr/share/keymaps and the 
configured keymap is stored in /etc/console/boottime.kmap.gz.

For X, there are two ways to configure keymaps, Xkb and the legacy core Xlib. 
XFree86 4.3 defaults to Xkb, so I'll assume that's what you are trying to 
configure.

The Xkb files are kept in either /etc/X11/xkb or /usr/X11R6/lib/X11/xkb.

However, xmodmap does things with a different syntax to Xkb.

 I try a lot of things (create my own rule, so no keyboard, CTL+ALT does
 not work, ...), but it seems to difficult for me, without any tutorial.
 I can access to the Xkeyboard protocol PDF file.

 So today I have a keyboard, I can modify the mapping of the key 5 : ( +
 5 to a + 5, but no braceleft char.

I assume by this that your keyboard has a key that is engraved with a '5', a 
'+', a '(', and a ':'  -- is this true? It seems from what you say below that 
the key has a '5', a '(', a '[', and a '{'.

 Questions
 -
 a) Is there a tutorial to understand the rule file ?

The best place to understand all the Xkb files is normally at 
www.charvolant.org/~doug/xkb/html/ but it seems to be down a lot recently.

 b) Is there a tutorial to build a keyboard mapping ?

No. Do you want to build an Xkb key symbol file, or an .Xmodmap file?

 c) In my symbol file, there is key = ( 5 braceleft braketleft. Why
 can not obtain the braceleft char ? I kown (I see by typping) that the
 first column is for normal char, the second column is for the shift
 char. What for are the third and the fourth column ? In other word,
 whare is the modifier order ?

What file do you see this line? For Xkb, I would expect to see:

key AE05 { [ 5, parenleft, braceleft, bracketleft ] };

In this case, '5' is a simple press, '(' is Shift+5,  '{' is 
ISO_Level3_Shift+5, and '[' is Shift+ISO_Level3_Shift+5.

However, in Xfree86 4.2 (and similar to xmodmap) the following happens:

key AE05 { [ 5, parenleft ], [ braceleft, bracketleft ] };

In this case, 5' is a simple press, '(' is Shift+5,  '{' is 
Mode_level+5, and '[' is Shift+Mode_level+5.

Confused? It's confusing. What has probably happened is that your AltGr key 
(which often gets the third char) is configured to Mode_shift, but XFree86 
4.3 expects ISO_Level3_Shift to be used.

 When I solve my keyboard tty problem, I read a document that explain
 each column. The keyboard mapping is an array the first char is for
 normal char, the second for shift char, ... and if you want a char in
 the last column, you can introduce voidsymbol for the useless column.

When it's back online, the above Xkb doc explains these.

 d) how to active the third and the fourth column for each char ?

See above explaination.

 e) Can I create new modifers ? (I try an xkbcomp does not like)

You can't invent a new Legays_special_modifier symbol. You can use the Super 
and Hyper symbols to do what you want.

 f) Is the order of modifiers fixed ?

Sometimes. In order to get the 3rd engraved symbol, yes, you can use only the 
proper one. Otherwise, I'm not sure I understand.

 g) My distribution has no xev ? Where can I found it ? (I want to check
 if the modifiers are generated)

I imagine mandrake has it in a package on the CD. Ask at one of the Mandrake 
forums.

 h) I read that there is some graphical interface for xmodmap ? Do you
 know it ? Where can I find it ?

What you're probably talking about is xkeycaps. You can get source here:
http://www.jwz.org/xkeycaps/

I'm sure Mandrake has a package.

 i) Is there a tutorial of xmodmap ?

Only `man xmodmap`.

 j) Where are the x-doc.org files ? where is http://www.tsu.ru/~pascal/en/ ?

I don't understand what you mean here.

 Notice :
 Macintosh mouse is a single button, so F11 and F12 keys are used to
 emulated a 3 button mouse. Perhaps this mechanism brakes the alt
 modifier of my keyboard ? How can I chack this idea ?

I really doubt that this is the problem, but I'm not sure how to check this 
idea.

Frank

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


Re: [XFree86] Backing Store Problem?

2003-09-02 Thread Ian Romanick
John Lee wrote:
I am running XFree86 (v4.2.0) with fvwm2.  If I turn backing store on in 
my X Server, I run into the issue where my window decorations and pop-up 
menus do not refresh properly.  I have to paint them (ie move my mouse 
over where the menu should be) in order for them to display.

If I turn backing store off, then the issue goes away and everything 
refreshes properly.  The problem is, I need backing store for the 
application I am running.

I tried switching to twm and the issue remains.  Any suggestions?
If you're using a Radeon based card, this has been fixed in 4.3.0, IIRC. 
 If it's not in the 4.3.0 release, it is certainly in CVS.

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


[XFree86] RE: Thank you!

2003-09-02 Thread support
To our Valued Customer,

Thank you for purchasing  supporting MSI product.

This E-mail is an automatic reply which is to notify you that you have
reached [EMAIL PROTECTED]

In order to give you an overall technical support, we have listed some
common problems and solutions for your reference. 
Please take time to read the useful FAQ which we have compiled from the
technical support e-mails we have received as link and see if it helps
the problem you are facing.
http://www.msi.com.tw/html/e_service/main.htm

We hope the directions below answer your question. If your problem still
cannot be solved after going through all the suggestions, then you can
reply this e-mail containing the automatic reply with your original
e-mail. We will get back to you as soon as possible. 

I. Read the Manual 
Most users have tendency not to read the manual under the presumption
that they already know what is written in there. However, we have seen
that there are percentage of technical support calls  e-mails as a
result of not reading the manual 

II. Keep your MSI CD drivers
MSI CD drivers provide easy driver installation via auto-run. Losing it
would require you to install driver manually
 
III. Contact your Reseller
Your reseller or the store/company that sold the motherboard or system
to you should know well what your system contains  have the necessary
resources to help you in your problem. Since they can see your system
clearly, it is easier for them to identify if your problem was caused of
wrong installation or wrong assembly or defective product, etc. It would
be advisable to contact your reseller for those having problems like
system cannot power on or need to send board for repair
NOTE: there is a tiny percentage that the board might be defective  by
contacting your reseller at an earlier time prevent your warranty being
voided. Some resellers provide certain period of time for
return/exchange, after that you have to either send the board to them
for repair or you are on your own. 
 
IV. Check our website
Some of the information you are looking for might be already posted in
our website
 
V. Search in MSI Forum
Your problem might have encountered by another user in the forum or you
might find answer in the Good Article forum with a lot of useful posts
written by moderators  power users. You can also post a message there
to get help
 
VI. Read the FAQ 
Attached Link is a list of useful FAQ which we have compiled from the
technical support e-mails we have received
http://download.msi.com.tw/support/dvr_exe/user.exe 


Best Regards,
MSI Technical Support
~~
Please include your original mails when replying!!
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] SYNC extension: missing length check in request handler

2003-09-02 Thread Ruben Nunez Francisco
VERSION:

4.3.0

REPORT:

ProcSyncSetCounterReq() handler lacks REQUEST_SIZE_MATCH() check.

(xc/programs/Xserver/Xext/sync.c)

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


Re: [XFree86] Test VGA interface

2003-09-02 Thread Mark Vojkovich
On Tue, 2 Sep 2003, Chimou wrote:

 On Mon, 2003-09-01 at 14:44, Kevin Brosius wrote:
  
  The XF86Config file allows you to specify BusID for each Device in the
  form:
  BusID0:14:0
  Each device could then be configured with it's own Screen section. 
  And then you just need to specify their layout with the ServerLayout
  section (if you are doing multi-head).  Most of what you need should be
  in 'man XF86Config' for the keywords.
 
 I think you may have misundertand my question. I already have a working
 configuration for both my xinerama and my mono monitor with two layout
 (I attach my XF86Config with this email).
 
 That what I would do it's to automatically detect if a monitor is
 connected to my analog D-SUB VGA Connector of my laptop, and if yes,
 start X with the layout support Xinerama, and if no, start X with
 the simple layout with only one monitor.
 
 So my question is : Does someone know a command or a package, within
 X or indepently (specific or not to a particular card), to detect
 which monitor is attached to a card ?
 
 Thx in advance for your help.


   There are EDID probing utilities out there, and I'm told that
there are Vesa standard ways to probe multiple heads on a single
device.  Whether those EDID probing utilities are up-to-date enough
to support the multihead Vesa stuff is another matter.  So basically,
it should be possible to do this in a device independent way, but
I don't know if there is any software that does that.


Mark.

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


[XFree86] Problem with my FreeBSD

2003-09-02 Thread Ricardo Javier Aranibar León


Hi,

I need your help, I bougth FreeBSD4.8 (Build Operating System: FreeBSD 4.8 i386 [ELF] ) from FreeBSD Mall, but I have problems I can't configure my xwindow I'm attachement the log file.
My video card is: Nvidia TNT2 64m
My monitor is: LG studioworks 500G 15''

Please help me I will Thankfull

Regards,
Ricardo
Consigue aquí las mejores y mas recientes ofertas de trabajo en América Latina y USA:  Haz clic aquí... XFree86 Version 4.3.0
Release Date: 27 February 2003
X Protocol Version 11, Revision 0, Release 6.6
Build Operating System: FreeBSD 4.8 i386 [ELF]
Build Date: 23 March 2003
	Before reporting problems, check http://www.XFree86.Org/
	to make sure that you have the latest version.
Module Loader present
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: /var/log/XFree86.0.log, Time: Mon Sep  1 04:35:37 2003
(==) Using config file: /usr/X11R6/etc/X11/XF86Config
(==) ServerLayout Simple Layout
(**) |--Screen Screen 1 (0)
(**) |   |--Monitor My Monitor
(**) |   |--Device My Video Card
(**) |--Input Device Mouse1
(**) |--Input Device Keyboard1
(**) Option AutoRepeat 500 30
(**) Option XkbRules xfree86
(**) XKB: rules: xfree86
(**) Option XkbModel microsoft
(**) XKB: model: microsoft
(**) Option XkbLayout us
(**) XKB: layout: us
(==) Keyboard: CustomKeycode disabled
(**) FontPath set to 
/usr/X11R6/lib/X11/fonts/local/,/usr/X11R6/lib/X11/fonts/misc/,/usr/X11R6/lib/X11/fonts/75dpi/:unscaled,/usr/X11R6/lib/X11/fonts/100dpi/:unscaled,/usr/X11R6/lib/X11/fonts/Speedo/,/usr/X11R6/lib/X11/fonts/Type1/,/usr/X11R6/lib/X11/fonts/75dpi/,/usr/X11R6/lib/X11/fonts/100dpi/
(**) RgbPath set to /usr/X11R6/lib/X11/rgb
(==) ModulePath set to /usr/X11R6/lib/modules
(--) Using syscons driver with X support (version 2.0)
(--) using VT number 9

(II) Module ABI versions:
	XFree86 ANSI C Emulation: 0.2
	XFree86 Video Driver: 0.6
	XFree86 XInput driver : 0.4
	XFree86 Server Extension : 0.2
	XFree86 Font Renderer : 0.4
(II) Loader running on freebsd
(II) LoadModule: bitmap
(II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.a
(II) Module bitmap: vendor=The XFree86 Project
	compiled for 4.3.0, module version = 1.0.0
	Module class: XFree86 Font Renderer
	ABI class: XFree86 Font Renderer, version 0.4
(II) Loading font Bitmap
(II) LoadModule: pcidata
(II) Loading /usr/X11R6/lib/modules/libpcidata.a
(II) Module pcidata: vendor=The XFree86 Project
	compiled for 4.3.0, module version = 1.0.0
	ABI class: XFree86 Video Driver, version 0.6
(II) PCI: Probing config type using method 1
(II) PCI: Config type is 1
(II) PCI: stages = 0x03, oldVal1 = 0x, mode1Res1 = 0x8000
(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 8086,1a30 card , rev 04 class 06,00,00 hdr 
00
(II) PCI: 00:01:0: chip 8086,1a31 card , rev 04 class 06,04,00 hdr 
01
(II) PCI: 00:1e:0: chip 8086,244e card , rev 05 class 06,04,00 hdr 
01
(II) PCI: 00:1f:0: chip 8086,2440 card , rev 05 class 06,01,00 hdr 
80
(II) PCI: 00:1f:1: chip 8086,244b card 8086,4856 rev 05 class 01,01,80 hdr 
00
(II) PCI: 00:1f:2: chip 8086,2442 card 8086,4856 rev 05 class 0c,03,00 hdr 
00
(II) PCI: 00:1f:3: chip 8086,2443 card 8086,4856 rev 05 class 0c,05,00 hdr 
00
(II) PCI: 00:1f:4: chip 8086,2444 card 8086,4856 rev 05 class 0c,03,00 hdr 
00
(II) PCI: 00:1f:5: chip 8086,2445 card 8086,4856 rev 05 class 04,01,00 hdr 
00
(II) PCI: 01:00:0: chip 10de,0110 card , rev b2 class 03,00,00 hdr 
00
(II) PCI: 02:0a:0: chip 10ec,8139 card 10ec,8139 rev 10 class 02,00,00 hdr 
00
(II) PCI: 02:0b:0: chip e159,0001 card 8086,0003 rev 00 class 07,80,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: 0x000a (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) 

Re: [XFree86] Problem with my FreeBSD

2003-09-02 Thread Mark Vojkovich
   You are using the wrong driver.  In your /usr/X11R6/etc/X11/XF86Config
replace Driver vga with Driver nv

MArk.

PS.  you don't have a TNT2, you have a GeForce2 MX

On Tue, 2 Sep 2003, [iso-8859-1] Ricardo Javier Aranibar León wrote:

 Hi,
  
 I need your help, I bougth FreeBSD4.8 (Build Operating System: FreeBSD
 4.8 i386 [ELF] ) from FreeBSD Mall, but I have problems I can't configure
 my xwindow I'm attachement the log file.
 My video card is: Nvidia TNT2 64m
 My monitor is: LG studioworks 500G 15''
  
 Please help me I will Thankfull
  
 Regards,
 Ricardo
  
 
 
 Consigue aquí las mejores y mas recientes ofertas de trabajo en América
 Latina y USA: Haz clic aquí...
 


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


Re: [XFree86] SYNC extension: missing length check in request handler

2003-09-02 Thread Marc Aurele La France
On Tue, 2 Sep 2003, Ruben Nunez Francisco wrote:

 VERSION:

 4.3.0

 REPORT:

 ProcSyncSetCounterReq() handler lacks REQUEST_SIZE_MATCH() check.

 (xc/programs/Xserver/Xext/sync.c)

True.  Thanks for the heads-up.

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.


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


[XFree86] xwd question

2003-09-02 Thread [EMAIL PROTECTED]
Hello,
I take a screenshot with xwd -root  bla.rgb
How can I convert this rgb file to a png, jpeg ...
Not using gimp but a cli tool ..
Regards Jonas
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] RE:Re: Re: My details - Executable Detected

2003-09-02 Thread ausmtp01-service
***This is an automatic email message - please do not reply to it***

Your email with subject of Re: Re: My details appears to contain an executable file 
type and has been quarantined automatically by the ABN AMRO mail system.

If your email was business related - please contact the intended recipient and have 
them liaise with ABN AMRO IT to have the email released.
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] dual heads/single card help please

2003-09-02 Thread Alex Deucher
The bug with the second head going into powersave mode was fixed just
after 4.3.0 was released.  I have a fixed binary for glibc 2.3 based
installs here (redhat 9, etc.) here:
http://www.botchco.com/alex/radeon/430bugfix/radeon_drv.o
Just copy the file into your existing installation.  make sure you back
up your existing radeon_dvr.o.
if you want to try mergedfb, I have glibc 2.3 based CVS binaries here:
http://www.botchco.com/alex/radeon/mergedfb/cvs/cvs-2003-7-31/final/
You can also get the latest patches here:
http://bugs.xfree86.org/show_bug.cgi?id=276
Mergedfb does not work that same as xinerama based dualhead from a
configuration perspective.  With mergedfb you only have a single device
section in your config file with some new special options. see my
sample config here:
http://www.botchco.com/alex/radeon/mergedfb/cvs/final/XF86Config

Alex

-

On Sun, 2003-08-31 at 21:05, William Gallafent wrote:
 This sounds like a bug which has been fixed in more recent versions
of XFree86
 (but which is not yet in an actual release).
 
 If you're happy with building and installing from source, try the
development
 snapshot at http://the.earth.li/XFree86/develsnaps/ (use a local
mirror). I
 have a feeling this will work for you. I'm using a dual-head Radeon
9000 with
 snapshot 4.3.99.10, which works well.
 
 Alternatively, I think that ready-built radeon drivers which you
could drop in
 on top of your 4.3.0 installation are available from some places on
the net
 (but I don't remember where, since I always just build from source,
to get
 mergedfb (which allows DRI to run on multi-head on Radeon. See:
 http://bugs.xfree86.org/show_bug.cgi?id=276 ...)).

Hey, thanks again for the pointers, two heads are better than one! 
I've
still got some font issues to hammer out but no big deal...

I do seem to be having trouble with DRI though, and what little info I
find about mergedfb for radeons is over my head, likely because it is
not officially released yet...  I'm not sure if that is something I
need
manually or what...

-
(WW) RADEON(0): Direct Rendering Disabled -- Dual-head configuration is
not working with D
RI at present.
Please use only one Device/Screen section in your XFConfig file.
-

Anyway, I've posted new logs and my config again.  I'm sure there are
probably some driver options or modules I am missing.

http://ericspeaks.com/xf86config-3.txt
http://ericspeaks.com/xfree86.0.log-3.txt
http://ericspeaks.com/glxinfo-3.txt

BTW, outside of the message in the logs, if I run glxgears, I get a
blank, black box on one monitor, and when dragged over to the other I
get the gears, but very very slow.

Thanks again!

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


[XFree86] Problem experiencing in Linux........

2003-09-02 Thread Syed Moiz Ali
I am using Linux OS and I am unable to run KDE in
graphical mode getting some sort of server crash
error.I am new to linux so its very frustating for me
to resolve this problem...

Please do something in this regard I will very
thankful to you.
Thanks 
Moiz.

LOG FILE :
XFree86 Version 4.2.0 (Red Hat Linux release: 4.2.0-8)
/ X Window System
(protocol Version 11, revision 0, vendor release 6600)
Release Date: 23 January 2002
If the server is older than 6-12 months, or if your
card is
newer than the above date, look for a newer version
before
reporting problems.  (See http://www.XFree86.Org/)
Build Operating System: Linux 2.4.17-0.13smp i686
[ELF] 
Build Host: daffy.perf.redhat.com
 
Module Loader present
Markers: (--) probed, (**) from config file, (==)
default setting,
 (++) from command line, (!!) notice, (II)
informational,
 (WW) warning, (EE) error, (NI) not
implemented, (??) unknown.
(==) Log file: /var/log/XFree86.0.log, Time: Sat Aug
31 18:09:46 2002
(==) Using config file: /etc/X11/XF86Config-4
(==) ServerLayout Layout 1
(**) |--Screen Screen0 (0)
(**) |   |--Monitor Monitor
(**) |   |--Device SiS 6326 PCI/AGP
(**) |--Input Device United States
(**) Option XkbKeymap xfree86(us_microsoft_intl)
(**) XKB: keymap: xfree86(us_microsoft_intl)
(overrides other XKB settings)
(==) Keyboard: CustomKeycode disabled
(**) |--Input Device Mouse Serial Padrão
(**) |--Input Device USB Mice
(**) FontPath set to unix/:-1
(**) RgbPath set to /usr/X11R6/lib/X11/rgb
(**) ModulePath set to /usr/X11R6/lib/modules
(**) Option AllowMouseOpenFail On
(--) using VT number 1

(WW) Open APM failed (/dev/apm_bios) (No such file or
directory)
(II) Module ABI versions:
XFree86 ANSI C Emulation: 0.1
XFree86 Video Driver: 0.5
XFree86 XInput driver : 0.3
XFree86 Server Extension : 0.1
XFree86 Font Renderer : 0.3
(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.2.0, module version = 1.0.0
Module class: XFree86 Font Renderer
ABI class: XFree86 Font Renderer, version 0.3
(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.2.0, module version = 0.1.0
ABI class: XFree86 Video Driver, version 0.5
(II) PCI: Probing config type using method 1
(II) PCI: Config type is 1
(II) PCI: stages = 0x03, oldVal1 = 0x,
mode1Res1 = 0x8000
(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 8086,2560 card 8086,2560 rev
01 class 06,00,00 hdr 00
(II) PCI: 00:02:0: chip 8086,2562 card 8086,4c59 rev
01 class 03,00,00 hdr 00
(II) PCI: 00:1d:0: chip 8086,24c2 card 8086,4c59 rev
01 class 0c,03,00 hdr 80
(II) PCI: 00:1d:1: chip 8086,24c4 card 8086,4c59 rev
01 class 0c,03,00 hdr 00
(II) PCI: 00:1d:2: chip 8086,24c7 card 8086,4c59 rev
01 class 0c,03,00 hdr 00
(II) PCI: 00:1d:7: chip 8086,24cd card 8086,4c59 rev
01 class 0c,03,20 hdr 00
(II) PCI: 00:1e:0: chip 8086,244e card , rev
81 class 06,04,00 hdr 01
(II) PCI: 00:1f:0: chip 8086,24c0 card , rev
01 class 06,01,00 hdr 80
(II) PCI: 00:1f:1: chip 8086,24cb card 8086,4c59 rev
01 class 01,01,8a hdr 00
(II) PCI: 00:1f:3: chip 8086,24c3 card 8086,4c59 rev
01 class 0c,05,00 hdr 00
(II) PCI: 00:1f:5: chip 8086,24c5 card 8086,0302 rev
01 class 04,01,00 hdr 00
(II) PCI: 01:00:0: chip 1057,5608 card 1057, rev
00 class 07,80,00 hdr 00
(II) PCI: End of PCI scan
(II) LoadModule: scanpci
(II) Loading /usr/X11R6/lib/modules/libscanpci.a
(II) Module scanpci: vendor=The XFree86 Project
compiled for 4.2.0, module version = 0.1.0
ABI class: XFree86 Video Driver, version 0.5
(II) UnloadModule: scanpci
(II) Unloading /usr/X11R6/lib/modules/libscanpci.a
(II) Host-to-PCI bridge:
(II) PCI-to-ISA bridge:
(II) PCI-to-PCI bridge:
(II) Bus 0: bridge is at (0:0:0), (-1,0,0), BCTRL:
0x08 (VGA_EN is set)
(II) Bus 0 I/O range:
[0] -1  0x - 0x (0x1) IX[B]
(II) Bus 0 non-prefetchable memory range:
[0] -1  0x - 0x (0x0) MX[B]
(II) Bus 0 prefetchable memory range:
[0] -1  0x - 0x (0x0) MX[B]
(II) Bus 1: bridge is at (0:30:0), (0,1,1), BCTRL:
0x02 (VGA_EN is cleared)
(II) Bus 1 I/O range:
[0] -1  0xd000 - 0xdfff (0x1000) IX[B]
(II) Bus 1 non-prefetchable memory range:
[0] -1  0xff80 - 0xff8f (0x10) MX[B]
(II) Bus 1 prefetchable memory range:
[0] -1  0xe6a0 - 0xe6af (0x10) MX[B]
(II) Bus -1: bridge is at (0:31:0), (0,-1,0), BCTRL:
0x08 (VGA_EN is set)
(II) Bus -1 I/O range:
(II) Bus -1 non-prefetchable memory range:
(II) Bus -1 prefetchable memory range:
(--) PCI:*(0:2:0) Intel unknown chipset (0x2562) rev
1, Mem @ 0xf000/27, 0xffa8/19
(II) Addressable bus resource ranges are
[0] -1  0x - 

Re: [XFree86] Problem experiencing in Linux........

2003-09-02 Thread [EMAIL PROTECTED]
What linux distro is this ?
Have you configured X by hand ? (editing /etc/X11/XF86Config with your 
editor)
If so try using the command xf86config it's a cli configuration tool.

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


[XFree86] Reloading direct rendering

2003-09-02 Thread Jonathan A. Zdziarski
I'm wondering if there is any way to reload (or at least re-evaluate)
direct rendering on-the-fly.  Here's my problem.  My laptop has 16MB
VRAM and I normally like to run at 1400x1050x24, which is about 1MB
short on memory to support DR.  I'd like to be able to use the vidtool
to drop down to 16-Bit color depth (which does support DR), but without
restarting X (for several reasons).

I don't have any 3D issues in Windows.  What I think Windows does (and
it would be great to see X or GLX or whatever piece is responsible for
it to do this) is determine at the time of window creation whetehr there
is enough VRAM to create it (whether it's full screen or windowed) with
DR support, and either comply or fail the mode.  Another step up from
this would be to have a 3DModes option in XF86Config and have XF
determine the best mode if I tried to get fullscreen DR.  What this
would allow me to do is run at 1400x1050x24, still run DR games in
smaller windows (even 1024x768), and instantly change the mode if I
needed to run beyond my card's capabilitiesafter all it doesn't
really need a buffer for the whole screen if you're only using half of
it, right?  What about using my system RAM to extend the VRAM?  Lots of
people always ask this, and system RAM is getting pretty fast these days
- chances are that extra MB may not even end up being used.

Anyhow, if anyone could help me with any pointers that would make my
life easier in switching between DR and Non-DR modes (or if there's any
way to creatively massage DRI into working with my resolution) I would
appreciate any useful information.

Jonathan



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


[XFree86] Out of Memory

2003-09-02 Thread Miles Roper
I'm curious how you got it to work too :o)

Yep, that's the Xfree memory problem, this has been mentioned before on
mailing list.  no idea why this occurs.  X is basically eating up all the
memory and then crashing when it runs out.  No known solution as yet, I've
posted to the X mailing list, no answer :o(  This one bug I would really
like to get sorted but don't have any solutions, I've spent several hours
searching on net and trolling through mailing lists, any help from anyone
would be much appreciated.

where you using ICA, rdesktop or something else when playing the movie?

I've attached the orginally email I got no reply to below...

Hi,

I'm having a really weird XFree86 problem.  I'm using XFree 4.3 and running
on it Citrix ICA Version 7.0

The ICA client connects to a windows Citrix server.

If I open up a document in word through the ICAClient with a bitmap picture
the memory requirements of XFree86 seem to increase dramatically, but the
wfica process stays the same.  If I close the file the memory returns to
normal.

ie before document:
 Memory
 1952 root   3612 S   XFree86 :1 -depth 16

after document:
  Memory
 1952 root   4836 S   XFree86 :1

if I open up 12 documents the machine runs out of memory and closes down the
X server.  However, if I re-establish the connection to the server, which
restores the 5 documents, I can open up another 5 before the client runs out
of memory again, and so on and so it.

It only seems to be with certain documents as others seem to open up fine,
the ones that seem effected are ones with a scanned in signature which I
suspect is a BMP image embedded in the document.

I've tried limiting the XFree86 server by using the following switches but
it doesn't make any difference:

XFree86 :1 -depth 16 -ld 4096 -ls 1024

The client is 4.3.0.1, kernel version 2.4.20, ICA Client Version 7.0
Server is Metraframe XP Version 1, Features release 3, Service Pack 3

Ok, I'm stumped any help would be great.

Cheers

Miles


TS 1.0 RC2
When I playing Movie online the TS shutdown  give the
message:
syslog.err klogd:Out of memory:killed process 678(3)

What's wrong with TS?

By the way,thanks Miles Roper.
The TS sound problem has benn fixed.

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


[XFree86] startx question

2003-09-02 Thread [EMAIL PROTECTED]
Hey,
I run fluxbox and window maker, I start them by adding fluxbox/wmaker to 
.xinitrc and then run startx.
Now I've started to write a small script called myX , you use it like 
this myX fluxbox and it will first write fluxbox to .xinitrc and then 
runs startx ..
Is there a way I can do this without my little script ? using the startx 
command ?

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


Re: [XFree86] Sync-On-Green option

2003-09-02 Thread Bonny
In data Mon, 1 Sep 2003 16:34:49 -0700 (PDT)
Mark Vojkovich [EMAIL PROTECTED] scriveva:

 NVIDIA cards do not support sync on green or composite syncs.

And what about ATI Radeon 7500? I got this one too!

-- 
Bonny - Registered Linux User #251752
   --- VB LUG Moderator ---
On the other hand... you have different fingers!


pgp0.pgp
Description: PGP signature


[XFree86] Re: Problem experiencing in Linux........

2003-09-02 Thread Mike A. Harris
On Tue, 2 Sep 2003, Syed Moiz Ali wrote:

Date: Tue, 2 Sep 2003 13:23:01 -0700 (PDT)
From: Syed Moiz Ali [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
Content-Type: text/plain; charset=us-ascii
Subject: Problem experiencing in Linux

I am using Linux OS and I am unable to run KDE in
graphical mode getting some sort of server crash
error.I am new to linux so its very frustating for me
to resolve this problem...

Your video hardware is not supported by that version of XFree86.


-- 
Mike A. Harris

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


Re: [XFree86] [PATCH] [BUG] [REREPORT] fontconfig.pc

2003-09-02 Thread David Dawes
On Mon, Sep 01, 2003 at 09:26:27PM +0200, Rene Rebe wrote:

as mentioned weeks ago, current XFree CVS does not install a
fontconfig.pc anymore (it did up to 4.3.99.6 or so when the fontconfig
merge happend).

This time a patch is attached (hereby relicensed to BSD, X11 whatever
you like - as usual).

In my personal project I would do it cleaner - but it is in the
XFree86-way like implemented in Xcursor and Xft.

Well, not quite -- there's no reason to duplicate files already in the
source tree as your patch does, or to hardcode values that are defined
elsewhere.  That's not usually the XFree86 way.

Anyway, I've committed a fix for this problem, based on what was in
XFree86 4.3 (rather than relicensing the GPL'd version you sent :-).

Just a suggestion regarding licensing of patches: The best way to avoid
all possible confusion is to make the licensing unambiguous.  I often
go straight to the patch attachments, and that only has a GPL on it.

Thanks for your report.

David
--
David Dawes X-Oz Technologies
www.XFree86.org/~dawes  www.x-oz.com
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] Out of Memory

2003-09-02 Thread Mark Vojkovich
  It really doesn't sound like this is a server problem, rather
the client is allocating BIG pixmaps or something like that.  You
can verify that by running restest:

http://www.xfree86.org/~mvojkovi/restest.c

 Be careful!  If you run that app you'll want to run it by redirecting
the output to a file restest  outfile because it grabs the server
and can introduce a deadlock if the terminal is printing the output
while restest is running.  Restest prints out the number of bytes
worth of pixmap memory held on behalf of each client.  Restest needs
XFree86 4.3 or newer to run.


Mark.


On Wed, 3 Sep 2003, Miles Roper wrote:

 I'm curious how you got it to work too :o)
 
 Yep, that's the Xfree memory problem, this has been mentioned before on
 mailing list.  no idea why this occurs.  X is basically eating up all the
 memory and then crashing when it runs out.  No known solution as yet, I've
 posted to the X mailing list, no answer :o(  This one bug I would really
 like to get sorted but don't have any solutions, I've spent several hours
 searching on net and trolling through mailing lists, any help from anyone
 would be much appreciated.
 
 where you using ICA, rdesktop or something else when playing the movie?
 
 I've attached the orginally email I got no reply to below...
 
 Hi,
 
 I'm having a really weird XFree86 problem.  I'm using XFree 4.3 and running
 on it Citrix ICA Version 7.0
 
 The ICA client connects to a windows Citrix server.
 
 If I open up a document in word through the ICAClient with a bitmap picture
 the memory requirements of XFree86 seem to increase dramatically, but the
 wfica process stays the same.  If I close the file the memory returns to
 normal.
 
 ie before document:
  Memory
  1952 root   3612 S   XFree86 :1 -depth 16
 
 after document:
   Memory
  1952 root   4836 S   XFree86 :1
 
 if I open up 12 documents the machine runs out of memory and closes down the
 X server.  However, if I re-establish the connection to the server, which
 restores the 5 documents, I can open up another 5 before the client runs out
 of memory again, and so on and so it.
 
 It only seems to be with certain documents as others seem to open up fine,
 the ones that seem effected are ones with a scanned in signature which I
 suspect is a BMP image embedded in the document.
 
 I've tried limiting the XFree86 server by using the following switches but
 it doesn't make any difference:
 
 XFree86 :1 -depth 16 -ld 4096 -ls 1024
 
 The client is 4.3.0.1, kernel version 2.4.20, ICA Client Version 7.0
 Server is Metraframe XP Version 1, Features release 3, Service Pack 3
 
 Ok, I'm stumped any help would be great.
 
 Cheers
 
 Miles
 
 
 TS 1.0 RC2
 When I playing Movie online the TS shutdown  give the
 message:
 syslog.err klogd:Out of memory:killed process 678(3)
 
 What's wrong with TS?
 
 By the way,thanks Miles Roper.
 The TS sound problem has benn fixed.
 
 thanks.
 ___
 XFree86 mailing list
 [EMAIL PROTECTED]
 http://XFree86.Org/mailman/listinfo/xfree86
 

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


[XFree86] Resume

2003-09-02 Thread Electrician
.


Resume from:Rich

 
 for   JoborServiceno job too small 




 E L E C T R I C I A N


  Tel. (408) 482-2102   [EMAIL PROTECTED]






WIRING  INSTALLATION

Hands on electrical installations perform fitting, mounting, laying cables 
on Commercial, Industrial, residential new  existing buildings.

Electrical Power Supply for Lights, Plugs, Receptacles, 
Panels,  Fuse boxes, 
Emergency Generators wiring and testing, Transformers, 
Power Lines  conduit layout, 
bending and mounting, parking lighting, lamps, switches, 
SOLAR PROJECTS, posts and underground installations. 

Shopping Centers; grocery stories, hardware stories, 
restaurants  residential - housing areas, computer 
business  fast food units 
installation  buildings; Solar Panels, Sun Tracking, 
Flywheel Storage  electric cars systems modify, 
Natural Energy in Remote areas install. 




LOW VOLTAGE forHOME  OFFICE



12 / 24 Volt audio  video equipment, 
Computer  data network wiring, 
data backup and UPS; Monitoring Video Control  backup tapes set 
up and mounting, electro-optical assemblies  subsystems. 
DC Power Supply, Switch  Motion sensors Alarm. 
Fire  safety systems install.


Fiber Optics systems, PLC setup, Master Control Center, 
cable modems  cable TV install. Network, UPS Battery 
Backup mounting and charging systems; Power supply testing, 
troubleshooting, and analyzing to a components level. 
Electric Vehicles Design, Assembly  Installations.

CC TV  Cameras, Security Systems  Sensors for Safety, 
Fire sprinklers and traffic Monitoring  Door Control. 
Telephones / Net move  install.



TECHNICIAN


Use lab  shop equipment, mechanical, 
electrical  electronic tools,
 measurement  testing equipment,  
video cameras  microscopes. 
Support scientists  electronic engineers. 
Mechanical  Electro-Mech. Design.


OFFICE, ELECTRICAL AND MECHANICAL PROJECTS


Electrical  Network Sketches, one line diagrams, 
and as is drawings update. 
Customizing Electronic and Electrical Components  Parts, 
Layouts electronic and electrical schematic, 
connectors and mechanical detailing. Quotes, 
supply, bids and job estimating. 


Customers contact, inspection, 

project mgmt  supervision of electricians  material handling; 

Use CAD, Windows and applications;




ELECTRICAL  MAINTENANCE SERVICE   Citizen; open for travel



Tel. (408) 482-2102   [EMAIL PROTECTED] 









.


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


[XFree86] Out of town

2003-09-02 Thread catch-all
As of Saturday morning at 7am (GMT), I am out of town until the 14th of June. Please 
be patient, I will try my best to reply the day I return.

If you are inquiring about paying me for an auction, all the instructions can be found 
in the payment instructions e-mail sent out to you shortly after the auction ended.

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


Re: [XFree86] dual heads/single card help please

2003-09-02 Thread Eric J Bowser
On Tue, 2003-09-02 at 15:53, Alex Deucher wrote:
 Mergedfb does not work that same as xinerama based dualhead from a
 configuration perspective.  With mergedfb you only have a single device
 section in your config file with some new special options. see my
 sample config here:
 http://www.botchco.com/alex/radeon/mergedfb/cvs/final/XF86Config
 
 Alex
 
 -

Is ther a complete option list for radeon  mergedfb available
anywhere?  There doesn't seem to be a man page...

From what I see in your config, it doesn't seem like mergedfb supports
different resolutions on each display.  I don't mind running the same
sync and depth, but I need different resolutions on each display.  Also,
is it possible to layout the monitors using absolute statements?
(instead of RightOf, LeftOf, etc.)

I'm sorry to be asking so many questions, but I don't understand the
source to read it, and documentation seems to be lacking at this point.

Thanks,
Eric

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


[XFree86] ATI 9000

2003-09-02 Thread João Mamede
well this is my prob.I have a asus L5C with a ati radeon 9000 M9.the problem 
is that when I start X using the driver radeon or driver ati option I 
just have a black screenm but if I connect a vga to the laptop there is image 
after I switch to vga(there is image in vga) and then again in the tft(image 
in both) and then olny in the TFT. Can you help me?this does not work with 
vesa.In attachemment I send two files from the Xfree log one with 
vesa(XFree86.0.log.vesa) and other with ati driver(Xfree86.0.log.ati). Please 
help me.
Nice work with XFree
João Mamede
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.22 i686 [ELF] 
Build Date: 01 September 2003
Before reporting problems, check http://www.XFree86.Org/
to make sure that you have the latest version.
Module Loader present
Markers: (--) probed, (**) from config file, (==) default setting,
 (++) from command line, (!!) notice, (II) informational,
 (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: /var/log/XFree86.0.log, Time: Wed Sep  3 04:08:00 2003
(==) Using config file: /etc/X11/XF86Config
(==) ServerLayout Simple Layout
(**) |--Screen Screen 1 (0)
(**) |   |--Monitor My Monitor
(**) |   |--Device RADEON 9000 M9
(**) |--Input Device Mouse1
(**) |--Input Device Keyboard1
(**) Option XkbLayout pt
(**) XKB: layout: pt
(==) Keyboard: CustomKeycode disabled
(**) FontPath set to 
/usr/X11R6/lib/X11/fonts/local/,/usr/X11R6/lib/X11/fonts/misc/,/usr/X11R6/lib/X11/fonts/75dpi/:unscaled,/usr/X11R6/lib/X11/fonts/100dpi/:unscaled,/usr/X11R6/lib/X11/fonts/Type1/,/usr/X11R6/lib/X11/fonts/CID/,/usr/X11R6/lib/X11/fonts/Speedo/,/usr/X11R6/lib/X11/fonts/75dpi/,/usr/X11R6/lib/X11/fonts/100dpi/,/usr/X11R6/lib/X11/fonts/cyrillic/
(**) RgbPath set to /usr/X11R6/lib/X11/rgb
(==) ModulePath set to /usr/X11R6/lib/modules
(--) using VT number 7

(WW) Open APM failed (/dev/apm_bios) (No such file or directory)
(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 = 0x800050ac, mode1Res1 = 0x8000
(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 1039,0648 card 1043,1738 rev 03 class 06,00,00 hdr 80
(II) PCI: 00:01:0: chip 1039,0001 card , rev 00 class 06,04,00 hdr 01
(II) PCI: 00:02:0: chip 1039,0008 card , rev 14 class 06,01,00 hdr 80
(II) PCI: 00:02:3: chip 1039,7007 card 1043,1737 rev 00 class 0c,00,10 hdr 00
(II) PCI: 00:02:5: chip 1039,5513 card 1043,1738 rev 00 class 01,01,80 hdr 00
(II) PCI: 00:02:6: chip 1039,7013 card 1043,1736 rev a0 class 07,03,00 hdr 00
(II) PCI: 00:02:7: chip 1039,7012 card 1043,1733 rev a0 class 04,01,00 hdr 00
(II) PCI: 00:03:0: chip 1039,7001 card 1043,1739 rev 0f class 0c,03,10 hdr 80
(II) PCI: 00:03:1: chip 1039,7001 card 1043,1739 rev 0f class 0c,03,10 hdr 00
(II) PCI: 00:03:2: chip 1039,7001 card 1043,1739 rev 0f class 0c,03,10 hdr 00
(II) PCI: 00:03:3: chip 1039,7002 card 1043,173a rev 00 class 0c,03,20 hdr 00
(II) PCI: 00:0a:0: chip 1524,1421 card 4000, rev 01 class 06,07,00 hdr 82
(II) PCI: 00:0a:1: chip 1524,1421 card 4800, rev 01 class 06,07,00 hdr 82
(II) PCI: 00:0a:2: chip 1524,0510 card 1043,173b rev 00 class 05,01,00 hdr 00
(II) PCI: 00:0c:0: chip 14e4,4301 card 1043,0120 rev 02 class 02,80,00 hdr 00
(II) PCI: 00:0d:0: chip 10b7,1700 card 1043,173c rev 12 class 02,00,00 hdr 00
(II) PCI: 01:00:0: chip 1002,4c66 card 1043,1732 rev 01 class 03,00,00 hdr 00
(II) PCI: End of PCI scan
(II) Host-to-PCI bridge:
(II) Bus 0: bridge is at (0:0:0), (0,0,6), 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 I/O range:
[0] -1  0   0xd000 - 0xdfff (0x1000) IX[B]
(II) Bus 1 non-prefetchable memory range:
[0] -1  0   0xe780 - 0xe7ff (0x80) MX[B]
(II) 

Re: [XFree86] Old-style font rendering

2003-09-02 Thread Ross Vandegrift
On Sat, Aug 30, 2003 at 11:35:50PM +0200, M?ns Rullg?rd wrote:
  Got fontconfig 2.2.0 and freetype 2.1.4, but mozilla is still obviously
  using Xft and TrueType fonts.  I guess I probably need a mozilla built
  with --disable-xft?
 
 Run fc-cache -vf.  What does it say?  You'll also need to configure
 mozilla to use the old fonts.

Assuming I'm supposed to run this as root:

[EMAIL PROTECTED]:~$ sudo fc-cache -vf
fc-cache: /usr/share/fonts: caching, 0 fonts, 0 dirs
fc-cache: /usr/X11R6/lib/X11/fonts/100dpi: caching, 358 fonts, 0 dirs
fc-cache: /usr/X11R6/lib/X11/fonts: caching, 0 fonts, 11 dirs
fc-cache: /usr/X11R6/lib/X11/fonts/CID: caching, 0 fonts, 0 dirs
fc-cache: /usr/X11R6/lib/X11/fonts/TTF: caching, 12 fonts, 0 dirs
fc-cache: /usr/X11R6/lib/X11/fonts/misc: caching, 51 fonts, 0 dirs
fc-cache: /usr/X11R6/lib/X11/fonts/util: caching, 0 fonts, 0 dirs
fc-cache: /usr/X11R6/lib/X11/fonts/75dpi: caching, 348 fonts, 0 dirs
fc-cache: /usr/X11R6/lib/X11/fonts/Type1: caching, 29 fonts, 0 dirs
fc-cache: /usr/X11R6/lib/X11/fonts/local: caching, 0 fonts, 0 dirs
fc-cache: /usr/X11R6/lib/X11/fonts/Speedo: caching, 0 fonts, 0 dirs
fc-cache: /usr/X11R6/lib/X11/fonts/encodings: caching, 0 fonts, 1 dirs
fc-cache: /usr/X11R6/lib/X11/fonts/encodings/large: caching, 0 fonts, 0 dirs
fc-cache: /usr/X11R6/lib/X11/fonts/100dpi: caching, 358 fonts, 0 dirs
fc-cache: /usr/X11R6/lib/X11/fonts/cyrillic: caching, 0 fonts, 0 dirs
fc-cache: /home/ross/.fonts: skipping, no such directory
fc-cache: succeeded

It looks like fontconfig 2.2.0 and changing the font path order actually
did the trick for most apps - mozilla seems to be particularly
insistent, and I'll have to track down how to change that.

(I also do have a build with --disable-xft --disable-freetype and it
works as well)


-- 
Ross Vandegrift
[EMAIL PROTECTED]

A Pope has a Water Cannon.   It is a Water Cannon.
He fires Holy-Water from it.It is a Holy-Water Cannon.
He Blesses it. It is a Holy Holy-Water Cannon.
He Blesses the Hell out of it.  It is a Wholly Holy Holy-Water Cannon.
He has it pierced.It is a Holey Wholly Holy Holy-Water Cannon.
He makes it official.   It is a Canon Holey Wholly Holy Holy-Water Cannon.
Batman and Robin arrive.   He shoots them.
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] Multi-Head FreeBSD

2003-09-02 Thread Ted Wisniewski
Can anyone recommend a multihead video card (with as many as 4 heads)
that can be used on FreeBSD 4.8 or 5.1?


Thanks in advance..

Ted

-- 
|   Ted Wisniewski   E-Mail:  [EMAIL PROTECTED]|
|   Manager, Systems Group   WEB: http://oz.plymouth.edu/~ted/ |
|   Information Technology Services|
|   Plymouth State College   Phone:   (603) 535-2661   |
|   Plymouth NH, 03264   Fax: (603) 535-2263   |
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] RE: Sell cookware, kitchenware, knife scissor, garden tools etc atlowest price.

2003-09-02 Thread dgjgo
RE: Sell cookware, kitchenware, knife  scissor, garden tools etc at lowest price.
Since established in 1993, Our company are specializing in manufacturing the products 
as cookware, kitchenware, knife  scissor, garden tools etc.
We can now supply products details followings;
 1): Cutlery
2):Bar utensil:
3): Non stick cookware
4): Coffee cup, Double wall cup 
 All of our products are based on the lower price.
please contact us for detailed information.
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] Serious deal - Make $500,000 in 6 months otnwo

2003-09-02 Thread Thomas Wilson
Hello!


You certaintly have seen this message before and ignored it. I know I did -
many times. However, please take a few moments to go through this letter.
I was amazed when the profit potential of this opportunity finally sunk
in...

With easy-to-use e-mail tools and approved e-mail, success in this market
is now fast, easy and well within the capabilities of ordinary people who
know little about internet marketing. And the profit potential is truly
staggering. Make 2003 your best year ever!

I'll make you a promise. GO THROUGH THIS E-MAIL TO THE END - Follow what it
says to the letter - and you will not worry whether a RECESSION is coming
or
not, who is President, or whether you keep your current job or not.
Yes, I know what you are thinking. I never responded to one of these before
either. One day though, something just said: You throw away $25.00 going
out for McDonald's and a movie with your partner. What the heck.
Believe me, no matter where you believe those feelings come from, I thank
every day that I had them.

I cannot imagine where I would be or what I would be doing had I not. Read
on. It's true. Every word of it. It is legal. I checked. Simply because you
are buying and selling something of value.

AS YOU CAN SEE ON NATIONAL TV:

Making over half a million dollars every 4 to 5 months from your home.

THANKS TO THE COMPUTER AGE AND THE INTERNET.
===
BE AN INTERNET MILLIONAIRE LIKE OTHERS WITHIN A YEAR...

Before you say Bull, please look at the following. This is the letter you
have been hearing about on the news lately. Due to the popularity of this
letter on the internet, a national weekly news program recently devoted an
entire show to the study of this program described below, to see if it
really can make people rich. The show also tried to figure out whether or
not the program was legal.

Their findings proved once and for all that there are absolutely NO laws
prohibiting the participation in the program and if people can 'follow the
simple instructions' they are bound to build a fortune with JUST $25.

DUE TO THE RECENT INCREASE OF POPULARITY  RESPECT THIS PROGRAM HAS
ATTAINED, IT IS CURRENTLY WORKING BETTER THAN EVER.

This is what one had to say: I thank the person that sent me this
profitable opportunity. I was approached many times before but each time I
passed on it. I am so glad I finally joined just to see what one could
expect in return for the minimal effort and investment required.
To my astonishment, I received a total $610,470.00 in 21 weeks, with cash
still coming in.

Pam Hedland, Fort Lee, New Jersey.
==
Another said: This program has been around for a long time but I never
believed in it. But one day when I received this again in the mail I
decided
to gamble my $25 on it. I followed the simple instructions and walaa .
3
weeks later the bucks started to come in. First month I JUST made $240.00
but the next 2 months after that I made a total of $290,000.00. So far, in
the past 8 months by re-entering the program, I have made over $710,000.00
and I am playing it again. The key to success in this program is to follow
the simple steps and NOT change anything.

More testimonnials later but first,

CUT/PASTE/SAVE THIS NOW FOR YOUR FUTURE REFERENCE
*

If you would like to make at least $500,000 every 4 to 5 months easily and
comfortably, please go through the following...THEN READ IT AGAIN and
AGAIN...

*

FOLLOW THE SIMPLE INSTRUCTIONS BELOW AND YOU WILL BE CLOSER THAN EVER TO
REALIZING YOUR INDEPENDANCE DREAMS.

INSTRUCTIONS:

= Order all 5 documents shown on the list below =

For each document, send a $5 bill wrapped in 2 sheets of paper, MAKE SURE
NO ONE CAN SEE THERE'S A $5 BILL IN THE ENVELOPE, SEND THE NAME  NUMBER
of the document YOU ARE ORDERING and YOUR E-MAIL ADDRESS to the person
whose name appears ON THAT LIST next to the document.
MAKE SURE YOUR RETURN ADDRESS IS ON YOUR ENVELOPE TOP LEFT CORNER in case
of any mail problems.

=== WHEN YOU PLACE YOUR ORDER, MAKE SURE ===
===  YOU ORDER EACH OF THE 5 DOCUMENTS.  ===

You will need all 5 documents so that you can save them on your computer
and resell them. YOUR TOTAL SPENDINGS $5 X 5 = $25.00.

Within a few days you will receive, via e-mail, each of the 5 documents
from these 5 different individuals. Save them on your computer so they will
be accessible for you to send to the 1,000's of people who will order them
from you. Also make a floppy of these documents (and this letter)and keep
it
on your desk in case something happens to your computer.

IMPORTANT - DO NOT alter the names of the people who are listed next to
each document, or their sequence on the list, in any way other than what is
instructed below in steps 1 through 6 or you will lose out on the majority
of your profits. Once you understand the 

RE: [Thinstation-developer] Re: [XFree86] Out of Memory

2003-09-02 Thread Miles Roper
Hi Mark,

Tried running this and I get the below

restest  log
sh: Syntax error bad fd number

restest  log
cating the log file XResQueryExtension failed

restest
XResQueryExtension failed

have compiled and included the libXRes.so.1.0 in lib on the machine I'm
running it on, its linked to libXRes.so.1 and libXRes.so

I haven't replaced XFree86 with the new one I compiled including the #define
SharedLibXRes   YES, I just copied the library into lib

have built x with

#define BuildDocs NO
#define BuildDebug NO

#define CcCmd gcc -B/mnt/hdc/thinstation_src/glibc-2.1.3/lib
-Wl,-rpath-link,/mnt/hdc/thinstation_src/glibc-2.1.3/lib -Os -mcpu=i586
-march=i386

#define DefaultGcc2i386Opt  -Os -fno-strength-reduce

#define HasPam  YES

#define TouchScreen NO

#define XVirtualFramebufferServer   NO
#define XprtServer NO

#define BuildFonts  NO

#define HasCookieMaker NO

#define HasGlide2 NO
#define HasGlide3 NO
#define HasMMXSupport NO
#define Has3DNowSupport NO

#define JoystickSupport NO

#define SharedLibXRes   YES

-Original Message-
From: Mark Vojkovich [mailto:[EMAIL PROTECTED]
Sent: Wednesday, 3 September 2003 12:48 p.m.
To: '[EMAIL PROTECTED]'
Cc: bingjie bingjie; [EMAIL PROTECTED];
Thinstation-Developer (E-mail); 'Mike Eriksen'
Subject: [Thinstation-developer] Re: [XFree86] Out of Memory



  It really doesn't sound like this is a server problem, rather
the client is allocating BIG pixmaps or something like that.  You
can verify that by running restest:

http://www.xfree86.org/~mvojkovi/restest.c

 Be careful!  If you run that app you'll want to run it by redirecting
the output to a file restest  outfile because it grabs the server
and can introduce a deadlock if the terminal is printing the output
while restest is running.  Restest prints out the number of bytes
worth of pixmap memory held on behalf of each client.  Restest needs
XFree86 4.3 or newer to run.


Mark.


On Wed, 3 Sep 2003, Miles Roper wrote:

 I'm curious how you got it to work too :o)
 
 Yep, that's the Xfree memory problem, this has been mentioned before on
 mailing list.  no idea why this occurs.  X is basically eating up all the
 memory and then crashing when it runs out.  No known solution as yet, I've
 posted to the X mailing list, no answer :o(  This one bug I would really
 like to get sorted but don't have any solutions, I've spent several hours
 searching on net and trolling through mailing lists, any help from anyone
 would be much appreciated.
 
 where you using ICA, rdesktop or something else when playing the movie?
 
 I've attached the orginally email I got no reply to below...
 
 Hi,
 
 I'm having a really weird XFree86 problem.  I'm using XFree 4.3 and
running
 on it Citrix ICA Version 7.0
 
 The ICA client connects to a windows Citrix server.
 
 If I open up a document in word through the ICAClient with a bitmap
picture
 the memory requirements of XFree86 seem to increase dramatically, but the
 wfica process stays the same.  If I close the file the memory returns to
 normal.
 
 ie before document:
  Memory
  1952 root   3612 S   XFree86 :1 -depth 16
 
 after document:
   Memory
  1952 root   4836 S   XFree86 :1
 
 if I open up 12 documents the machine runs out of memory and closes down
the
 X server.  However, if I re-establish the connection to the server, which
 restores the 5 documents, I can open up another 5 before the client runs
out
 of memory again, and so on and so it.
 
 It only seems to be with certain documents as others seem to open up fine,
 the ones that seem effected are ones with a scanned in signature which I
 suspect is a BMP image embedded in the document.
 
 I've tried limiting the XFree86 server by using the following switches but
 it doesn't make any difference:
 
 XFree86 :1 -depth 16 -ld 4096 -ls 1024
 
 The client is 4.3.0.1, kernel version 2.4.20, ICA Client Version 7.0
 Server is Metraframe XP Version 1, Features release 3, Service Pack 3
 
 Ok, I'm stumped any help would be great.
 
 Cheers
 
 Miles
 
 
 TS 1.0 RC2
 When I playing Movie online the TS shutdown  give the
 message:
 syslog.err klogd:Out of memory:killed process 678(3)
 
 What's wrong with TS?
 
 By the way,thanks Miles Roper.
 The TS sound problem has benn fixed.
 
 thanks.
 ___
 XFree86 mailing list
 [EMAIL PROTECTED]
 http://XFree86.Org/mailman/listinfo/xfree86
 



---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
___
Thinstation-developer mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/thinstation-developer
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] Problem with my FreeBSD

2003-09-02 Thread [EMAIL PROTECTED]
Do you have a subsection display ?

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


Re: [XFree86] startx question

2003-09-02 Thread Gerald S. Stoller
From: [EMAIL PROTECTED] [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: [XFree86] startx question
Date: Tue, 02 Sep 2003 21:51:09 +
Hey,
I run fluxbox and window maker, I start them by adding fluxbox/wmaker to 
.xinitrc and then run startx.
Now I've started to write a small script called myX , you use it like this 
myX fluxbox and it will first write fluxbox to .xinitrc and then runs 
startx ..
Is there a way I can do this without my little script ? using the startx 
command ?
   It seems you've already done this (if I understand you correctly).
Write fluxbox to .xinitrc  (after saving the original  .xinitrc  somewhere,
just for safety) and then run  startx .
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86
_
MSN 8: Get 6 months for $9.95/month. http://join.msn.com/?page=dept/dialup
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86