CVS Update: xc (branch: trunk)

2004-04-20 Thread Marc Aurele La France
CVSROOT:/home/x-cvs
Module name:xc
Changes by: [EMAIL PROTECTED]   04/04/20 13:31:58

Log message:
  Fix ident lines

Modified files:
  xc/extras/Mesa/src/mesa/drivers/dri/sis/:
sis_tris.c sis_tritmp.h 
  
  Revision  ChangesPath
  1.2   +1 -1  xc/extras/Mesa/src/mesa/drivers/dri/sis/sis_tris.c
  1.2   +1 -1  xc/extras/Mesa/src/mesa/drivers/dri/sis/sis_tritmp.h

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


A better economy for all

2004-04-20 Thread Gena Becker
Homeowners/Buyers - do you have less than perfect cred1t? No Cred1t?

We'll quickly match you up with the B.EST provider based on YOUR NEEDS.
Whether its a Home Equ1ty L0an or a L0w-Rate-Re-f1nancing

We specialize in less than perfect cred1t.

We'll help you get the YES! you deserve.
 http://loanhelpamerica.com/?partid=afmhomes

 candelabra halsey donovan mollusk. rata chartres european, doreen asher winslow 
descriptive controlling.


Re: Xv and resolution loss on matrox cards

2004-04-20 Thread David Dawes
On Thu, Apr 15, 2004 at 02:59:40PM +0200, Michael Lampe wrote:
I'm rehashing an old thread from xpert, 
http://marc.theaimsgroup.com/?t=9772209053r=1w=2 and propose the 
following patch, derived from how mga_vid.c (kernel module for Matrox 
BES from mplayer) programs the card. It basically disables that 
'accelerated 2x horizontal zoom' thing which causes the problem. (With 
this option on, it looks like information from only every other pixel is 
used.)

Isn't the 'accelerated 2x horizontal zoom' thing something that is
required (because of hardware limitation) above certain clock rates?
I don't have the relevant specs handy to check.

David


It also turns back on 'chroma upsampling' (which was only turned off in 
a failed attempt to solve the issue, see quoted thread) and changes the 
vsync position to 2 (a la mga_vid.c, seems as good a constant as what 
was used before but is simpler).

A good example for testing is 
http://cox.iwr.uni-heidelberg.de/~ug/films/stefan.mov

-Michael


Index: programs/Xserver/hw/xfree86/drivers/mga/mga_video.c
===
RCS file: /cvs/xc/programs/Xserver/hw/xfree86/drivers/mga/mga_video.c,v
retrieving revision 1.34
diff -u -r1.34 mga_video.c
--- programs/Xserver/hw/xfree86/drivers/mga/mga_video.c20 Feb 2004 16:59:49 
-  1.34
+++ programs/Xserver/hw/xfree86/drivers/mga/mga_video.c15 Apr 2004 12:35:35 
-
@@ -578,48 +578,29 @@
 short src_w, short src_h,
 short drw_w, short drw_h
 ){
+#define VSYNC_POS 2
+
 MGAPtr pMga = MGAPTR(pScrn);
-int tmp, hzoom, intrep;
-int maxOverlayClock;
+int tmp, intrep;
 
 CHECK_DMA_QUIESCENT(pMga, pScrn);
 
-/* got 48 scanlines to do it in */
-tmp = INREG(MGAREG_VCOUNT) + 48;
-/* FIXME always change it in vertical retrace use CrtcV ?*/
-if(tmp  pScrn-currentMode-CrtcVTotal)
-  tmp -= 49; /* too bad */
-else
-tmp = pScrn-currentMode-CrtcVTotal -1;
-
-tmp = pScrn-currentMode-VDisplay +1;
-/* enable accelerated 2x horizontal zoom when pixelclock 135MHz */
-
-if ((pMga-ChipRev = 0x80) || (pMga-Chipset == PCI_CHIP_MGAG550)) {
-  /* G450, G550 */
-  maxOverlayClock = 234000;
-} else {
-  maxOverlayClock = 135000;
-}
-
-hzoom = (pScrn-currentMode-Clock  maxOverlayClock) ? 1 : 0;
-
 switch(id) {
 case FOURCC_UYVY:
-  OUTREG(MGAREG_BESGLOBCTL, 0x00c0 | (3 * hzoom) | (tmp  16));
+  OUTREG(MGAREG_BESGLOBCTL, 0x00c0 | (VSYNC_POS  16));
   break;
 case FOURCC_YUY2:
 default:
-  OUTREG(MGAREG_BESGLOBCTL, 0x0080 | (3 * hzoom) | (tmp  16));
+  OUTREG(MGAREG_BESGLOBCTL, 0x0080 | (VSYNC_POS  16));
   break;
 }
 
 OUTREG(MGAREG_BESA1ORG, offset);
 
 if(y1  0x0001)
-  OUTREG(MGAREG_BESCTL, 0x00040c41);
+  OUTREG(MGAREG_BESCTL, 0x00050c41);
 else 
-  OUTREG(MGAREG_BESCTL, 0x00040c01);
+  OUTREG(MGAREG_BESCTL, 0x00050c01);
  
 OUTREG(MGAREG_BESHCOORD, (dstBox-x1  16) | (dstBox-x2 - 1));
 OUTREG(MGAREG_BESVCOORD, (dstBox-y1  16) | (dstBox-y2 - 1));
@@ -640,7 +621,7 @@
 OUTREG(MGAREG_BESVISCAL, tmp  0x001c);
 
 intrep = ((drw_w == src_w) || (drw_w  2)) ? 0 : 1;
-tmp = (((src_w - intrep)  16)/(drw_w - intrep))  hzoom;
+tmp = (((src_w - intrep)  16)/(drw_w - intrep));
 if(tmp = (32  16))
   tmp = (32  16) - 1;
 OUTREG(MGAREG_BESHISCAL, tmp  0x001c);

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


Re: Xv and resolution loss on matrox cards

2004-04-20 Thread Michael Lampe
David Dawes wrote:

Isn't the 'accelerated 2x horizontal zoom' thing something that is
required (because of hardware limitation) above certain clock rates?
I don't have the relevant specs handy to check.
This seems to be irrelevant in practice. With my G400 at [EMAIL PROTECTED], 
32 bpp (max my monitor can do) I could provoke some slight image 
distortion (occasional single black lines in the overlay) by running 
mplayer, glxgears and 'ls -lR /' in an xterm in parallel -- maybe there 
are better test cases. This seems to demonstrate some bandwidth 
limitation, but it doesn't occur in normal cases. At [EMAIL PROTECTED], 32 
bpp what I normally use I can't see anything at all.

So, because I don't have any specs (and if the numbers currently in the 
code are derived from specs they are way too conservative) and prefer a 
good image under normal circumstances to a bad one all the time, I 
followed mga_vid's example and ripped the whole thing out.

-Michael

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


Re: (patch seq: 6202) XFree86-4.4.0 -- IPv6 support causes serious problems

2004-04-20 Thread Peter Breitenlohner
On Tue, 6 Apr 2004, Marc Aurele La France wrote:

 On Mon, 5 Apr 2004, Peter Breitenlohner wrote:

  yes, that was it. I have revoked my changes to xc/programs/xdm/xdmcp.c
  lines ca. 1420ff (patch-16-IPv6, kludge) and instead fixed the (s/!=/==/)
  and this works for us, except on the notebooks without network connection.

  When I have some time during the easter hollidays I'll try to figure out
  that last problem.

 OK.  Thanks for getting back to me on that.

Hi Marc,

meanwhile I did some strace-ing and wrote a small test program and therby
finally have found out why our notebooks (when off the network) took such a
long time (ca. 10min) to start xdm.

This was caused by the IPv6-enabled xdm only insofar as in that case
`getaddrinfo' is used to resolve hostnames as opposed to `gethostbyname' in
the IPv6-disabled version. As far as I can see the problem could equally
have occured if IPv6 were supported by the linux kernel.

There was an accumulation of several circumstances, some of them particular
to our setup. I give a somewhat detailed description what happened, because
other people might encounter similar problems (delays).

1. we have a CHOOSER hostlist with 51 unqualified hostnames (we can't use
CHOOSER BROADCAST for various reasons).

