Re: About box

2004-03-26 Thread Earle F. Philhower III
Howdy Harold,

At 01:49 PM 3/26/2004 -0500, Harold wrote:
Earle F. Philhower, III wrote:
...I can submit some simple code that does the overridden windowproc 
(makes the pointer a little hand when you've over the icon, too!), but 
don't want to push the issue since it's more of a style than substance issue...
By all means, please just commit code that does blue links in the dialog 
box.  I was aiming to do that and didn't see a way to do it the first time 
through.
Done, but for some reason the CVS commit list has put me back in the 
"requires moderator approval" class of user (the last change I did, the 
commit email came back just fine w/o moderator intervention AFAICT)...

-Earle F. Philhower, III
 [EMAIL PROTECTED]
 cdrlabel - ZipLabel - FlpLabel
 http://www.cdrlabel.com


Re: test case for clipboard hang?

2004-03-26 Thread Harold L Hunt II
Lev,

Lev Bishop wrote:
1) Reboot
2) start a fresh xwin, xterm, notepad, and put some text in the xterm and 
notepad
3) select, ^C copy from notepad, middle-click in xterm. it pastes 
successfully
4) select in xterm, leave the text reverse-videoed
5) ^V paste into notepad (successfully)
6) drop the selection in xterm (by left clicking somewhere)
7) ^V paste into notepad (successfully, even though the selection is 
dropped)
8) select a different piece of text in xterm.
9) drop the selection in xterm
10) ^V paste into notepad: it hangs for a few seconds and doesn't paste. 
(The paste menu option is NOT greyed out at this point).
The problem was that copying something in Notepad caused the clipboard 
integration manager to take ownership of both the PRIMARY and CLIPBOARD 
selections in X.  Selecting text in an xterm took ownership of the 
PRIMARY selection away from the clipboard manager.  Unselecting the text 
in xterm released ownership of the PRIMARY selection, but left the 
CLIPBOARD selection supposedly owned by the clipboard integration 
manager (which means it thought it had text to copy from Win32 to X, but 
it didn't).

I changed the behavior slightly to release ownership of the Win32 
clipboard and mark both X selections as unowned if one of the selections 
in X is released and the other is owned by the clipboard integration 
manager.  In fact, I should take this one further and release ownership 
of any selection owned by the clipboard integration manager when 
something is selected in X.  The current fix will probably work in 90% 
of cases for the time being.

I'd really appreciate some feedback on the new fix in 
XFree86-xserv-4.3.0-63, which should be hitting mirrors within a few hours.

Harold


Re: About box

2004-03-26 Thread Harold L Hunt II
Jack Tanner wrote:

Harold L Hunt II wrote:
[snip]

The about box's window title should be "About Cygwin/X".
Done

The tray menu's entry for the about box should be between "hide/show 
root window" and "exit"; it should not be the bottom-most entry. The 
entry itself should be called not "About..." but "About Cygwin/X".
I moved the entry because I was hitting it all the time by accident 
during my testing.  I'm leaving the entry as "About..." since that is 
what other apps that I have seen have.

Harold


Re: About box

2004-03-26 Thread Harold L Hunt II
Corinna Vinschen wrote:

On Mar 26 11:12, Harold L Hunt II wrote:

Yes, it seems inconsistent to me.

Cygwin/X is different than a port of package foo to Cygwin: Cygwin/X is 
an integral piece of Cygwin and runs *only* on Cygwin; it is much more 
important than a port.


I've moved the link to the Cygwin/X page up to be the second link in
the left menu bar.  This way, Cygwin/X got a sufficiently prominent
place in the menu and both pages have a more similar menu layout.
I like that, thank you Corinna.

Harold


Re: About box

2004-03-26 Thread Corinna Vinschen
On Mar 26 11:12, Harold L Hunt II wrote:
> Yes, it seems inconsistent to me.
> 
> Cygwin/X is different than a port of package foo to Cygwin: Cygwin/X is 
> an integral piece of Cygwin and runs *only* on Cygwin; it is much more 
> important than a port.

I've moved the link to the Cygwin/X page up to be the second link in
the left menu bar.  This way, Cygwin/X got a sufficiently prominent
place in the menu and both pages have a more similar menu layout.


Corinna

-- 
Corinna Vinschen  Please, send mails regarding Cygwin to
Cygwin Developermailto:[EMAIL PROTECTED]
Red Hat, Inc.


Re: auto-import failure for new libXt

2004-03-26 Thread Ralf Habacker
On Saturday 20 March 2004 23:32, Brian Ford wrote:
> I guess this is just a heads up since I don't have time to debug it
> right now, but with the latest XFree packages, I get a stream
> of error messages like the following when linking our apps:
>
> /home/ford/v9winsym/util/Failure_report/../../../vissym/util/Failure_report
>/failure_report.c:104: variable '_XtStrings' can't be auto-imported. Please
> read the
> documentation for ld's --enable-auto-import for details.
> failure_report.o(.text+0x203f): In function `main':
>
> This used to work, all be it with similar warnings.  Is it time to make a
> pass through the X headers, adding the proper export tags?  Ugh...

No, only make sure, that you are using -fdata-sections when compiling source 
and -Wl,--enable-runtime-pseudo-reloc when linking. 

BTW: You can find detailed informations about this topic in the ld info page 
(see Machine Dependent/Win32 section)

Ralf 



Re: test case for clipboard hang?

2004-03-26 Thread Ben Jackson
another test case: copy anything from nedit into any windows app... hangs
for 3 secs

- Original Message - 
From: "Harold L Hunt II" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, March 26, 2004 6:18 PM
Subject: Re: test case for clipboard hang?


> Lev,
>
> Lev Bishop wrote:
>
> > However, I've repeated the following procedure 3 times and it worked the
> > same each time -- probably not a minimal test case but it shows the
> > problem. I have to follow the steps precisely in order, though:
> >
> > 1) Reboot
> > 2) start a fresh xwin, xterm, notepad, and put some text in the xterm
and
> > notepad
> > 3) select, ^C copy from notepad, middle-click in xterm. it pastes
> > successfully
> > 4) select in xterm, leave the text reverse-videoed
> > 5) ^V paste into notepad (successfully)
> > 6) drop the selection in xterm (by left clicking somewhere)
> > 7) ^V paste into notepad (successfully, even though the selection is
> > dropped)
> > 8) select a different piece of text in xterm.
> > 9) drop the selection in xterm
> > 10) ^V paste into notepad: it hangs for a few seconds and doesn't paste.
> > (The paste menu option is NOT greyed out at this point).
>
> Yes, that is reproducible for me now.  I think I have some ideas as to
> what might be causing the problem.
>
> Harold
>



Re: About box

2004-03-26 Thread Lev Bishop
If it's nitpicky stylistic issues you're after

The X icon at the top left of both the About... dialog and the Cygwin/X
Exit? dialog is different to the X icon at the top left of other
programmes' windows, such as xterm. The one on the about and exit dialogs
is a little uglier than the other. I can provide screen captures if you
want to see this.

FWIW, I agree with all Jack's suggestions, especially copyright/version 
info, links to docs on the start menu.

But I think I'd much rather you spent your time fixing the clipboard bug 
before worrying about such minor things.

Lev



Re: About box

2004-03-26 Thread Harold L Hunt II
John,

John Morrison wrote:

From: Harold L Hunt II

By all means, please just commit code that does blue links in the dialog
box.  I was aiming to do that and didn't see a way to do it the first
time through.


Hi Harold,

Try these :)




While those do show the spirit of what I want to do, they are all in C++ 
and one even uses MFC :)  It would be pretty time consuming to decipher 
what is going on under the hood in those...

Harold


RE: About box

2004-03-26 Thread John Morrison
> From: Harold L Hunt II
>
> By all means, please just commit code that does blue links in the dialog
> box.  I was aiming to do that and didn't see a way to do it the first
> time through.

Hi Harold,

Try these :)






All the best,

J.



Confidentiality

2004-03-26 Thread Evangelina Martinez
Content-Type: text/plain;

charset="iso-1793-2"

Content-Transfer-Encoding: quoted-printable

Content-Description: constantinople boule particulate




http://www.myaffordablepills.com

Confidentiality 
Exceptionally low prices!

http://www.myaffordablepills.com?rid=3D1000

ABSOLUTELY NO OBLIGATION 




To expunge yourself from further mailings follow link below,
http://to.myaffordablepills.com




Re: About box

2004-03-26 Thread Harold L Hunt II
Earle F. Philhower, III wrote:

Howdy Harold,


Subject: Re: About box
..

URLs: not possible in a dialog, as far as I can tell since this was how 
I wanted to do it too.  Buttons were the only way I could do it.


I have the feeling this is going to turn into the same kind of style argument as the ICON resource. ;)

FWIW, there are multiple ways of implementing URLs in a dialog box.  I've done both in 
my own W32 apps:
 Owner-drawn buttons:  Your DialogProc() gets notifications to draw the button, so you 
can implement the underlined URL drawing there
 Override the WndProc for the buttons created by the dialog during InitDialog
 (Not very portable, needs COM working) Instantiate an ActiveX control
I can submit some simple code that does the overridden windowproc (makes the pointer a little hand when you've over the icon, too!), but don't want to push the issue since it's more of a style than substance issue...
By all means, please just commit code that does blue links in the dialog 
box.  I was aiming to do that and didn't see a way to do it the first 
time through.

Harold


Re: About box

2004-03-26 Thread Earle F. Philhower, III
Howdy Harold,

> Subject: Re: About box
..
> URLs: not possible in a dialog, as far as I can tell since this was how 
> I wanted to do it too.  Buttons were the only way I could do it.

I have the feeling this is going to turn into the same kind of style argument as the 
ICON resource. ;)

FWIW, there are multiple ways of implementing URLs in a dialog box.  I've done both in 
my own W32 apps:
 Owner-drawn buttons:  Your DialogProc() gets notifications to draw the button, so you 
can implement the underlined URL drawing there
 Override the WndProc for the buttons created by the dialog during InitDialog
 (Not very portable, needs COM working) Instantiate an ActiveX control

I can submit some simple code that does the overridden windowproc (makes the pointer a 
little hand when you've over the icon, too!), but don't want to push the issue since 
it's more of a style than substance issue...
-- 
-Earle F. Philhower, III
 [EMAIL PROTECTED]
 http://www.ziplabel.com



Re: uxterm from xterm-185-3 and xfontsel crashing when running under cygserver support

2004-03-26 Thread Corinna Vinschen
On Mar 26 11:18, Harold L Hunt II wrote:
> Corinna Vinschen wrote:
> >keen to debug it.  From what I can tell, the shmctl call works
> >fine.  After that call, the XFreeFont() function accesses a piece
> >of data, 512 bytes before the address of the buffer used as third
> >argument to shmctl().  This address (buffer - 512) results in the
> >SEGV.
> [...]
> I'll have to see if I can reproduce this and maybe make a debug compile 
> (takes about 2 hours, ugh).

Thanks you.  Just a correction:  I misinterpreted the address by 1 hex
digit.  The address is 32 bytes before the buffer, not 512 bytes, sorry.


Corinna

-- 
Corinna Vinschen  Please, send mails regarding Cygwin to
Cygwin Developermailto:[EMAIL PROTECTED]
Red Hat, Inc.


Re: test case for clipboard hang?

2004-03-26 Thread Harold L Hunt II
Lev,

Lev Bishop wrote:

However, I've repeated the following procedure 3 times and it worked the
same each time -- probably not a minimal test case but it shows the
problem. I have to follow the steps precisely in order, though:
1) Reboot
2) start a fresh xwin, xterm, notepad, and put some text in the xterm and 
notepad
3) select, ^C copy from notepad, middle-click in xterm. it pastes 
successfully
4) select in xterm, leave the text reverse-videoed
5) ^V paste into notepad (successfully)
6) drop the selection in xterm (by left clicking somewhere)
7) ^V paste into notepad (successfully, even though the selection is 
dropped)
8) select a different piece of text in xterm.
9) drop the selection in xterm
10) ^V paste into notepad: it hangs for a few seconds and doesn't paste. 
(The paste menu option is NOT greyed out at this point).
Yes, that is reproducible for me now.  I think I have some ideas as to 
what might be causing the problem.

Harold


Re: About box

2004-03-26 Thread Harold L Hunt II
Rob Foehl wrote:

On Fri, 26 Mar 2004, Jack Tanner wrote:
[snip]

I agree with all of these points, some moreso than others..  URLs
definitely shouldn't be represented as buttons, as it's inconsistent with
just about every other user interface out there (across multiple
platforms)..  The about/exit order in the menu is also somewhat
significant, most applications where an 'exit' option is useful place it
at the bottom of the tray menu.
URLs: not possible in a dialog, as far as I can tell since this was how 
I wanted to do it too.  Buttons were the only way I could do it.

About/Exit order: Like I said, I modeled it after an app written by 
Microsoft and I'm not going to change it until people have flammed each 
other to death on this one.  I hate nothing more than to have three 
releases in a row where I release something as foo, change it to bar, 
then change it back to foo because more people complained about it being 
bar than foo.

Harold


Re: About box

2004-03-26 Thread Harold L Hunt II
Jack Tanner wrote:

Harold L Hunt II wrote:

Okay, I did it myself.  We now have an About box that can be opened 
from the tray icon menu.  The About box contains four buttons that 
link to our website (x.cygwin.com), our User's Guide on the website, 
our FAQ on the website, and our ChangeLog that is installed locally 
with the XFree86-xserv package.


My apologies for saying this AFTER you did the work... The about box is 
wrong. (Sorry, sorry, hold the flames.)

These links really belong in the Start menu (ideally under 
Programs\Cygwin, but they'd also be acceptable under Programs\Cygwin/X). 
This way, the links being URLs and links to .html files, they 
automatically inherit the icon of the default web browser, making it 
obvious what they point to.
I disagree, at least for the time being.  The reason is that we do not 
currently have such links being installed to the Start menu.  We have 
the X-start-menu-icons package, but that is not sophisticated enough to 
create links to files that should be opened with cygstart.

In short, this solution took 6 hours, the alternative would take more 
like 30.  I've not got 30 hours to spend, so it is going to stay like it 
is unless someone sends a comprehensive patch that fixes *everything* 
related to this desire.

What should really be in the about box is something like this:

[logo]Cygwin/X X11R6 Server
Copyright blah
Licensed under GPL (use standard short FSF blurb here)
Installed Packages (xserv 4.3.0-62, xterm 185-4, etc.)
Visit us at http://x.cygwin.com. (Make URL blue, underlined, and a 
link to the site).
Yeah, URLs... tried it in a dialog box before?  I spent about 4 hours 
researching it and could only find that you can have one font for the 
whole box.  Unless we make this a true window it probably isn't going to 
be possible.

The about box's window title should be "About Cygwin/X".

The tray menu's entry for the about box should be between "hide/show 
root window" and "exit"; it should not be the bottom-most entry. The 
entry itself should be called not "About..." but "About Cygwin/X".
This is the sort of thing that really pisses me off.  I modeled this 
after the SQL Server tray icon.  It has "About..." as the bottom entry 
and "Exit" above that.  I basically flipped a coin and went with it 
because I knew that no matter which way I ordered it somebody would 
bitch about it not being right.  I'll let the mailing list fight amongst 
themselves until a clear winner is chosen, until then I'm not touching it.

Thanks for all your hard work, Harold et al! Here's hoping you get that 
clipboard bug soon.
Thanks.

Harold


Re: About box

2004-03-26 Thread Rob Foehl
On Fri, 26 Mar 2004, Jack Tanner wrote:

> Harold L Hunt II wrote:
> > Okay, I did it myself.  We now have an About box that can be opened from
> > the tray icon menu.  The About box contains four buttons that link to
> > our website (x.cygwin.com), our User's Guide on the website, our FAQ on
> > the website, and our ChangeLog that is installed locally with the
> > XFree86-xserv package.
>
> My apologies for saying this AFTER you did the work... The about box is
> wrong. (Sorry, sorry, hold the flames.)
>
> These links really belong in the Start menu (ideally under
> Programs\Cygwin, but they'd also be acceptable under Programs\Cygwin/X).
> This way, the links being URLs and links to .html files, they
> automatically inherit the icon of the default web browser, making it
> obvious what they point to.
>
> What should really be in the about box is something like this:
>
> [logo]Cygwin/X X11R6 Server
>   Copyright blah
>   Licensed under GPL (use standard short FSF blurb here)
>   Installed Packages (xserv 4.3.0-62, xterm 185-4, etc.)
>   Visit us at http://x.cygwin.com. (Make URL blue, underlined, and a link
> to the site).
>
> The about box's window title should be "About Cygwin/X".
>
> The tray menu's entry for the about box should be between "hide/show
> root window" and "exit"; it should not be the bottom-most entry. The
> entry itself should be called not "About..." but "About Cygwin/X".

I agree with all of these points, some moreso than others..  URLs
definitely shouldn't be represented as buttons, as it's inconsistent with
just about every other user interface out there (across multiple
platforms)..  The about/exit order in the menu is also somewhat
significant, most applications where an 'exit' option is useful place it
at the bottom of the tray menu.

My two cents..

-Rob


Re: About box

2004-03-26 Thread Jack Tanner
Harold L Hunt II wrote:
Okay, I did it myself.  We now have an About box that can be opened from 
the tray icon menu.  The About box contains four buttons that link to 
our website (x.cygwin.com), our User's Guide on the website, our FAQ on 
the website, and our ChangeLog that is installed locally with the 
XFree86-xserv package.
My apologies for saying this AFTER you did the work... The about box is 
wrong. (Sorry, sorry, hold the flames.)

These links really belong in the Start menu (ideally under 
Programs\Cygwin, but they'd also be acceptable under Programs\Cygwin/X). 
This way, the links being URLs and links to .html files, they 
automatically inherit the icon of the default web browser, making it 
obvious what they point to.

What should really be in the about box is something like this:

[logo]	Cygwin/X X11R6 Server
	Copyright blah
	Licensed under GPL (use standard short FSF blurb here)
	Installed Packages (xserv 4.3.0-62, xterm 185-4, etc.)
	Visit us at http://x.cygwin.com. (Make URL blue, underlined, and a link 
to the site).

The about box's window title should be "About Cygwin/X".

The tray menu's entry for the about box should be between "hide/show 
root window" and "exit"; it should not be the bottom-most entry. The 
entry itself should be called not "About..." but "About Cygwin/X".

Thanks for all your hard work, Harold et al! Here's hoping you get that 
clipboard bug soon.

-JT



Re: uxterm from xterm-185-3 and xfontsel crashing when running under cygserver support

2004-03-26 Thread Harold L Hunt II
Corinna Vinschen wrote:

On Mar 26 09:23, Harold L Hunt II wrote:

Corinna Vinschen wrote:

Other than that, I'm not at all familar with that stuff.  How can I
set up a minimal test system, so that it uses the bigfont extension
and, especially, IPC?  Yesterday I just started cygserver, XWin and
uxterm, and it doesn't use IPC by default, apparently.
As long as you have cygserver started and CYGWIN=server defined in a way 


Ouch.  I started XWin from Windows Explorer, not thinking about
setting CYGWIN=server at all.
Yeah, I thought I was going to get yelled at for mentioning that :)

I've build my own xterm to have a debug version.  Unfortunately,
it doesn't happen in xterm, but in cygX11-6.dll, in function
XFreeFont(), right after shmctl(id, IPC_STAT, buf) has been called.
I don't have a debug version of cygX11-6 and I'm also not exactly
keen to debug it.  From what I can tell, the shmctl call works
fine.  After that call, the XFreeFont() function accesses a piece
of data, 512 bytes before the address of the buffer used as third
argument to shmctl().  This address (buffer - 512) results in the
SEGV.
Could you have another look into this?  Actually I don't see anything
wrong with the semctl call, it even checks the buffer pointer for
being accessible.
I'll have to see if I can reproduce this and maybe make a debug compile 
(takes about 2 hours, ugh).

Harold


Re: uxterm from xterm-185-3 and xfontsel crashing when running under cygserver support

2004-03-26 Thread Corinna Vinschen
On Mar 26 09:23, Harold L Hunt II wrote:
> Corinna Vinschen wrote:
> >Other than that, I'm not at all familar with that stuff.  How can I
> >set up a minimal test system, so that it uses the bigfont extension
> >and, especially, IPC?  Yesterday I just started cygserver, XWin and
> >uxterm, and it doesn't use IPC by default, apparently.
> 
> As long as you have cygserver started and CYGWIN=server defined in a way 

Ouch.  I started XWin from Windows Explorer, not thinking about
setting CYGWIN=server at all.

I've build my own xterm to have a debug version.  Unfortunately,
it doesn't happen in xterm, but in cygX11-6.dll, in function
XFreeFont(), right after shmctl(id, IPC_STAT, buf) has been called.
I don't have a debug version of cygX11-6 and I'm also not exactly
keen to debug it.  From what I can tell, the shmctl call works
fine.  After that call, the XFreeFont() function accesses a piece
of data, 512 bytes before the address of the buffer used as third
argument to shmctl().  This address (buffer - 512) results in the
SEGV.

Could you have another look into this?  Actually I don't see anything
wrong with the semctl call, it even checks the buffer pointer for
being accessible.


Corinna

-- 
Corinna Vinschen  Please, send mails regarding Cygwin to
Cygwin Developermailto:[EMAIL PROTECTED]
Red Hat, Inc.


Re: About box

2004-03-26 Thread Harold L Hunt II
Christopher Faylor wrote:

On Fri, Mar 26, 2004 at 11:04:27AM -0500, Christopher Faylor wrote:

On Fri, Mar 26, 2004 at 10:24:41AM -0500, Harold L Hunt II wrote:

Christopher Faylor wrote:


On Thu, Mar 25, 2004 at 10:44:42PM -0500, Harold L Hunt II wrote:


Okay, I did it myself.  We now have an About box that can be opened from 
the tray icon menu.  The About box contains four buttons that link to 
our website (x.cygwin.com), our User's Guide on the website, our FAQ on 
the website, and our ChangeLog that is installed locally with the 
XFree86-xserv package.

I would like to modify this slightly in the future to check if the 
User's Guide and FAQ have been installed locally (via the cygwin-x-doc 
package) and to open those local documents instead of going out to the 
web everytime.

The About box is neat, check it out in XFree86-xserv-4.3.0-62 when it 
hits mirrors soon.


Sounds cool.

Any chance that it could also contain a link to the main cygwin web
site, too?
Yeah, I think that could be done.

I was also just talking to some people that frequently visit the Cygwin 
web site, but had no idea that the Cygwin/X web site even existed.  It 
seems that it would be useful to add a short blurb on the main Cygwin 
site that says something like "Try Cygwin/X for a full-featured free X 
Server for Windows including clipboard integration, desktop integration, 
and more".  I don't want to add that right away, but do you see a 
problem with my doing so in the near future?
There is a link at the side to "X11".  If you think that's unclear then change
it to something clearer.  If you want to advertise releases in the news page
that's fine, too.
I don't think special dispensation for the Cygwin/X project is appropriate
for the main page.


And, if this seems inconsistent with my asking for a cygwin link in the About
box, then feel free to ignore my request...
Yes, it seems inconsistent to me.

Cygwin/X is different than a port of package foo to Cygwin: Cygwin/X is 
an integral piece of Cygwin and runs *only* on Cygwin; it is much more 
important than a port.

The reason I brought it up is that I had three people telling me they 
had been using Cygwin for years and never even thought that a Cygwin/X 
page existed.  They all requested that a blurb be put on the main Cygwin 
page so that people will actually see it.  Their complaint about the 
link in the left bar is that it looked like just another part of the 
Cygwin pages, not an entire web site by itself.

Harold



Re: About box

2004-03-26 Thread Christopher Faylor
On Fri, Mar 26, 2004 at 11:04:27AM -0500, Christopher Faylor wrote:
>On Fri, Mar 26, 2004 at 10:24:41AM -0500, Harold L Hunt II wrote:
>>Christopher Faylor wrote:
>>
>>>On Thu, Mar 25, 2004 at 10:44:42PM -0500, Harold L Hunt II wrote:
>>>
Okay, I did it myself.  We now have an About box that can be opened from 
the tray icon menu.  The About box contains four buttons that link to 
our website (x.cygwin.com), our User's Guide on the website, our FAQ on 
the website, and our ChangeLog that is installed locally with the 
XFree86-xserv package.

I would like to modify this slightly in the future to check if the 
User's Guide and FAQ have been installed locally (via the cygwin-x-doc 
package) and to open those local documents instead of going out to the 
web everytime.

The About box is neat, check it out in XFree86-xserv-4.3.0-62 when it 
hits mirrors soon.
>>>
>>>
>>>Sounds cool.
>>>
>>>Any chance that it could also contain a link to the main cygwin web
>>>site, too?
>>
>>Yeah, I think that could be done.
>>
>>I was also just talking to some people that frequently visit the Cygwin 
>>web site, but had no idea that the Cygwin/X web site even existed.  It 
>>seems that it would be useful to add a short blurb on the main Cygwin 
>>site that says something like "Try Cygwin/X for a full-featured free X 
>>Server for Windows including clipboard integration, desktop integration, 
>>and more".  I don't want to add that right away, but do you see a 
>>problem with my doing so in the near future?
>
>There is a link at the side to "X11".  If you think that's unclear then change
>it to something clearer.  If you want to advertise releases in the news page
>that's fine, too.
>
>I don't think special dispensation for the Cygwin/X project is appropriate
>for the main page.

And, if this seems inconsistent with my asking for a cygwin link in the About
box, then feel free to ignore my request...

cgf


Re: About box

2004-03-26 Thread Christopher Faylor
On Fri, Mar 26, 2004 at 10:24:41AM -0500, Harold L Hunt II wrote:
>Christopher Faylor wrote:
>
>>On Thu, Mar 25, 2004 at 10:44:42PM -0500, Harold L Hunt II wrote:
>>
>>>Okay, I did it myself.  We now have an About box that can be opened from 
>>>the tray icon menu.  The About box contains four buttons that link to 
>>>our website (x.cygwin.com), our User's Guide on the website, our FAQ on 
>>>the website, and our ChangeLog that is installed locally with the 
>>>XFree86-xserv package.
>>>
>>>I would like to modify this slightly in the future to check if the 
>>>User's Guide and FAQ have been installed locally (via the cygwin-x-doc 
>>>package) and to open those local documents instead of going out to the 
>>>web everytime.
>>>
>>>The About box is neat, check it out in XFree86-xserv-4.3.0-62 when it 
>>>hits mirrors soon.
>>
>>
>>Sounds cool.
>>
>>Any chance that it could also contain a link to the main cygwin web
>>site, too?
>
>Yeah, I think that could be done.
>
>I was also just talking to some people that frequently visit the Cygwin 
>web site, but had no idea that the Cygwin/X web site even existed.  It 
>seems that it would be useful to add a short blurb on the main Cygwin 
>site that says something like "Try Cygwin/X for a full-featured free X 
>Server for Windows including clipboard integration, desktop integration, 
>and more".  I don't want to add that right away, but do you see a 
>problem with my doing so in the near future?

There is a link at the side to "X11".  If you think that's unclear then change
it to something clearer.  If you want to advertise releases in the news page
that's fine, too.

I don't think special dispensation for the Cygwin/X project is appropriate
for the main page.

cgf


Re: XWin 4.3.0-50 crashes with -multiwindow (ping Earle)

2004-03-26 Thread Harold L Hunt II
Earle,

Earle F. Philhower III wrote:

Howdy Harold,

At 12:00 AM 3/26/2004 -0500, Harold wrote:

Nope, not going to beat you to it.  This issue is what I was referring 
to when I said that Earle should probably look at the PixmapBytePad 
patch to make sure it was complete.  :)


There's a saying I've learned from my verification engineers:  If you 
don't test it, it won't work!

WinXP doesn't list 24bpp mode anymore, VICE doesn't compile under cygwin 
w/o work, and I'm not likely to shell out $$M to buy an Oracle DB. :)  
To top it off, freedesktop's CVS /tmp disk is out of space so CVS isn't 
working.  Ouch!

I did some unit-testing of the undocumented BitsPerPixel() macro, and it 
seems to be what's needed.  Changing line 74 to
 >  effXBPP = BitsPerPixel(pixmap->drawable.depth);
will set it to 32 when given a 24-bpp drawable, giving a pixel stride of 
4 bytes as desired.  It also doesn't break any of the 1-, 16-, or 32-bit 
icons that I was able to test (the return values of BPP() match expected 
there too), but I still have no 24-bpp icons to try.

I'll try the commit again tomorrow morning, but if Fabrizio wants to 
beat up his local copy before then and report back it'd be appreciated!
Okay, sounds good to me.

Also, I think you mentioned that 1 bit pixmaps were messed up.  If 
that is still the case, it is because the GDI DIB 1 bit bitmap has a 
reversed byte order.  So, you'll have to swap the byte order for 1 bit 
pixmaps when you convert them.  Give that a try and let me know if it 
works... ping me as soon as you look into it cause I'm really 
wondering if that will fix it.


This was way back when I was first writing it, IIRC.  I don't think I've 
seen any 1-bit icon problems or heard of any (except for the complaint 
that xcalc's scaled icon was ugly) since.  If someone has a specific 
problem I'll look into it, but 1-bit is working 100% AFAIK...
Huh... okay.  I thought the xcalc icon problem was probably due to byte 
ordering, but if it is just scaling then my suggestion obviously has 
nothing to do with it.  I was going to suggest writing a super-duper 
anti-aliasing icon scaler, but it would seem like a waste of effort for 
1 bit icons.  There are so many other things that would not be a waste 
of effort...

Harold


Re: About box

2004-03-26 Thread Harold L Hunt II
Christopher Faylor wrote:

On Thu, Mar 25, 2004 at 10:44:42PM -0500, Harold L Hunt II wrote:

Okay, I did it myself.  We now have an About box that can be opened from 
the tray icon menu.  The About box contains four buttons that link to 
our website (x.cygwin.com), our User's Guide on the website, our FAQ on 
the website, and our ChangeLog that is installed locally with the 
XFree86-xserv package.

I would like to modify this slightly in the future to check if the 
User's Guide and FAQ have been installed locally (via the cygwin-x-doc 
package) and to open those local documents instead of going out to the 
web everytime.

The About box is neat, check it out in XFree86-xserv-4.3.0-62 when it 
hits mirrors soon.


Sounds cool.

Any chance that it could also contain a link to the main cygwin web
site, too?
Yeah, I think that could be done.

I was also just talking to some people that frequently visit the Cygwin 
web site, but had no idea that the Cygwin/X web site even existed.  It 
seems that it would be useful to add a short blurb on the main Cygwin 
site that says something like "Try Cygwin/X for a full-featured free X 
Server for Windows including clipboard integration, desktop integration, 
and more".  I don't want to add that right away, but do you see a 
problem with my doing so in the near future?

Harold


Re: Pathnames for X server app-defaults etc.

2004-03-26 Thread tulitanssi
Hi,

I've had similar problems. I noticed that the problems existed due to lack of 
permissions. When I set permissions (on the Windows side) as Full Control to Everyone, 
the deletion of old installation and the re-installation of new version worked.

It seems that permissions of the C:\cygwin directory (the install directory) should be 
set as Full Control to Everyone. Otherwise it is easy to get problems on 
re-installation.

Cheers,
Tuli

..
 MTV3 Laajakaista - Hauskemman elämän puolesta.
 http://www.mtv3.fi/liittyma/hankinta/laajakaista/



Re: Pathnames for X server app-defaults etc.

2004-03-26 Thread Harold L Hunt II
Ruth Ivimey-Cook wrote:

On Thu, 2004-03-25 at 16:39, Harold L Hunt II wrote:

Please look at my message about your installation being out of date.

Harold


 I had previously tried a setup.exe 'reinstall' and also uninstalling
xserv and installing it from the easynet.be mirror, neither worked.
 However, last night I tried deleting everything cygwin - not as easy as
it sounds as there are some 'undeletable' link files - and reinstalling
it all from uni-erlangen.de.
This worked. So I must conclude that mirror.ac.uk at least, and possibly
easynet.be, are poor mirror choices :-(
Both of those mirrors look to be up to date to me.

It would be rather nice if setup had a way of verifying that the
packages it loads are self-consistent.
No, I think your 'undeletable' link files is a clue... there had to be 
something messed up with your installation.  It probably won't happen 
again since you deleted and reinstalled.

Harold


Re: uxterm from xterm-185-3 and xfontsel crashing when running under cygserver support

2004-03-26 Thread Harold L Hunt II
Corinna Vinschen wrote:
On Mar 25 13:38, Harold L Hunt II wrote:

Volker,

Using the Cygwin Way-Back Machine 
(http://cygwin.get-software.com/release/XFree86/XFree86-xserv/)
I have retrieved a copy of XFree86-xserv-4.3.0-55 which is immediately 
prior to the change from cygserver to cygipc.  I would like you to test 
this version and verify whether you can or cannot reproduce the problem 
with cygipc.  It is always possible that this is just a bug in the big 
font extension that we have not noticed before.

To retrieve the -55 version, point setup.exe to:

http://www.egr.msu.edu/~huntharo/cygwin_old/


That's a good idea, thank you.
No problem.

Other than that, I'm not at all familar with that stuff.  How can I
set up a minimal test system, so that it uses the bigfont extension
and, especially, IPC?  Yesterday I just started cygserver, XWin and
uxterm, and it doesn't use IPC by default, apparently.
As long as you have cygserver started and CYGWIN=server defined in a way 
that XWin can see it from however you are starting it, then you should 
*not* see the following around line 40 in /tmp/XWin.log:


MIT-SHM extension disabled due to lack of kernel support
XFree86-Bigfont extension local-client optimization disabled due to lack 
of shared memory support in the kernel


If those lines are missing then shared memory is being used.  There is 
no positive indication in the log that shared memory is being used, just 
the absence of the negative indication.

Hope that helps,

Harold


4.40.59 Xfree with Windows XP Home

2004-03-26 Thread Aristotle
I just got a new laptop and I don't seem to be able to get my remote login
working on XP home.  My server is running Fedora Core1, and it totally up to
date.  XDM/XDMCP is enabled and running.  When I try to start a remote
login/session, my local cygwin xserver starts, but I ever get a login window
locally.  I have also made sure to disable the "personal firewall" for my
network connections, so I'm a bit stumped at this point.  Does anyone know
how to get this working, I sure I'm missing something obvious, I think it's
my laptop configuration, but I'm not sure where to look.

 
Here is my local log file, I hope it can help.


 

Welcome to the XWin X Server

Vendor: The Cygwin/X Project

Release: 4.3.0.59

Contact: [EMAIL PROTECTED]

 

XWin was started with the following command line:

 

xwin -query 10.7.45.73 

 

ddxProcessArgument - Initializing default screens

winInitializeDefaultScreens - w 1440 h 900

winInitializeDefaultScreens - Returning

OsVendorInit - Creating bogus screen 0

_XSERVTransmkdir: Owner of /tmp/.X11-unix should be set to root

winValidateArgs - g_iNumScreens: 1 iMaxConsecutiveScreen: 1

winDetectSupportedEngines - Windows NT/2000/XP

winDetectSupportedEngines - DirectDraw installed

winDetectSupportedEngines - DirectDraw4 installed

winDetectSupportedEngines - Returning, supported engines 0007

winScreenInit - dwWidth: 1440 dwHeight: 900

winSetEngine - Using Shadow DirectDraw NonLocking

winAdjustVideoModeShadowDDNL - Using Windows display depth of 32 bits per
pixel

winCreateBoundingWindowWindowed - User w: 1440 h: 900

winCreateBoundingWindowWindowed - Current w: 1440 h: 900

winAdjustForAutoHide - Original WorkArea: 0 0 866 1440

winAdjustForAutoHide - Adjusted WorkArea: 0 0 866 1440

winCreateBoundingWindowWindowed - WindowClient w 1434 h 834 r 1434 l 0 b 834
t 0

winCreateBoundingWindowWindowed -  Returning

winCreatePrimarySurfaceShadowDDNL - Creating primary surface

winCreatePrimarySurfaceShadowDDNL - Created primary surface

winCreatePrimarySurfaceShadowDDNL - Attached clipper to primary surface

winAllocateFBShadowDDNL - lPitch: 5736

winAllocateFBShadowDDNL - Created shadow pitch: 5736

winAllocateFBShadowDDNL - Created shadow stride: 1434

winFinishScreenInitFB - Masks: 00ff ff00 00ff

winInitVisualsShadowDDNL - Masks 00ff ff00 00ff BPRGB 8 d 24 bpp
32

winCreateDefColormap - Deferring to fbCreateDefColormap ()

winFinishScreenInitFB - returning

winScreenInit - returning

InitOutput - Returning.

MIT-SHM extension disabled due to lack of kernel support

XFree86-Bigfont extension local-client optimization disabled due to lack of
shared memory support in the kernel

(--) Setting autorepeat to delay=500, rate=31

(--) winConfigKeyboard - Layout: "0409" (0409) 

(EE) Keyboardlayout "US" (0409) is unknown

Rules = "xfree86" Model = "pc101" Layout = "us" Variant = "(null)" Options =
"(null)"

Could not init font path element /usr/X11R6/lib/X11/fonts/CID/, removing
from list!

winPointerWarpCursor - Discarding first warp: 717 417

winBlockHandler - Releasing pmServerStarted

winBlockHandler - pthread_mutex_unlock () returned

XDM: too many retransmissions

-

Aristotle B. Allen

Sr. Engineer

Synchronoss Technologies Inc.

610.814.5598

 



-
Aristotle B. Allen
Sr. Engineer
Synchronoss Technologies Inc.
610.814.5598



Antwort: test case for clipboard hang?

2004-03-26 Thread Andreas_Vogler
Hi,

>1) Reboot
>2) start a fresh xwin, xterm, notepad, and put some text in the xterm and 

>notepad
>3) select, ^C copy from notepad, middle-click in xterm. it pastes 
>successfully
>4) select in xterm, leave the text reverse-videoed
>5) ^V paste into notepad (successfully)
>6) drop the selection in xterm (by left clicking somewhere)
>7) ^V paste into notepad (successfully, even though the selection is 
>dropped)
>8) select a different piece of text in xterm.
>9) drop the selection in xterm
>10) ^V paste into notepad: it hangs for a few seconds and doesn't paste. 
>(The paste menu option is NOT greyed out at this point).

Its also  reproduceable here with Harolds docu, and I get another bug. 
After the 3 Sec hang in the notpad, some time late ca 1 min. The Mouse 
Curser disapears over the xterm, and when that happens, the xserver 
couldnt be stoped anymore, and somtimes the refresh of the xterm windows 
stops also  causing some wired effekts.


See you
Andreas





RE: Pathnames for X server app-defaults etc.

2004-03-26 Thread Dr.D.J.Picton

> Subject: RE: Pathnames for X server app-defaults etc.
> From: Ruth Ivimey-Cook <[EMAIL PROTECTED]>
> To: [EMAIL PROTECTED]
> Cc: "'Dr.D.J.Picton'" <[EMAIL PROTECTED]>
> Mime-Version: 1.0
> Date: Thu, 25 Mar 2004 16:39:42 +
> Content-Transfer-Encoding: 7bit
> X-Spam-Score: 0.0 (/)
> 
> On Thu, 2004-03-25 at 15:36, Alexander Gottwald wrote:
> > On Thu, 25 Mar 2004, Ruth Ivimey-Cook wrote:
> > The xserver is called XWin.exe. Maybe X is a custom script that starts the 
> > xserver with xdmcp parameters. The first lines of the log should contain
> > the commandline parameters. Unfortunately you stripped them

It seems to me that we are chasing red herrings here.  /usr/X11R6/X is
just a symbolic link to /usr/X11R6/Xwin.exe - they are one and the same!

I suspect that Ruth's problem is not quite the same as mine.  My X
server didn't crash; it just failed to find the application default files
and fell back on a default for the keyboard map, so that when I typed '#' on
my UK keyboard I got '\'.  Anyway, the symbolic links fixed the problems.
If the same symbolic links don't fix Ruth's problem, she probably needs to
look elsewhere.  Maybe the first thing to do is to reinstall the X11 packages.









Re: scalable fonts

2004-03-26 Thread Lev Bishop
Harold wrote:
> Don't know if that is related or not, but I would hope that you have the 
> latest libXft, fontconfig, and freetype2 packages installed. Let us 
> know.

I think I am up to date. Cygcheck reports:

libXft  2.1.6-1
libXft-devel2.1.6-1
libXft1 1.0.0-1
libXft2 2.1.6-1
libfontconfig-devel 2.2.2-1
libfontconfig1  2.2.2-1
libfreetype2-devel  2.1.5-1
libfreetype26   2.1.5-1

Full cygcheck -s -v -r output attached.

lev


Cygwin Win95/NT Configuration Diagnostics

Current System Time: Fri Mar 26 05:11:54 2004



Windows XP Home Edition Ver 5.1 Build 2600 Service Pack 1



Path:   C:\cygwin\usr\local\bin

C:\cygwin\bin

C:\cygwin\bin

.

C:\cygwin\bin

C:\cygwin\usr\X11R6\bin

c:\WINDOWS\system32

c:\WINDOWS

c:\WINDOWS\System32\Wbem

c:\Tcl\bin

c:\MATLABR11\bin

c:\Program Files\SSH Communications Security\SSH Secure Shell

c:\WINDOWS\System32\



Output from C:\cygwin\bin\id.exe (nontsec)

UID: 1007(Lev) GID: 513(None)

513(None)



Output from C:\cygwin\bin\id.exe (ntsec)

UID: 1007(Lev) GID: 513(None)

513(None)544(Administrators)  

545(Users)



SysDir: C:\WINDOWS\System32

WinDir: C:\WINDOWS



HOME = `C:\cygwin\home\Lev'

MAKE_MODE = `unix'

PWD = `/home/Lev'

USER = `Lev'



ALLUSERSPROFILE = `C:\Documents and Settings\All Users'

APPDATA = `C:\Documents and Settings\Lev\Application Data'

CLASSPATH = `"C:\Program Files\Java\j2re1.4.2_03\lib\ext\QTJava.zip"'

COMMONPROGRAMFILES = `C:\Program Files\Common Files'

COMPUTERNAME = `RAAJSGDH'

COMSPEC = `C:\WINDOWS\system32\cmd.exe'

CVS_RSH = `/bin/ssh'

CYGWIN_ROOT = `\cygwin'

DISPLAY = `127.0.0.1:0.0'

HOMEDRIVE = `C:'

HOMEPATH = `\Documents and Settings\Lev'

HOSTNAME = `raajsgdh'

LOGNAME = `Lev'

LOGONSERVER = `\\RAAJSGDH'

LS_COLORS = 
`no=00:fi=00:di=01;34:ln=01;36:pi=40;33:so=01;35:bd=40;33;01:cd=40;33;01:ex=01;33:*~=05;31:*.mtxt=05;31:*.ndx=05;31:*.cmd=01;32:*.exe=01;32:*.com=01;32:*.btm=01;32:*.bat=01;32:*.c=01;36:*.h=01;36:*.pl=01;36:*.pm=01;36:*.cgi=01;36:*.java=01;36:*.html=01;36:*.tar=01;31:*.tgz=01;31:*.gz=01;31:*.tgz=01;31:*.bz2=01;31:*.arj=01;31:*.taz=01;31:*.lzh=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.gz=01;31:*.jpg=01;35:*.jpeg=01;35:*.JPG=01;35:*.gif=01;35:*.GIF=01;35:*.bmp=01;35:*.BMP=01;35:*.xbm=01;35:*.ppm=01;35:*.xpm=01;35:*.tif=01;35:'

MANPATH = `:/usr/X11R6/man:/usr/ssl/man'

NUMBER_OF_PROCESSORS = `1'

OLDPWD = `/usr/share/info'

OS = `Windows_NT'

PATHEXT = `.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.tcl'

PKG_CONFIG_PATH = `/usr/X11R6/lib/pkgconfig'

PROCESSOR_ARCHITECTURE = `x86'

PROCESSOR_IDENTIFIER = `x86 Family 6 Model 11 Stepping 1, GenuineIntel'

PROCESSOR_LEVEL = `6'

PROCESSOR_REVISION = `0b01'

PROGRAMFILES = `C:\Program Files'

PROMPT = `$P$G'

PS1 = `\[\033]0;\w\007

[EMAIL PROTECTED] \[\033[33m\w\033[0m\]

$ '

QTJAVA = `"C:\Program Files\Java\j2re1.4.2_03\lib\ext\QTJava.zip"'

SESSIONNAME = `Console'

SHLVL = `1'

SSH_AGENT_PID = `2604'

SSH_AUTH_SOCK = `/tmp/ssh-lmbQBn2528/agent.2528'

SYSTEMDRIVE = `C:'

SYSTEMROOT = `C:\WINDOWS'

TEMP = `c:\DOCUME~1\Lev\LOCALS~1\Temp'

TERM = `xterm'

TERMCAP = `xterm-r6|xterm|xterm X11R6 
version:am:km:mi:ms:xn:co#80:it#8:li#24:AL=\E[%dL:DC=\E[%dP:DL=\E[%dM:DO=\E[%dB:LE=\E[%dD:RI=\E[%dC:UP=\E[%dA:ae=^O:al=\E[L:as=^N:bl=^G:cd=\E[J:ce=\E[K:cl=\E[H\E[2J:cm=\E[%i%d;%dH:cr=^M:cs=\E[%i%d;%dr:ct=\E[3g:dc=\E[P:dl=\E[M:do=^J:ei=\E[4l:ho=\E[H:im=\E[4h:is=\E7\E[r\E[m\E[?7h\E[?1;3;4;6l\E[4l\E8\E>:k1=\EOP:k2=\EOQ:k3=\EOR:k4=\EOS:k5=\E[15~:k6=\E[17~:k7=\E[18~:k8=\E[19~:k9=\E[20~:kD=\E[3~:kI=\E[2~:kN=\E[6~:kP=\E[5~:kd=\EOB:ke=\E[?1l\E>:kh=\E[1~:kl=\EOD:kr=\EOC:ks=\E[?1h\E=:ku=\EOA:le=^H:md=\E[1m:me=\E[m:mr=\E[7m:nd=\E[C:rc=\E8:sc=\E7:se=\E[m:sf=^J:so=\E[7m:sr=\EM:ta=^I:te=\E[2J\E[?47l\E8:ti=\E7\E[?47h:ue=\E[m:up=\E[A:us=\E[4m:kb=\010:'

TMP = `c:\DOCUME~1\Lev\LOCALS~1\Temp'

USERDOMAIN = `RAAJSGDH'

USERNAME = `Lev'

USERPROFILE = `C:\Documents and Settings\Lev'

WINDIR = `C:\WINDOWS'

WINDOWID = `2097168'

_ = `/usr/bin/cygcheck'

POSIXLY_CORRECT = `1'



HKEY_CURRENT_USER\Software\Cygnus Solutions

HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin

HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin\mounts v2

HKEY_CURRENT_USER\Software\Cygnus Solutions\Cygwin\Program Options

HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions

HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin

HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2

  (default) = `/cygdrive'

  cygdrive flags = 0x0022

HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/

  (default) = `C:\cygwin'

  flags = 0x000a

HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/usr/bin

  (default) = `C:\cygwin/bin'

  flags = 0x000a

HKEY_LOCAL_MACHINE\SOFTWARE\Cygnus Solutions\Cygwin\mounts v2\/usr/lib

  (default) = `C:\cygwin/lib'

  flags = 0x000a

HKEY_LOCAL_MACHINE\SOFTWARE\C

Re: uxterm from xterm-185-3 and xfontsel crashing when running under cygserver support

2004-03-26 Thread Corinna Vinschen
On Mar 25 13:38, Harold L Hunt II wrote:
> Volker,
> 
> Using the Cygwin Way-Back Machine 
> (http://cygwin.get-software.com/release/XFree86/XFree86-xserv/)
> I have retrieved a copy of XFree86-xserv-4.3.0-55 which is immediately 
> prior to the change from cygserver to cygipc.  I would like you to test 
> this version and verify whether you can or cannot reproduce the problem 
> with cygipc.  It is always possible that this is just a bug in the big 
> font extension that we have not noticed before.
> 
> To retrieve the -55 version, point setup.exe to:
> 
> http://www.egr.msu.edu/~huntharo/cygwin_old/

That's a good idea, thank you.

Other than that, I'm not at all familar with that stuff.  How can I
set up a minimal test system, so that it uses the bigfont extension
and, especially, IPC?  Yesterday I just started cygserver, XWin and
uxterm, and it doesn't use IPC by default, apparently.


Corinna

-- 
Corinna Vinschen  Please, send mails regarding Cygwin to
Cygwin Developermailto:[EMAIL PROTECTED]
Red Hat, Inc.


Re: uxterm from xterm-185-3 and xfontsel crashing when running under cygserver support

2004-03-26 Thread Corinna Vinschen
On Mar 25 19:12, Dr. Volker Zell wrote:
> Ok here my debug attempts. Following is the output of
> /var/log/cygserver.log when starting xfontsel. After the -- snip --
> you'll find the lines which showed up when xfontsel crashed. For this
> run I started the XWin server without the env variable XF86BIGFONT_DISABLE.
> Doesn't seem very useful so.

Nope, the output of cygserver doesn't indicate anything.  And the normal
log output is missing since it's still gone to the event log.
Btw., you can start cygserver under administrator account in a console.
That's sufficient from the user rights perspective and you can easily
redirect the log which goes to stderr then by default.

> Attaching to program `/usr/X11R6/bin/xfontsel.exe', process 1624
> 
> Program received signal SIGSEGV, Segmentation fault.
> 
> Program received signal SIGSEGV, Segmentation fault.
> 
> Program received signal SIGSEGV, Segmentation fault.
> 
> Program received signal SIGSEGV, Segmentation fault.
> 
> Program received signal SIGSEGV, Segmentation fault.

Well... that's even less helpful with no debug symbols in the binary.

Corinna

-- 
Corinna Vinschen  Please, send mails regarding Cygwin to
Cygwin Developermailto:[EMAIL PROTECTED]
Red Hat, Inc.


Re: Pathnames for X server app-defaults etc.

2004-03-26 Thread Ruth Ivimey-Cook
On Thu, 2004-03-25 at 16:39, Harold L Hunt II wrote:
> Please look at my message about your installation being out of date.
> 
> Harold

 I had previously tried a setup.exe 'reinstall' and also uninstalling
xserv and installing it from the easynet.be mirror, neither worked.

 However, last night I tried deleting everything cygwin - not as easy as
it sounds as there are some 'undeletable' link files - and reinstalling
it all from uni-erlangen.de.

This worked. So I must conclude that mirror.ac.uk at least, and possibly
easynet.be, are poor mirror choices :-(

It would be rather nice if setup had a way of verifying that the
packages it loads are self-consistent.

Regards,

Ruth



Re: Final solution on using AltGr keyboard definitions with HP-UX CDE/Motif/ X11R6 and Linux/ Cygwin

2004-03-26 Thread Hans Dekker
Hello Franz,

It seems the XKB_DISABLE variable is picked up after initializing your 
CDE environment and after having logged in.

Fortunately we don't use usernames with AltGr characters in it, though I 
couldn't tell whether passwords of users have AltGr characters in them.

After a week without reactions on the subject, I unsubscribed myself 
from the list to prevent overload of my mailbox.

Regards, Hans.

Franz Roters escribió:
Hi Hans and all the rest,

while this solution works for cde and the applications, I still have 
no AltGr-functionality in the login-screen.

Any ideas, suggestions?

Greetings

Franz



Using Cygwin with HP-UX CDE:

When you are using CDE on HP-UX you can use the following procedure,
which I found on the Internet. Check the solution at
http://aa11.cjb.net/hpux_admin/2000/12/0212.html that came from the
community:
Create the file /etc/dt/config/Xsession.d/0050.disable_xkb with the
following content:
#!/usr/bin/ksh
# ###
File: 0050.disable_xkb ### ### Purpose: disable the XKEYBOARD extension in
all R6 ### client software.
#
export XKB_DISABLE=1
and give it the 755 protection.

Then put in the .dtprofile of a user the command to change his/her
keyboard layout:
xmodmap /etc/xmodmap.es.hpux

which contains a copy of the enclosed keyboard mapping.


---
Dr. Franz Roters
Max-Planck-Institut fuer Eisenforschung
Abteilung Mikrostrukturphysik und Umformtechnik
Max-Planck-Str. 1
40237 Duesseldorf
Germany
Tel.: +49 (0)211-6792-393
FAX:  +49 (0)211-6792-333
.






window manager running already

2004-03-26 Thread Frank Schaefer
Updating to 1.5.9-1 causes problem under WinXP and Win98 when trying to
'startx:'

"window manager already running"

while none is actually running. I was not able to figure out how
'X' comes to this conclusion.  Is there a file that can be deleted.
The only other reason I could think of is that we started an
'X -broadcast' session. However, this too has been terminated. 

Thanks for any help.

Frank




Akpjbyjwdb di.scoun.t ph`armacy

2004-03-26 Thread freddie boudrie
entittled  cornucopiae  dirst  


The b`est meds available

They got Vi.co.din, [EMAIL PROTECTED], and V.aliu.m..and other popular products..

* Private and Confidential * Discreet Packaging 

Q R http://may.sed.cert-opt.net/baedo/sppa/ges/


Quit:  Btk.Ea.cert-opt.net/rm.html
A professor was giving a big test one day to his students. He handed out
all of the tests and went back to his desk to wait. Once the test was over
the students all handed the tests back in. The professor noticed that one of
the students had attached a $100 bill to his test with a note saying "A
dollar per  point." The next class the professor handed the tests back out.
This student got back his test and $64 change.
A couple had been married for 25 years and were celebrating their 60th
birthdays, which fell on the same day. During the celebration a fairy
appeared and said that because they had been such a loving couple for all 25
years, she would give them one wish each. The wife wanted to travel around
the world. The fairy waved her hand, and Boom! She had the tickets in her
hand. Next, it was the husband's turn. He paused for a moment, then said
shyly, "Well, I'd like to have a woman 30 years younger than me." The fairy
picked up her wand, and Boom!  He was ninety.
zettaita7ouminaga01soukouda,imanishi ozzu. 



Re: XDMCP

2004-03-26 Thread Klemens Meyer
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Allen Jasewicz wrote:

| XWin.exe -query 172.20.12.254:0.0 -from 172.20.14.74

[...]

| $ XWin.exe -query 172.20.12.254:0.0 -fp tcp/172.20.12.254:7100  -from
172.20.14.74
|
| Fatal server error: XDMCP fatal error: Session failed Session 19
| failed for display cadclass:0: Cann ot open display
~ 
There comes the symbolic name from somewere and X uses that instead of
the numeric IP. The only workaround I know is to add that name to the
hosts file on your unix host.
Klemens

- --

Ever wondered where I work? Try this:
http://www.map-scout.de/myMap.asp?G=332EBA4E8A73442294C50D02C0FB9C7A&S=0
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.2 (MingW32)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org
iD8DBQFAY+L1dDBiVZS7P/MRAv8IAKCBoURiVHbZNmKyyKB5e+dszUTYDACg2HoU
H06LdwTDu4xNHYcJGlbjz1g=
=AP1Y
-END PGP SIGNATURE-