2. `getaddrinfo(host, NULL, NULL, ai)' (as used by xdm) produced a 10sec
timeout, whereas `getaddrinfo(host.domain, NULL, NULL, ai)' as well as
`gethostbyname(host)' give an immediate answer.

2.1. the glibc-2.[23].x implementation of
`getaddrinfo(host, NULL, NULL, ai)'
first queries the nameserver for host.domain and then for host (whereas
`gethostbyname(host)' only queries for host.domain). I don't have the
slightest idea what's the reason for this pecularity (feature or bug) of
getaddrinfo since from the nameserver's point of view a domainname host
without any dots doesn't make much sense.

2.2. the nameserver (ISC bind-9.2.3) on the notebook has forward and
reverse slave zone files for our domain, but for sure couldn't resolve an
unqualified hostname. Unfortunately it was configured to forward the request
to resolve host to other namesevers (recursion), thereby producing a bad
timeout. Disabling this recursion of the slave nameserver has solved all the
problems we had.

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


Discount Prescriptions Soma s

2004-04-20 Thread Dr Biggums



Email loading...

Image not loading? See  message here.


Stop future announcements.

KpCJh.HhcpH/lYr5a1xR6Th1918Ed1MXZfA1
najcg nxpfik, jaqeb, fysgzz . pqem snt vuisj, dwuo, mtaby . wez
vqla vsqp, nlwhx, ktgzp . srx qtz ruieul, mdrbs, xzzjk . rlk
fblz gylx, tcpgee, vfdz . czqot bdzihm asins, iwto, zbxge . mjxcx
obwn dztetc, nfclaq, bskh . juh yhxmi brz, lfw, zlwb . xtkynv
mgctm cmpki, ejv, rrgq . ctbbm cajko ojdqmr, wzaalv, cozusc . ufzi
btrpkh nylffj, fktad, qfpj . cfme whgnxq yfvl, autig, kkk . pzkyer
kei myoe, ojsz, sur . afnmp dradv qfxawl, npv, apdy . xpmzv
omprdr ykpfhp, uqtjn, mdzkn . cza bols pkeput, elbadu, ssy . skmsmo
lpizj oty, qucwfd, kzi . sgc rog ebtvjs, diycnq, qodvl . xvrrev
xmlcqm mypr, xrfl, ddy . alv hpqlkx yjm, xkdxzw, xngkzk . ysrlor
fjfrh qschpm, png, mvyyv . pvdhg yzajgr whi, oamar, ghoc . mxsc
xly lzsug, levvej, skot . xjuhy bclynm anm, vxhbs, fecz . ttise
zcyagm vauvp, qlezm, eucjt . eof tkw kygy, byvx, cpbiq . gvjl
dfkrm mye, jdqhe, izqydh . lyos yfbb luz, hxyrib, shcaiv . mczxc
rxny oll, mfqj, jugs . nwoxr jwpjy cysby, okr, rjluu . amtplj
czy ojzvn, nqxv, jpg . asu zwjt uecz, cxuny, axet . axereh
ydox yspux, tdvr, irnlpt . mtd mjzgh uhhs, wnwq, znz . wtoj
hpwdu peqvn, swckwa, uqiwgj . eeln sekvy netk, ocqsp, sqj . afrk
xon ffqpd, sstlc, bffvwu . mdbnk zorpb uitm, jefe, ktvpz . nvhz
iokep vfzab, tnxc, ejm . chf ysyfuy kitaio, jqitjw, oqw . cnbl
fmn rjeh, ocvxtc, jlzvj . jzqidd qxsc ywt, fpq, kpanwm . vhjps
hap nhjgk, egr, lga . rqxgm ijqrai jkuvxb, fndjvw, idud . mac
lmj fklitv, ruh, axd . szhdeb anien qwwv, hfc, ltytr . swo
vvn yvc, fhaa, wyxf . chlq mjv dreno, doxatk, ckkbh . aosdxg
zueu hlp, zob, oelym . lyos picufk egvaqe, fcow, gmi . kwev
vpemz ieuxk, ukq, zycow . uiq uoqqj hpzhzh, tgyt, klc . lhy
purggm zefol, ouvxk, gijiu . neiues zjrh oiztxn, ljlkt, qdlba . oet
llr wltuz, tsbik, syyna . tnstyg rqkejw usw, wqox, yluyl . ycd
uwmcx skjc, lya, syaiv . giv uffw ttgfv, kqpt, yhs . pkz
swpbfm brp, blujsq, digy . gfu whil edelro, jgomr, yla . qkvpmc
jlv tit, laldoz, wpcna . barrn ibrhkc cvk, uya, bohr . wvaw
bzpvm dntka, meqzel, esav . tiwo umotc hgmvaz, xnbq, gdl . vlfxe
vvyp mllxss, pskm, yohk . kygij



[Fonts] bark

2004-04-20 Thread luxmzvuxuzs
Sutherland,

Govenment don't want me to sell
UndergroundCD !Check Your spouse and staff
Investigate Your Own CREDIT-HISTORY
hacking someone PC!
Disappear in your city
bannedcd2004

http://www.aol43566.com/cd/

basidiomycetes,to the procurator.


[Fonts] Take a breather

2004-04-20 Thread Deann Navarro
Title: sunday



Re-fin.ance now, even with bad-cr.edit!
- Best Re-fina.nce Rate for cre.dit challenged.
- Best Customer Service
- Low.est-int.rest-rates in years
- Sa.ve $100-$400 per month

Our easy application only takes 1 minutes.


--
To modify your future contact options, please reference here.
essex motorola endow discuss zimmerman reid lounsbury colossus rhododendron teet face fordham homeland identify diane madam neuroanatomic squill joss diabetic flunk springboard  serbia mullen nicotine edmondson bimetallism victim buttonhole antwerp studio constant armonk esteem cinderella dionysus shrove vulpine nose admitted spectacle mario agglutinate uplift divisional proper venal hamster terse mae destiny grave bezel covenant source 




[Fonts] Does fontconfig support xfs?

2004-04-20 Thread °×½ð¸Õ
Hi all,
Can fontconfig and xft use xfs services? I think xfs is a good way to share
font, then how can I use it in gtk-2.4 which only support xft? Thanks for any
tips.

Regards,
Xuefeng Tang


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


[I18n] hexagon

2004-04-20 Thread Faith Melendez
Lou ^

The cablefilterz will allow you to receive

all the channels that you order with your remote control,\

payperviews,aXXXmovies,sport events,special-events

http://www.aol43566.com/cable/

fayetteville ,glimpse .


[I18n] New hosting account,amicable

2004-04-20 Thread Mauricio Peoples
Shipley,`

Need affordable but reliable web hosting for only $5/month?

-800 MB Disk Space
-Unlimited email accounts
-FREE Shopping Cart... and much more! 

Please contact us to take advantage of this new offer at  

http://ad.2hostpromotion101.com


comanche 


Re: [XFree86] Cirrus GD5436 Problem with 800x600 at 16bits

2004-04-20 Thread Leszek Dubiel
  I've done so, but 800x600 at 16 bits color gives 960kB, while 
  my card has 1024. Anyway thank you. 
 
 Then it's detected wrong. Try to set it hard in the config file,

I've done so. I've tried to set 1024kB -- doesn't work. I've tried 
to set 2048 (which is more than my actual state) and screen
overlaps itself (bottom part of screen is repeated at the top). 

But I think that driver must use some more memory than 
is needed for screen, and 800x600 at 16 bits takes most
of other modes -- so maybe it lacks those few kilobytes. 

Leszek Dubiel 


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


Re: [XFree86] virtual resolution

2004-04-20 Thread Andreas Krebs
Finally, I found what I need:
Using xrand -s 2 switches to   1024 x 768,
xrand -s 0 switches back.
Any way to put this behaviour into XF86config to use CRTL+ALT+(NUM+) ?
   Andreas
Andreas Krebs wrote:
I did the following modification, but it still the same:
The virtual res. remains 1400x1050 when switching to the lower
resolution, i.e., moving the mouse to display's border shows the hidden 
part of the 1400x1050 virtual pixels. Thanks  Andreas

Section Screen
#  DefaultDepth 16
  SubSection Display
Depth  24
Modes  1400x1050 1024x768 800x600 640x480
  EndSubSection
  Device   Device[0]
  Identifier   Screen[0]
  Monitor  Monitor[0]
EndSection
Section Device
  BoardNameUnbekannt
  Driver   r128
  Identifier   Device[0]
  Option   dpms
#  OptionCRTScreen false
  Screen   0
  VendorName   Unknown
Michael Taylor wrote:

Andreas Krebs wrote:


Now, I would like to get rid of the virtual resolution 1400x1050
when I am working with 1024x768.
Is there a way to switch the virtual resolution on the fly or
do I need to start a second Xserver.


If I understand your request, yes. You just need to simplify your Section
Screen entry in your XF86Config file.
Something like (you may need/want multiple display depths):

Section Screen
Identifier Screen0
Device Videocard0
MonitorMonitor0
DefaultDepth 24
SubSection Display
Depth 24
Modes  1400x1050 1024x768 800x600 640x480
EndSubSection
EndSection
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86




--
+--+
| Andreas Krebs|
| Lehrstuhl fuer Numerische und Angewandte Mathematik  |
| Institut fuer Mathematik / Fakultaet I   |
| Raum 206 / Lehrgebaeude 10   |
| email: [EMAIL PROTECTED] |
| Tel.:   (+49 355) 69-3067|
| Fax :   (+49 355) 69-2776|
| PF 101344, D-03013 COTTBUS, Germany  |
|  |
| URL: http://vieta.math.tu-cottbus.de/~krebs/ |
+--+


smime.p7s
Description: S/MIME Cryptographic Signature


[XFree86] xinerama radeon 9600 2nd head mouse cursor

2004-04-20 Thread Joe Gilmour
Hi, I'm new to the list so forgive me if this has already been asked.

I have a Radeon 9600 XT chipset card running duel heads. Xfree86 4.4.0.  
On the head 2 (analogue not the DVI) the mouse cursor doesn't change 
when over parts of the screen where it should, like the resize corners 
or selecting text.  It also seems to jump over those parts of the 
screen.  It works on the head 1 (DVI) fine.  Any thoughts?

Thanks,

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


[XFree86] Libro GRATIS sobre LA BOLSA

2004-04-20 Thread StrikeOption


[XFree86] Libro GRATIS sobre LA BOLSA

2004-04-20 Thread StrikeOption


[XFree86] Libro GRATIS sobre LA BOLSA

2004-04-20 Thread StrikeOption


[XFree86] XServer and TV

2004-04-20 Thread Henry Berg =?iso-8859-1?q?
Hi,   
  
I have made a little gadget to get the right sync from VGA to SCART in
my TV.
  
With this Modeline the picture is Ok, but it flickers too much.   
13356000   640  656  712  848   480  480  483  525   Interlace
  
With this Modeline the picture is Ok and no flicker, but it has too   
few scanlines.
13331000   640  656  712  848   240  240  241  262
  
I like to try this modeline:  
13382000   640  656  712  848   480  480  483  526   Concatenate  
  
Concatenate (concatenate 2 fields to get a frame):
Concatenate is a flag, which does not exist in XServer and is only
here for explanation. 
First field contains lines 1-263 (=top half of the frame) and second  
field contains lines 264-526 (=bottom half of the frame). In this way 
I could have HSF to 15750 Hz and field rate to 60 Hz which NTSC TV
demand (or 15625/50Hz for PAL TV).
  
Driver svga.
Device Cirrus Logic GD543X  
chipset: clgd5434 
  
The aim is to have the TV as the computer screen with 526 (480) lines 
with no flicker.  
  
Is it possible to configure XServer to concatenate fields?
If it is not possible to configure XServer, is it much work to fix in 
XServer?  
  
  
Best Regards, 
Evald 
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] X Server without mice and keyboard

2004-04-20 Thread David Marti



Hi,

This is a simple question: Can I run a XWindow 
Server without a mice and keyboardconnected to computer?

Thanks.

David.


RE: [XFree86] X Server without mice and keyboard

2004-04-20 Thread Thibault Ketterer
I guess yes 
for the mouse : Option AllowMouseOpenFail True 
with it you could even keep your mouse well configurated.

and I don't know about the keyboard. :)
But there should be some way.



De : [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] De la part
de David Marti
Envoyé : mardi 20 avril 2004 12:54
À : [EMAIL PROTECTED]
Objet : [XFree86] X Server without mice and keyboard


Hi,
 
This is a simple question: Can I run a XWindow Server without a mice and
keyboard connected to computer?
 
Thanks.
 
David.


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


[XFree86] Dual Screen + i810

2004-04-20 Thread Alex Deucher
the opensource i810 driver doesn't support dualhead at the moment,
however, it seems intel has released a binary driver on their website
that supports dualhead.  check the dri-devel archives for more info:
http://marc.theaimsgroup.com/?t=10816138721r=1w=2

Alex

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Does somebody uses the i810 driver with dual-screen on a laptop please
? i 
can't make it work :(

Thanks
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.4 (GNU/Linux)

iD8DBQFAhAkyH6AppSifBIcRAmdWAKCwHc8kCbtXxXAblv6gA9xrhfIsagCgpnzE
JcMZUBogW/HQvqs2fDhvmpk=
=QOKN
-END PGP SIGNATURE-




__
Do you Yahoo!?
Yahoo! Photos: High-quality 4x6 digital prints for 25¢
http://photos.yahoo.com/ph/print_splash
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] XIO: fatal IO error 105 (No buffer space available)

2004-04-20 Thread Curt, WE7U
On Fri, 16 Apr 2004, Curt, WE7U wrote:

 On Thu, 15 Apr 2004, Curt, WE7U wrote:

  I'm running an application on linux.  Every once in a while (two
  times so far this week) the application will fall over with this
  message:
 
XIO: fatal IO error 105 (No buffer space available)

Where does one go to get the ear of the XFree86 developers?  Some
other list?  A bug-reporting tool?

--
Curt, WE7U  archer at eskimo dot com
Arlington, WA, USA  http://www.eskimo.com/~archer
Lotto:A tax on people who are bad at math. -- unknown
Windows:  Microsoft's tax on computer illiterates. -- WE7U
The world DOES revolve around me:  I picked the coordinate system!
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] optical mouse

2004-04-20 Thread Michael Taylor
Mikhailov Anatoly wrote:
 Hello.
 I have a optical mouse Defender 1300 PS/2. On this mouse places 5
 button, how i can use it? And default driver Microsoft mouse is not

http://kerneltrap.org/node/view/2199
  Search for  My extra buttons don't work in X.

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


Re: [XFree86] help me

2004-04-20 Thread Michael Taylor
C H ! C OoooOooo wrote:
 i use redhat 3
 xfree86 4.4.0
 P4 titan motherboard with built in Intel 845GL chipset,
 
 wen i was installing xfree many folders couldn't be created but it
 worked, anyway wen i configure it i cant find the card in the list of
 cards and i dont knw how to setup it, and wen i tried after i start x

Could you please include (as a text attachment) your /var/log/XFree86.0.log and
your configuration file (/etc/X11/XF86Config)?

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


Re: [XFree86] display is not correct

2004-04-20 Thread Michael Taylor
KSSP wrote:
 Dear sir,
 
 I installed RH linux 8.0 in my machine.  But now I can't get the display.  I
 am sending the system details. Please help me.
 
 P4 1.70, Mother Board : Intel D845GLAD, HDD 40 GB, RAM : 256 MB.

Red Hat Inc. no longer supports (by producing updates) for Red Hat Linux 8, so I
strongly recommend you upgrade to a supported distribution, first to ensure
security flaws get fixed and second so that you have a newer version of XFree86
(4.4.0 is the current release, which includes better support for Intel 845
series chipset).

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


[XFree86] IM FRUSTRATED, HELP!

2004-04-20 Thread Oscar Ruiz








Please.



Can some1 send me a XFree86Config that would
work with a Elo 2310 Touchscreen monitor whit SERIAL controller



I mean VGA works, but I just CANT make the
pointer to work =\



I have spent 3 days on guides and tutorials..



Im using XFree86 4.1 (no, I cannot upgrade it because
its a slackware preconfigured system without gcc)



Please








RE: [XFree86] HELP ME

2004-04-20 Thread Eltigani Osman
gt;From: quot;taaaj osaquot; lt;[EMAIL PROTECTED]gt;
gt;Reply-To: [EMAIL PROTECTED]
gt;To: [EMAIL PROTECTED]
gt;Subject: [XFree86] HELP ME
gt;Date: Mon, 19 Apr 2004 16:40:17 +0200
gt;
gt;Dear Sir
gt;My x windows is not starting due to some problem (can't start the x
gt;server). I am sending the full /var/log/XFree86.0.log file with this
gt;mail. Can you help me to fix the problem?
gt;
gt;Note:
gt;My display adapter is: sis 300/305
gt;
gt;XFree86 Version 4.3.0 (Red Hat Linux release: 4.3.0-2)
gt;Release Date: 27 February 2003
gt;X Protocol Version 11, Revision 0, Release 6.6
gt;Build Operating System: Linux 2.4.20-3bigmem i686 [ELF]
gt;Build Date: 27 February 2003
gt;Build Host: porky.devel.redhat.com
gt;
gt;Before reporting problems, check http://www.XFree86.Org/
gt;to make sure that you have the latest version.
gt;Module Loader present
gt;OS Kernel: Linux version 2.4.20-8 ([EMAIL PROTECTED])
gt;(gcc version 3.2.2 20030222 (Red Hat Linux 3.2.2-5)) #1 Thu Mar 13
gt;17:54:28 EST 2003
gt;Markers: (--) probed, (**) from config file, (==) default setting,
gt; (++) from command line, (!!) notice, (II) informational,
gt; (WW) warning, (EE) error, (NI) not implemented, (??)
gt;unknown.
gt;(==) Log file: quot;/var/log/XFree86.0.logquot;, Time: Sat Apr 17 
07:32:29
gt;2004
gt;(==) Using config file: quot;/etc/X11/XF86Configquot;
gt;(EE) VGA (0): Driver can't support depth 24
gt;(EE) Screen (s) found, but none have a usable configuration.
gt;
gt;Fatal server error:
gt;No screens found
gt;
gt;When reporting a problem related to a server crash, please send
gt;the full server output, not just the last messages.
gt;This can be found in the log file quot;/var/log/XFree86.0.logquot;.
gt;Please report problems to [EMAIL PROTECTED]
gt;
gt;Please help me
gt;Please help me
gt;Please help me
gt; Thank you
gt;
gt; Eltigani
gt;
gt;_
gt;The new MSN 8: smart spam protection and 2 months FREE*
gt;http://join.msn.com/?page=features/junkmail
gt;
gt;___
gt;XFree86 mailing list
gt;[EMAIL PROTECTED]
gt;http://XFree86.Org/mailman/listinfo/xfree86

_
The new MSN 8: smart spam protection and 2 months FREE*  
http://join.msn.com/?page=features/junkmail

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


RE: [XFree86] HELP ME

2004-04-20 Thread Eltigani Osman
gt;From: quot;taaaj osaquot; lt;[EMAIL PROTECTED]gt;
gt;Reply-To: [EMAIL PROTECTED]
gt;To: [EMAIL PROTECTED]
gt;Subject: [XFree86] HELP ME
gt;Date: Mon, 19 Apr 2004 16:40:17 +0200
gt;
gt;Dear Sir
gt;My x windows is not starting due to some problem (can't start the x
gt;server). I am sending the full /var/log/XFree86.0.log file with this
gt;mail. Can you help me to fix the problem?
gt;
gt;Note:
gt;My display adapter is: sis 300/305
gt;
gt;XFree86 Version 4.3.0 (Red Hat Linux release: 4.3.0-2)
gt;Release Date: 27 February 2003
gt;X Protocol Version 11, Revision 0, Release 6.6
gt;Build Operating System: Linux 2.4.20-3bigmem i686 [ELF]
gt;Build Date: 27 February 2003
gt;Build Host: porky.devel.redhat.com
gt;
gt;Before reporting problems, check http://www.XFree86.Org/
gt;to make sure that you have the latest version.
gt;Module Loader present
gt;OS Kernel: Linux version 2.4.20-8 ([EMAIL PROTECTED])
gt;(gcc version 3.2.2 20030222 (Red Hat Linux 3.2.2-5)) #1 Thu Mar 13
gt;17:54:28 EST 2003
gt;Markers: (--) probed, (**) from config file, (==) default setting,
gt; (++) from command line, (!!) notice, (II) informational,
gt; (WW) warning, (EE) error, (NI) not implemented, (??)
gt;unknown.
gt;(==) Log file: quot;/var/log/XFree86.0.logquot;, Time: Sat Apr 17 
07:32:29
gt;2004
gt;(==) Using config file: quot;/etc/X11/XF86Configquot;
gt;(EE) VGA (0): Driver can't support depth 24
gt;(EE) Screen (s) found, but none have a usable configuration.
gt;
gt;Fatal server error:
gt;No screens found
gt;
gt;When reporting a problem related to a server crash, please send
gt;the full server output, not just the last messages.
gt;This can be found in the log file quot;/var/log/XFree86.0.logquot;.
gt;Please report problems to [EMAIL PROTECTED]
gt;
gt;Please help me
gt;Please help me
gt;Please help me
gt; Thank you
gt;
gt; Eltigani
gt;
gt;_
gt;The new MSN 8: smart spam protection and 2 months FREE*
gt;http://join.msn.com/?page=features/junkmail
gt;
gt;___
gt;XFree86 mailing list
gt;[EMAIL PROTECTED]
gt;http://XFree86.Org/mailman/listinfo/xfree86

_
Protect your PC - get McAfee.com VirusScan Online 
http://clinic.mcafee.com/clinic/ibuy/campaign.asp?cid=3963

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


[XFree86] Video configuration error.

2004-04-20 Thread John Ward
Hello,
When I do a warm boot I get a video configuration error and the PS/2
mouse configuration is disabled. The system attempts to fix the problem,
but is unable to. This prevents the GUI from loading. When I do a cold
boot it comes up without any problems. I have included the
XFree86.0.log.
Any help would be greatly appreciated.
Thank you,
John Ward
[EMAIL PROTECTED]
 

XFree86 Version 4.3.0 (Red Hat Linux release: 4.3.0-2)
Release Date: 27 February 2003
X Protocol Version 11, Revision 0, Release 6.6
Build Operating System: Linux 2.4.20-3bigmem i686 [ELF] 
Build Date: 27 February 2003
Build Host: porky.devel.redhat.com
 
Before reporting problems, check http://www.XFree86.Org/
to make sure that you have the latest version.
Module Loader present
OS Kernel: Linux version 2.4.20-30.9 ([EMAIL PROTECTED]) (gcc version 3.2.2 20030222 
(Red Hat Linux 3.2.2-5)) #1 Wed Feb 4 20:44:26 EST 2004 
Markers: (--) probed, (**) from config file, (==) default setting,
 (++) from command line, (!!) notice, (II) informational,
 (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: /var/log/XFree86.0.log, Time: Tue Apr 20 12:35:58 2004
(==) 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.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 = 0x8000780c, mode1Res1 = 0x8000
(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 1039,0630 card , rev 30 class 06,00,00 hdr 80
(II) PCI: 00:00:1: chip 1039,5513 card 1043,80e1 rev d0 class 01,01,80 hdr 80
(II) PCI: 00:01:0: chip 1039,0008 card , rev 00 class 06,01,00 hdr 80
(II) PCI: 00:01:1: chip 1039,0900 card 1043,80e1 rev 84 class 02,00,00 hdr 00
(II) PCI: 00:01:2: chip 1039,7001 card 0039,7001 rev 07 class 0c,03,10 hdr 00
(II) PCI: 00:01:3: chip 1039,7001 card 0039,7000 rev 07 class 0c,03,10 hdr 00
(II) PCI: 00:02:0: chip 1039,0001 card , rev 00 class 06,04,00 hdr 01
(II) PCI: 00:05:0: chip 13f6,0111 card 1043,80e1 rev 10 class 04,01,00 hdr 00
(II) PCI: 00:0d:0: chip 1186,1300 card 1186,1300 rev 10 class 02,00,00 hdr 00
(II) PCI: 00:0f:0: chip 1186,1300 card 1186,1300 rev 10 class 02,00,00 hdr 00
(II) PCI: 01:00:0: chip 1039,6300 card 1043,80e1 rev 21 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,1), 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-ISA bridge:
(II) Bus -1: bridge is at (0:1:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
(II) PCI-to-PCI bridge:
(II) Bus 1: bridge is at (0:2:0), (0,1,1), BCTRL: 0x0008 (VGA_EN is set)
(II) Bus 1 I/O range:
[0] -1  0   0xa000 - 0xafff (0x1000) IX[B]
(II) Bus 1 non-prefetchable memory range:
[0] -1  0   0xe980 - 0xe9ff (0x80) MX[B]
(II) Bus 1 prefetchable memory range:
[0] -1  0   0xf000 - 0xfeaf (0xeb0) MX[B]
(--) PCI:*(1:0:0) Silicon Integrated Systems [SiS] SiS630 GUI Accelerator+3D rev 33, 
Mem @ 0xf000/27, 0xe980/17, I/O @ 0xa800/7
(II) Addressable bus resource ranges are
[0] -1  0   0x - 0x (0x0) MX[B]
[1] -1  0   0x - 0x (0x1) IX[B]
(II) OS-reported resource ranges:
[0] -1  0   0xffe0 - 0x (0x20) MX[B](B)
[1] -1  0   0x0010 - 0x3fff (0x3ff0) MX[B]E(B)

[XFree86] import

2004-04-20 Thread dyclhmnoervz
Rushing,

Govenment don't want me to sell
UndergroundCD !Check Your spouse and staff
Investigate Your Own CREDIT-HISTORY
hacking someone PC!
Disappear in your city
bannedcd2004

http://www.aol43566.com/cd/

nu,strike up they.


Re: [XFree86] problem in x startup

2004-04-20 Thread Michael Taylor
amol chandurkar wrote:
 my x windows is not starting due to some problem 

 (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
 (WW) Warning, couldn't open module pcidata
 (II) UnloadModule: pcidata
 (EE) Failed to load module pcidata (module does not exist, 0)
 Fatal server error:
 Unable to load required base modules, Exiting...

You possibly have a corrupted install of XFree86. First you should confirm that
do not have filesystem problems (e.g. by running fsck , and ensuring necessary
free space, 'df'), then you should reinstall (rpm -e then rpm -ivh or rpm -Uvh
--force) your XFree86 rpms.
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] my x server failed

2004-04-20 Thread Michael Taylor
naju wrote:
 (II) Loading sub module vgahw
 (II) LoadModule: vgahw
 (WW) Warning, couldn't open module vgahw
 (II) UnloadModule: vgahw
 (EE) I810: Failed to load module vgahw (module does not exist, 0)
 (II) UnloadModule: i810
 (EE) Screen(s) found, but none have a usable configuration.

What does
ls -l /usr/X11R6/lib/modules/libvgahw.a
return?

You may need to reinstall the XFree86 rpms (rpm -e / rpm -ivh or rpm -Uvh --force).
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] XUngrabKeyboard problem ?

2004-04-20 Thread Romain
Humm nobody know where i can find help ?

On Mon, 2004-04-19 at 01:39, Romain wrote:
 Hello,
 
 I try to make a little program based on xlib and xosd, it's a daemon
 listening on the keyboard made for example to increase volume level or
 other things.
 
 But i have a problem to Ungrab the keyboard, i made a sample of what i
 would like to do, if someone see where is the problem 
 
 Thanks ! :)
 
 Romain
 
 (gcc devxosd.c -o devxosd -lxosd)
 
 /*
  * XOSD TEST
  */
  
 #include stdio.h
 #include stdlib.h
 #include unistd.h
 #include fcntl.h
 #include sys/ioctl.h
 #include errno.h
 #include linux/types.h
  
 #include xosd.h
 #include X11/Xlib.h
 #include X11/keysym.h
 #include X11/Xutil.h
  
 #include sys/soundcard.h
  
 
 int getSound (void)
 {
  int fd_mixer, vol;
   
  if ((fd_mixer = open (/dev/mixer, O_RDWR))  0) {
   perror (/dev/mixer);
   return -1;
  }
   
  if (ioctl (fd_mixer, SOUND_MIXER_READ_VOLUME, vol) == -1) {
   perror (ioctl);
   return -1;
  }
  
  if (close(fd_mixer) == -1) {
   perror(close);
   return -1;
  }
   
  return vol255;
 }
 
 int setSound (int v)
 {
  int fd_mixer, vol;
   
  if ((fd_mixer = open (/dev/mixer, O_RDWR))  0) {
   perror (/dev/mixer);
   return -1;
  }
   
  vol = (v  8) | v ;
   
  if (ioctl (fd_mixer, SOUND_MIXER_WRITE_VOLUME, vol) == -1) {
   perror (ioctl);
   return -1;
  }
  
  
  if (close(fd_mixer) == -1) {
   perror(close);
   return -1;
  }
  
  
  return 0;
 }
 
 int volume (int level)
 {
  Display *disp = NULL;
  Window root;
  
  
  disp = XOpenDisplay(NULL);
  if (!disp) {
   fprintf(stderr, Failed to open display\n);
   return -1;
  }
  
  
  root = DefaultRootWindow(disp);
  
  
  
  
  /* Xlib */
  int nbre;
  char chaine[2];
  KeySym touche;
  
  
  /* Xosd */
  xosd *osd = NULL;
  char *font =
 -adobe-helvetica-bold-r-normal-*-*-240-*-*-p-*-iso8859-1;
  char *title = Volume;
  
  
  int isUp = 1;
  
  
  osd = xosd_create (2);
  if (osd == NULL) {
   perror (Could not create \osd\);
   return -1;
  }
  
  
  if (xosd_set_font (osd, font)) {
   printf (Cound not set font\n);
   return -1;
  }
  
  
  xosd_set_shadow_offset (osd, 2);
  xosd_set_colour (osd, white);
  
  
  /* Position */
  xosd_set_pos (osd, XOSD_bottom);
  xosd_set_vertical_offset (osd, 20);
  xosd_set_align (osd, XOSD_center);
  xosd_set_horizontal_offset (osd, 0);
  xosd_set_bar_length(osd, 20);
  
  
  xosd_display (osd, 0, XOSD_string, title);
  xosd_display (osd, 1, XOSD_percentage, level);
  
  
  XGrabKeyboard (disp, root, True, 

Re: [XFree86] XIO: fatal IO error 105 (No buffer space available)

2004-04-20 Thread Michael Taylor
Curt, WE7U wrote:
 On Fri, 16 Apr 2004, Curt, WE7U wrote:

I'm running an application on linux.  Every once in a while (two
times so far this week) the application will fall over with this
message:

  XIO: fatal IO error 105 (No buffer space available)
 
 Where does one go to get the ear of the XFree86 developers?  Some
 other list?  A bug-reporting tool?

http://bugs.xfree86.org/

Does the bug exist in the current release of XFree86 (4.4.0 or cvs)?

Is Xastir being overly aggressive with XPutImage or similar calls?

(For the benefit of the list archive:) This link should of been easy to find
from the Getting Help page on http://www.xfree86.org/help.html.

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


[XFree86] HELP, IM LOST AND FRUSTRATED!! =(

2004-04-20 Thread Oscar Ruiz
I wanna make work an Elo Touchscreen 2310 MONITOR, with serial device for
mouse...but pointer just don't work :(

Here is my XF86Config (without the comments)

--
Section Module
Loaddbe   # Double buffer extension
SubSection  extmod
  Optionomit xfree86-dga   # don't initialise the DGA extension
EndSubSection
Loadtype1
Loadfreetype
EndSection

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/Speedo/
FontPath   /usr/X11R6/lib/X11/fonts/75dpi/
FontPath   /usr/X11R6/lib/X11/fonts/100dpi/
EndSection

Section ServerFlags
EndSection

Section InputDevice
Identifier  Keyboard1
Driver  Keyboard
Option AutoRepeat 500 30
Option XkbRules   xfree86
Option XkbModel   pc101
Option XkbLayout  us
EndSection

Section InputDevice
Identifier  Mouse1
Driver  mouse
Option ProtocolAuto
Option Device  /dev/ttyS0 
Option BaudRate   9600
Option SampleRate 150
EndSection

Section InputDevice
Identifier touchscreen1
Driver elo2300
Option Device /dev/ttyS0
Option MinX 4079
Option MaxX 39
Option MinY 4176
Option MaxY 1
Option ScreenNumber 0
Option ReportingMode Scaled
Option ButtonThreshold 17
Option ButtonNumber 1
Option SendCoreEvents
EndSection

Section Monitor
Identifier  My Monitor
HorizSync   31.5 - 57.0
VertRefresh 50-100
EndSection

Section Device
Identifier  Standard VGA
VendorName  Unknown
BoardName   Unknown
Driver vga
EndSection

Section Device
Identifier  Trident 3DImage975 (generic)
Driver  trident
EndSection

Section Screen
Identifier  Screen 1
Device  Trident 3DImage975 (generic)
Monitor My Monitor
DefaultDepth 16
Subsection Display
Depth   8
Modes   1280x1024 1024x768 800x600 640x480
ViewPort0 0
EndSubsection
Subsection Display
Depth   16
Modes   1280x1024 1024x768 800x600 640x480
ViewPort0 0
EndSubsection
Subsection Display
Depth   24
Modes   1280x1024 1024x768 800x600 640x480
ViewPort0 0
EndSubsection
EndSection

Section ServerLayout
Identifier  Simple Layout
Screen Screen 1
InputDevice Mouse1 CorePointer
InputDevice Keyboard1 CoreKeyboard
Inputdevice touchscreen1 SendCoreEvents
EndSection

---


and here is my XF86.log output

---


XFree86 Version 4.1.0 / X Window System
(protocol Version 11, revision 0, vendor release 6510)
Release Date: 2 June 2001
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/FAQ)
Build Operating System: Linux 2.2.19 i686 [ELF] 
Module Loader present
(==) Log file: /var/log/XFree86.0.log, Time: Tue Jan  1 01:10:36 2002
(==) Using config file: /etc/X11/XF86Config
Markers: (--) probed, (**) from config file, (==) default setting,
 (++) from command line, (!!) notice, (II) informational,
 (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) ServerLayout Simple Layout
(**) |--Screen Screen 1 (0)
(**) |   |--Monitor My Monitor
(**) |   |--Device Trident 3DImage975 (generic)
(**) |--Input Device Mouse1
(**) |--Input Device Keyboard1
(**) XKB: rules: xfree86
(**) XKB: model: pc101
(**) XKB: layout: us
(**) |--Input Device touchscreen1
(**) FontPath set to
/usr/X11R6/lib/X11/fonts/local/,/usr/X11R6/lib/X11/fonts/misc/,/usr/X11R6/l
ib/X11/fonts/75dpi/:unscaled,/usr/X11R6/lib/X11/fonts/100dpi/:unscaled,/usr/
X11R6/lib/X11/fonts/Type1/,/usr/X11R6/lib/X11/fonts/Speedo/,/usr/X11R6/lib/X
11/fonts/75dpi/,/usr/X11R6/lib/X11/fonts/100dpi/
(**) RgbPath set to /usr/X11R6/lib/X11/rgb
(==) ModulePath set to /usr/X11R6/lib/modules
(--) using VT number 7

(II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.a
(II) Module bitmap: vendor=The XFree86 Project
compiled for 4.1.0, module version = 1.0.0
(II) Loading /usr/X11R6/lib/modules/libpcidata.a
(II) Module pcidata: vendor=The XFree86 Project
compiled for 4.1.0, module version = 0.1.0
(II) Loading /usr/X11R6/lib/modules/libscanpci.a
(II) Module scanpci: vendor=The XFree86 Project
compiled for 4.1.0, module version = 0.1.0
(II) Unloading /usr/X11R6/lib/modules/libscanpci.a
(--) PCI:*(1:0:0) Trident CyberBlade/i1 rev 106, Mem @ 0xd580/23,
0xd600/17, 0xd500/23
(II) Loading /usr/X11R6/lib/modules/extensions/libdbe.a
(II) Module dbe: vendor=The XFree86 Project
compiled for 4.1.0, module version = 1.0.0

Re: [XFree86] X windows Problem on Red Hat Linux 9.0

2004-04-20 Thread Michael Taylor
Mahamad Saleem wrote:

 (EE) Unable to locate/open config file
 (EE) Error from xf86HandleConfigFile()

You should create a X11 configuration file.

XFree86 -configure
or
redhat-config-xfree86
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] Updated to Xfree 4.4, now no 3D apps will launch!!

2004-04-20 Thread Michael Taylor
[EMAIL PROTECTED] wrote:
 I'm running PCLinuxOS with Kernel 2.6.4 and KDE 3.2. The hardware is a Dell
 Inspiron 1100 Laptop, integrated Intel extreme graphics, 845G chipset. Uses
 i810 driver. Everything worked fine under Xfree 4.3. 3D acceleration etc. I
 upgraded to XFree 4.4 and now I can't launch any 3D games or even run
 Kcube! What happens is this, I launch the app, let's say chromium, the

Look for errors or warnings in /var/log/XFree86.0.log. Look at the output of
glxinfo for information about your OpenGL environment.
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


[XFree86] Ocean Quotation In April--Fm:UBI-Sha/Brian

2004-04-20 Thread Brian/ubi-sha

LIMA-UBI TRANSPORT INTERNATIONAL CO.,LTD.SHANGHAI BRANCH

PIC:Brian Xue /  
TEL:021-53087333*738/743   
Fax:021-53082218
MP:0-1333-196-3736
ADR:FLAT B, 17/F, EAST TOWER, SHANGHAI HI-TECH KING WORLD
NO.668, BEIJING ROAD(E),SHANGHAI 21,CHINA 
:66817B
E-mail:[EMAIL PROTECTED]
WEBSITEWWW.UBI-TRANSPORT.COM

21,APRIL,2004

LIMA-UBI TRANSPORT INTERNATIONAL CO.,LTD.SHANGHAI BRANCHEFFECTIVE APRIL 01,2004.   
 

  ShangHai  ==West Coast of U.S.A.  
 

CARRIER 20' 40' 40'HBASE PORT DAYS ETD REMARK

LTP 191525502850LOS ANGELES17   OAKLAND15   MON 
COSCO   195026002925LOS ANGELES14   OAKLAND16   WED  
CSCL191525002850LOS ANGELES15   OAKLAND18   TUE 
191525002850LOS ANGELES15   THU 
191525002850LOS ANGELES15   SUN 
PO 195026002925LOS ANGELES14   MON
195026002925LOS ANGELES14   WED
COLUMBUS165022002450LOS ANGELES16   SUN
ZIM 180024002700LOS ANGELES14   TUE  
MAERSK  198526502980LOS ANGELES14   OAKLAND16   WED 
198526502980LOS ANGELES13   OAKLAND16   SUN 
NORASIA 165022002450LOS ANGELES16   FRA
HMM 240032003600LOS ANGELES16   OAKLAND15   MON 
NYK 240031503500LOS ANGELES14   SEATTLE19   WED 
MSC 165022002475LOS ANGELES17   THU  
SINO-TRANS  198526502980LOS ANGELES13   OAKLAND16   THU 
SINO-TRANS  206527503095LOS ANGELES13   OAKLAND16   SUN share 
with HANJIN   
  
  ShangHai  ==East Coast of U.S.A.  
 

CARRIER 20' 40' 40'HBASE PORT DAYS DATEREMARK

LTP 247533003700New York32  Norfolk32  Savannah29  Miami28 Baltimore32 
Charleston32 TUE 
HASTU   251533503750New York32  Savannah36 Baltimore34  WED 
251533503750New York32  Norfolk36 Charleston34  SUN 
ZIM 240032003600New York32  Norfolk32  Savannah29  Miami28 Baltimore32 
Charleston32 TUE
PO 240032003600New York32  Norfolk35  Savannah30  Miami28
CSCL240032003600New York32  Norfolk35  Savannah30  Miami28:+75/100/115 
 MON  
COSCO   275035503950New York28  Norfolk30  Savannah32   THU share 
with HANJIN
NYK 305040004500New York30  Norfolk32  Savannah28  Miami26:+75/100/115 
 THU 
MSC 240032003600New York  Norfolk  Savannah  Miami Baltimore 
Charleston Jacksonville Houston New OrleansTHU  

NOTE:1)the rate is subject to AMS:$25/BL   
 
 2)validity:2004/04/01
  
  SHANGHAI  == CANADA 

CARRIER 20' 40' 40'H45' 20' 40' 40'H45' 20' 40'
 40'HMARK
VANCOUERTORONTO /MONTREAL   
EDMONTON/CALGARY
CCNI158021752375223031253325   
 
CSCL16002100230022503075327522952930   
 2930
ZIM 160021002200265022503100320020502750   
 2850
HATSU   1675220024502800237531503400   
 

NOTE:1)the rate is subject to ACS:$25/BL   
 
 2)validity:2004/04/17

Shanghai  == Europe

CARRIER 20' 40' 40'HBASE PORT DAYS DATEREMARK
LTP 145028003000ANT29   HAM28ROT27  ThamesPort29 LeHavre   
ZeebruggeSUN 
CSCL150029003050ANT28   HAM26ROT27  Felixstowe25FRI
  
CSCL155031003250ANT29   HAM26ROT28  Lehavre24
Southampton30  TUE share with CMA
COSCO   160031003300ANT32   HAM30ROT26  Felixstowe27(Add 
USD100/BOX   SUN 
COSCO   160031003300HAM25   ROT27Lehavre30  Felixstowe27(Add 
USD100/BOX   THU share with HANJIN
ANL 150029003100ANT29   HAM26ROT28  Lehavre24  
 Southampton30:   +50/100/100TUE share with CMA
YML 160031003300ANT28   HAM27ROT25  Felixstowe30THU
 
  

[XFree86] Ocean Quotation In April--Fm:UBI-Sha/Brian

2004-04-20 Thread Brian/ubi-sha

LIMA-UBI TRANSPORT INTERNATIONAL CO.,LTD.SHANGHAI BRANCH

PIC:Brian Xue /  
TEL:021-53087333*738/743   
Fax:021-53082218
MP:0-1333-196-3736
ADR:FLAT B, 17/F, EAST TOWER, SHANGHAI HI-TECH KING WORLD
NO.668, BEIJING ROAD(E),SHANGHAI 21,CHINA 
:66817B
E-mail:[EMAIL PROTECTED]
WEBSITEWWW.UBI-TRANSPORT.COM

21,APRIL,2004

LIMA-UBI TRANSPORT INTERNATIONAL CO.,LTD.SHANGHAI BRANCHEFFECTIVE APRIL 01,2004.   
 

  ShangHai  ==West Coast of U.S.A.  
 

CARRIER 20' 40' 40'HBASE PORT DAYS ETD REMARK

LTP 191525502850LOS ANGELES17   OAKLAND15   MON 
COSCO   195026002925LOS ANGELES14   OAKLAND16   WED  
CSCL191525002850LOS ANGELES15   OAKLAND18   TUE 
191525002850LOS ANGELES15   THU 
191525002850LOS ANGELES15   SUN 
PO 195026002925LOS ANGELES14   MON
195026002925LOS ANGELES14   WED
COLUMBUS165022002450LOS ANGELES16   SUN
ZIM 180024002700LOS ANGELES14   TUE  
MAERSK  198526502980LOS ANGELES14   OAKLAND16   WED 
198526502980LOS ANGELES13   OAKLAND16   SUN 
NORASIA 165022002450LOS ANGELES16   FRA
HMM 240032003600LOS ANGELES16   OAKLAND15   MON 
NYK 240031503500LOS ANGELES14   SEATTLE19   WED 
MSC 165022002475LOS ANGELES17   THU  
SINO-TRANS  198526502980LOS ANGELES13   OAKLAND16   THU 
SINO-TRANS  206527503095LOS ANGELES13   OAKLAND16   SUN share 
with HANJIN   
  
  ShangHai  ==East Coast of U.S.A.  
 

CARRIER 20' 40' 40'HBASE PORT DAYS DATEREMARK

LTP 247533003700New York32  Norfolk32  Savannah29  Miami28 Baltimore32 
Charleston32 TUE 
HASTU   251533503750New York32  Savannah36 Baltimore34  WED 
251533503750New York32  Norfolk36 Charleston34  SUN 
ZIM 240032003600New York32  Norfolk32  Savannah29  Miami28 Baltimore32 
Charleston32 TUE
PO 240032003600New York32  Norfolk35  Savannah30  Miami28
CSCL240032003600New York32  Norfolk35  Savannah30  Miami28:+75/100/115 
 MON  
COSCO   275035503950New York28  Norfolk30  Savannah32   THU share 
with HANJIN
NYK 305040004500New York30  Norfolk32  Savannah28  Miami26:+75/100/115 
 THU 
MSC 240032003600New York  Norfolk  Savannah  Miami Baltimore 
Charleston Jacksonville Houston New OrleansTHU  

NOTE:1)the rate is subject to AMS:$25/BL   
 
 2)validity:2004/04/01
  
  SHANGHAI  == CANADA 

CARRIER 20' 40' 40'H45' 20' 40' 40'H45' 20' 40'
 40'HMARK
VANCOUERTORONTO /MONTREAL   
EDMONTON/CALGARY
CCNI158021752375223031253325   
 
CSCL16002100230022503075327522952930   
 2930
ZIM 160021002200265022503100320020502750   
 2850
HATSU   1675220024502800237531503400   
 

NOTE:1)the rate is subject to ACS:$25/BL   
 
 2)validity:2004/04/17

Shanghai  == Europe

CARRIER 20' 40' 40'HBASE PORT DAYS DATEREMARK
LTP 145028003000ANT29   HAM28ROT27  ThamesPort29 LeHavre   
ZeebruggeSUN 
CSCL150029003050ANT28   HAM26ROT27  Felixstowe25FRI
  
CSCL155031003250ANT29   HAM26ROT28  Lehavre24
Southampton30  TUE share with CMA
COSCO   160031003300ANT32   HAM30ROT26  Felixstowe27(Add 
USD100/BOX   SUN 
COSCO   160031003300HAM25   ROT27Lehavre30  Felixstowe27(Add 
USD100/BOX   THU share with HANJIN
ANL 150029003100ANT29   HAM26ROT28  Lehavre24  
 Southampton30:   +50/100/100TUE share with CMA
YML 160031003300ANT28   HAM27ROT25  Felixstowe30THU
 
  

[XFree86] Domain registration,coequal

2004-04-20 Thread Tory
Roland,#

Need affordable but reliable web hosting for only $5/month?

-800 MB Disk Space
-Unlimited email accounts
-FREE Shopping Cart... and much more! 

Please contact to take advantage of this new offer at  

http://ad.2hostpromotion101.com


cattlemen 


[XFree86] 3M Touch Screen Driver

2004-04-20 Thread dadembro
I have a multi-headed application which uses four touch screens
(3m Micro Touch).

The linux touch screen driver provided by 3m only supports a
single touch screen.  I have tried all the touch screen drivers
included with the Red Hat operating system without success.

Can someone point me to an XFree86 resource for developing a
touch screen driver that will support multi-headed
configurations, or better yet an existing driver that supports
the EXII, SMT3, MT3000, MT410, and MT510 controllers?

Thanks,
---d.dembrow

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


[XFree86] Checking my X server

2004-04-20 Thread Johnny Alberto Madrid Heredia
Dear Mark, 

I agree a copy of the file log in the directory /var, please if you want to 
check this file... 

_XSERVTransSocketINETCreateListener: ...SocketCreateListener() failed
_XSERVTransMakeAllCOTSServerListeners: server already running 

Fatal server error:
Cannot establish any listening sockets - Make sure an X server isn't already 
running 

When reporting a problem related to a server crash, please send
the full server output, not just the last messages.
This can be found in the log file /var/log/XFree86.0.log.
Please report problems to [EMAIL PROTECTED] 

-- 

Well, i introduce to you a file that i founded in my directory /root, is the 
file report.bug.tar.gz 



report.bug.gz
Description: Binary data


[XFree86] Web hosting deal,hydrangea

2004-04-20 Thread Stevie Cannon
Higgins,`

Need affordable but reliable web hosting for only $5/month?

-800 MB Disk Space
-Unlimited email accounts
-FREE Shopping Cart... and much more! 

Please contact us to take advantage of this new offer at  

http://ad.2hostpromotion101.com


insubstantial 


[XFree86] Your hosting account,carport

2004-04-20 Thread Dolly
Calloway,?

Need affordable but reliable web hosting for only $5/month?

-800 MB Disk Space
-Unlimited email accounts
-FREE Shopping Cart... and much more! 

Please contact us to take advantage of this new offer at  

http://ad.2hostpromotion101.com


copernicus 


[XFree86] Setting the default Xserver pointer acceleration

2004-04-20 Thread Sean Dickman

Hello:

I
need to turn off the mouse acceleration on all servers connected to our
KVM systems. For Linux I need to ensure that all Xservers that start
with pointer acceleration set to 0. This is because the window managers
I've tested (GNOME in particular) will override any xset commands that
I include in the .xinitrc and go back to the Xserver default pointer acceleration.

I've
looked into the source files and using the -a 0 option with
X was the only way I could find to set the default pointer acceleration
to 0. I've scoured the web for information on how to include this
parameter in a config file (XF86Config for instance), but have had no luck.
If there isn't a way to do this for all X sessions I'll modify the
startx to include the -a 0 parameter. I'd also fix xdm
to spawn with this parameter once I figure out how.

But,
I'd much prefer a configuration setting so that X would always start with
pointer acceleration disabled. Any ideas on how to do this?

Thanks,

Sean Dickman

[XFree86] Problem with my ati 7500

2004-04-20 Thread victor aguado
this LOG is what shows me to initiate for the first time my linux, this say:
 Fatal server error:
 no screens found
what I can cause I to repair it?
what I do?
Help me please!!!



XFree86 Version 4.3.0 (Red Hat Linux release: 4.3.0-2)
Release Date: 27 February 2003
X Protocol Version 11, Revision 0, Release 6.6
Build Operating System: Linux 2.4.20-3bigmem i686 [ELF]
Build Date: 27 February 2003
Build Host: porky.devel.redhat.com
	Before reporting problems, check http://www.XFree86.Org/
	to make sure that you have the latest version.
Module Loader present
OS Kernel: Linux version 2.4.20-8 ([EMAIL PROTECTED]) (gcc 
version 3.2.2 20030222 (Red Hat Linux 3.2.2-5)) #1 Thu Mar 13 17:54:28 EST 
2003
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: /var/log/XFree86.0.log, Time: Thu Mar 18 04:45:01 2004
(==) 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 la
(**) XKB: layout: la
(==) Keyboard: CustomKeycode disabled
(**) |--Input Device DevInputMice
(**) FontPath set to unix/:7100
(**) RgbPath set to /usr/X11R6/lib/X11/rgb
(==) ModulePath set to /usr/X11R6/lib/modules
(++) using VT number 7

(II) Open APM successful
(II) Module ABI versions:
	XFree86 ANSI C Emulation: 0.2
	XFree86 Video Driver: 0.6
	XFree86 XInput driver : 0.4
	XFree86 Server Extension : 0.2
	XFree86 Font Renderer : 0.4
(II) Loader running on linux
(II) LoadModule: bitmap
(II) Loading /usr/X11R6/lib/modules/fonts/libbitmap.a
(II) Module bitmap: vendor=The XFree86 Project
	compiled for 4.3.0, module version = 1.0.0
	Module class: XFree86 Font Renderer
	ABI class: XFree86 Font Renderer, version 0.4
(II) Loading font Bitmap
(II) LoadModule: pcidata
(II) Loading /usr/X11R6/lib/modules/libpcidata.a
(II) Module pcidata: vendor=The XFree86 Project
	compiled for 4.3.0, module version = 1.0.0
	ABI class: XFree86 Video Driver, version 0.6
(II) PCI: Probing config type using method 1
(II) PCI: Config type is 1
(II) PCI: stages = 0x03, oldVal1 = 0x, mode1Res1 = 0x8000
(II) PCI: PCI scan (all values are in hex)
(II) PCI: 00:00:0: chip 8086,2530 card , rev 02 class 06,00,00 hdr 
00
(II) PCI: 00:01:0: chip 8086,2532 card , rev 02 class 06,04,00 hdr 
01
(II) PCI: 00:1e:0: chip 8086,244e card , rev 04 class 06,04,00 hdr 
01
(II) PCI: 00:1f:0: chip 8086,2440 card , rev 04 class 06,01,00 hdr 
80
(II) PCI: 00:1f:1: chip 8086,244b card 8086,4732 rev 04 class 01,01,80 hdr 
00
(II) PCI: 00:1f:2: chip 8086,2442 card 8086,4732 rev 04 class 0c,03,00 hdr 
00
(II) PCI: 00:1f:3: chip 8086,2443 card 8086,4732 rev 04 class 0c,05,00 hdr 
00
(II) PCI: 00:1f:4: chip 8086,2444 card 8086,4732 rev 04 class 0c,03,00 hdr 
00
(II) PCI: 01:00:0: chip 1002,5157 card 1002,0f2a rev 00 class 03,00,00 hdr 
00
(II) PCI: 02:09:0: chip 1013,6005 card , rev 01 class 04,01,00 hdr 
00
(II) PCI: 02:0a:0: chip 10ec,8029 card 10ec,8029 rev 00 class 02,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,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 I/O range:
	[0] -1	0	0xc000 - 0xcfff (0x1000) IX[B]
(II) Bus 1 non-prefetchable memory range:
	[0] -1	0	0xff80 - 0xff8f (0x10) MX[B]
(II) Bus 1 prefetchable memory range:
	[0] -1	0	0xe690 - 0xf69f (0x1010) MX[B]
(II) PCI-to-PCI bridge:
(II) Bus 2: bridge is at (0:30:0), (0,2,2), BCTRL: 0x0006 (VGA_EN is 
cleared)
(II) Bus 2 I/O range:
	[0] -1	0	0xd000 - 0xd0ff (0x100) IX[B]
	[1] -1	0	0xd400 - 0xd4ff (0x100) IX[B]
	[2] -1	0	0xd800 - 0xd8ff (0x100) IX[B]
	[3] -1	0	0xdc00 - 0xdcff (0x100) IX[B]
(II) Bus 2 non-prefetchable memory range:
	[0] -1	0	0xff90 - 0xff9f (0x10) MX[B]
(II) Bus 2 prefetchable memory range:
	[0] -1	0	0xf6a0 - 0xf6af (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) ATI Technologies Inc Radeon RV200 QW [Radeon 7500] rev 0, 
Mem @ 0xe800/27, 0xff8f/16, I/O @ 0xc800/8, BIOS @ 0xff8c/17
(II) Addressable bus resource ranges are
	[0] -1	0	0x - 0x (0x0) MX[B]
	[1] -1	0	0x - 0x (0x1) IX[B]
(II) OS-reported resource ranges:
	[0] -1	0	0xffe0 

[XFree86] Midnight Commander SCO Unix

2004-04-20 Thread Netcity
Hello
We have established Midnight Commander in SCO Unix, but instead of standard borders 
and frameworks, symbols are shown? Could not help us with the decision of this 
problem? What it is necessary to establish fonts that Midnight Commander it was 
normally displayed in SCO Unix? 
And how correctly to adjust these fonts? 
Yours faithfully,
Kivenko Sergey 
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86


Re: [XFree86] Midnight Commander SCO Unix

2004-04-20 Thread Jay R. Ashworth
On Wed, Apr 21, 2004 at 07:16:42AM +0400, Netcity wrote:
 We have established Midnight Commander in SCO Unix, but instead of standard borders 
 and frameworks, symbols are shown? Could not help us with the decision of this 
 problem? What it is necessary to establish fonts that Midnight Commander it was 
 normally displayed in SCO Unix? 
 And how correctly to adjust these fonts? 

Your problem is likely not X related, but I'll answer it anyway.  Try

$ mapchan -n

Cheers,
-- jra
-- 
Jay R. Ashworth[EMAIL PROTECTED]
Member of the Technical Staff Baylink RFC 2100
The Suncoast Freenet The Things I Think
Tampa Bay, Floridahttp://baylink.pitas.com +1 727 647 1274

They had engineers in my day, too.  -- Perry Vance Nelson
___
XFree86 mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xfree86