Re: Semaphore handle leaks in WindowMaker with latest Xorg distribution

2009-01-16 Thread Yaakov (Cygwin/X)
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Jon TURNEY wrote: So I guess suspicion first falls that this leak is somewhere in one of the updated X DLLs... The question is then, how can we track this down? Yaakov Cygwin/X -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (Cygwin)

Re: [patch 0/7] X server patchset

2009-01-16 Thread Yaakov (Cygwin/X)
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Jon TURNEY wrote: This mail is followed by a series of patches, mainly fixing cosmetic issues in -multiwindow mode. This is incremental to my patchset of 20081218 Thanks for reorganizing these patches; I was starting to lose track of them all

Re: [patch 0/7] X server patchset

2009-01-16 Thread Yaakov (Cygwin/X)
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 jose isaias cabrera wrote: are these patches going to be applied to the distributed software soon or do we have to apply the patches ourselves? What I am trying to figure out is that if I run setup in a week or so, will these patches be applied

Re: [patch 4/7] Cygwin/X: Invent a scan code if we dont have one

2009-01-16 Thread Jon TURNEY
Reini Urban wrote: Shouldn't we properly attribute Paul Loewenstein at least in the patch who came up with this idea. Indeed, thanks for pointing out this oversight. Revised patch attached. That's what happens to people who don't use diff :-) Cygwin/X: Invent a scan code if we don't have one

Re: [patch 1/7] Cygwin/X: Make transient windows resizable again

2009-01-16 Thread Jon TURNEY
Sigh. Somehow a broken version of this patch ended up in the queue :-( Cygwin/X: Make transient windows resizable again This reverts the change in from-xming-patch11 which makes parented windows non-resizeable Because this was trying to do something which we should be doing, as an

Re: [patch 0/7] X server patchset

2009-01-16 Thread Jon TURNEY
in the commentary I spotted once I read them :-) http://www.dronecode.org.uk/cygwin/cygwin-xorg-server-patch-set-update-20090116.tar.bz2 Thanks for reorganizing these patches; I was starting to lose track of them all as they were scattered on the list. I'll have a chance to look at these Sunday

Re: [patch 0/7] X server patchset

2009-01-16 Thread jose isaias cabrera
Thanks. - Original Message - From: Yaakov (Cygwin/X) yselkow...@users.sourceforge.net To: cygwin-xfree@cygwin.com Sent: Friday, January 16, 2009 6:21 AM Subject: Re: [patch 0/7] X server patchset -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 jose isaias cabrera wrote: are these

Re: [patch 4/7] Cygwin/X: Invent a scan code if we dont have one

2009-01-16 Thread Paul Loewenstein
I plan to do a reasonably thorough investigation of what scan codes show up during speech recognition. I believe I have seen both 0 and 1 (the ESC scancode). The latter must be a bug (almost certainly Microsoft's) rather than a mere omission, but is much simpler to work around than to get

src/winsup/utils ChangeLog cygcheck.cc

2009-01-16 Thread corinna
CVSROOT:/cvs/src Module name:src Changes by: cori...@sourceware.org 2009-01-16 12:10:10 Modified files: winsup/utils : ChangeLog cygcheck.cc Log message: * cygcheck.cc (dump_sysinfo): Raise size of osname. Add Windows 7 and Windows 2008 R2 as

src/winsup/cygwin ChangeLog errno.cc external. ...

2009-01-16 Thread corinna
CVSROOT:/cvs/src Module name:src Changes by: cori...@sourceware.org 2009-01-16 12:17:28 Modified files: winsup/cygwin : ChangeLog errno.cc external.cc fhandler_disk_file.cc ntdll.h winsup/cygwin/include/cygwin: version.h

Re: Bash doesn't launch the applications directly.

2009-01-16 Thread L Anderson
Christopher Faylor wrote: On Thu, Jan 15, 2009 at 12:11:30PM -0500, Dave Steenburgh wrote: Well, now I understand why I occasionally see more instances of bash in the task manager than I was expecting. However, now I have to ask why the shim doesn't appear [plainly] with ps: 4540 1

RE: Another rvxt vs. minTTY 0.3.4

2009-01-16 Thread Gary R. Van Sickle
From: Andy Koppe Paul McFerrin wrote: I have another difference between 0.3.4 and 0.3.3 of minTTY and rxvt. If you have a long-running script running, any attemps to stop it with either Control-C or Control-\ does nothing. It's working here. Just tried it with a 'configure'

GtkPrintOperation

2009-01-16 Thread GJ
Hello, I'd like to print something in a GTK program and it looks I need the gtkprintoperation.h header file (oh yeah, I am new to GTK). But this header file isn't in my cygwin environment. What cygwin package should I install to get this file ? Kind regards, Gerry -- Unsubscribe

Re: Empty include file on samba share

2009-01-16 Thread Fabian Cenedese
At 19:34 09.01.2009 +, Dave Korn wrote: Have you tried adding --save-temps to your CFLAGS so that you can capture the pre-processor output and take a look at the corruption? It might just give us a clue. I have tried a different file and will show the include structure as well as the

Re: GtkPrintOperation

2009-01-16 Thread Yaakov (Cygwin/X)
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 GJ wrote: I'd like to print something in a GTK program and it looks I need the gtkprintoperation.h header file (oh yeah, I am new to GTK). But this header file isn't in my cygwin environment. What cygwin package should I install to get this

Re: First Pass at mintty documentation; etc.

2009-01-16 Thread Ashok Vadekar
Apologies for violating sane quoting convention, but I'm working off a crapberry. Wrt to window titles: change your PS1 prompt to no longer reassign the title with the pwd (assuming you still have the default definition from /etc/profile (or similar)) and use the same escape sequience it uses

how to get mmap page size?

2009-01-16 Thread Jay Foad
I have an application that wants to use mmap() to read a file, but only if it can guarantee that this will leave one or more zero bytes after the end of the contents of the file in memory: if ((filesize (pagesize - 1) != 0) use_mmap(); else use_read(); How do I get the appropriate

Re: how to get mmap page size?

2009-01-16 Thread Corinna Vinschen
On Jan 16 12:24, Jay Foad wrote: I have an application that wants to use mmap() to read a file, but only if it can guarantee that this will leave one or more zero bytes after the end of the contents of the file in memory: if ((filesize (pagesize - 1) != 0) use_mmap(); else

RE: how to get mmap page size?

2009-01-16 Thread Phil Betts
Jay Foad wrote on Friday, January 16, 2009 12:24 PM:: I have an application that wants to use mmap() to read a file, but only if it can guarantee that this will leave one or more zero bytes after the end of the contents of the file in memory: if ((filesize (pagesize - 1) != 0)

Re: how to get mmap page size?

2009-01-16 Thread Jay Foad
Corinna Vinschen wrote: mmap always allocates in 64K chunks. That doesn't seem to be true in practice. In the test below I mmap a 1080K file (this is a multiple of 4K but not a multiple of 64K). The first byte after the end of the file isn't readable. $ cat mmaptest.c #include fcntl.h #include

Re: SSH Setup Issue

2009-01-16 Thread Larry Hall (Cygwin)
Syphon wrote: I cant seem to get sshd service to start on my Windows Vista box. I tried a few different things, I turned off UAC, I ran bash as Admin. Also, 'chown system:system /var/empty /etc/ssh_*' , 'chmod 755 /etc'.

Re: setup.exe 2.573.2.3 signature failure

2009-01-16 Thread Larry Hall (Cygwin)
George R Nelson wrote: As a newcomer to cygwin, my attempts to download from ctgwin.com or a number of mirror sites all failed with signature errors. WHy do I get this problem? The error I get is: Setup.ini signature http://cygwin.com/setup.bz2.sig from http//cygwin.com failed to verify. I

Re: SSH Setup Issue

2009-01-16 Thread Syphon
Had the issue before I did all of the above, I know all this is already performed by ssh-host-config, So does this mean ssh-host-config is not working properly ? Took a look at '/var/log/sshd.log'. '/var/empty must be owned by root and not group or world-writable.' So, 'chown SYSTEM empty'

Re: SSH Setup Issue

2009-01-16 Thread Larry Hall (Cygwin)
Syphon wrote: Had the issue before I did all of the above, I know all this is already performed by ssh-host-config, So does this mean ssh-host-config is not working properly ? For you, perhaps. Took a look at '/var/log/sshd.log'. '/var/empty must be owned by root and not group or

Uninstall/reinstall

2009-01-16 Thread royma...@verizon.net
I encountered a problem with v1.5.25-15 on Windows XP. My application is C/C++ with an embedded Perl interpreter. The C/C++ code worked fine until I attempted to invoke the perl script. I got an invalid DLL error. I'm not really asking about this -- it's the steps I took to address the DLL

Re: how to get mmap page size?

2009-01-16 Thread Corinna Vinschen
On Jan 16 15:10, Jay Foad wrote: Corinna Vinschen wrote: mmap always allocates in 64K chunks. That doesn't seem to be true in practice. In the test below I mmap a 1080K file (this is a multiple of 4K but not a multiple of 64K). The first byte after the end of the file isn't readable.

Re: how to get mmap page size?

2009-01-16 Thread Jay Foad
Corinna Vinschen wrote: Right. The reason is that mmap started to map memory top down at one point to fix a problem with Windows Vista. The mechanism to align the map always to 64K is still in Cygwin, but it currently doesn't work for files. I'll have a look into fixing that for Cygwin

Re: SSH Setup Issue

2009-01-16 Thread Syphon
Thank you, It did create a new user 'sshd_server'. All is good now. Larry Hall (Cygwin) wrote: Syphon wrote: Had the issue before I did all of the above, I know all this is already performed by ssh-host-config, So does this mean ssh-host-config is not working properly ? For you,

Re: setup.exe 2.573.2.3 signature failure

2009-01-16 Thread George R Nelson
On Fri, Jan 16, 2009 at 3:31 PM, Larry Hall (Cygwin) reply-to-list-only...@cygwin.com wrote: George R Nelson wrote: As a newcomer to cygwin, my attempts to download from ctgwin.com or a number of mirror sites all failed with signature errors. WHy do I get this problem? The error I get is:

Re: First Pass at mintty documentation; etc.

2009-01-16 Thread Lee D. Rothstein
Ashok Vadekar wrote: Apologies for violating sane quoting convention, but I'm working off a crapberry. Wrt to window titles: change your PS1 prompt to no longer reassign the title with the pwd (assuming you still have the default definition from /etc/profile (or similar)) and use the same

Re: automate SSH-HOST-CONFIG

2009-01-16 Thread blazt
Here is the complete script for anyone in the future. There was some odd stuff that this did until I got it worked out. This is for a brand new install of cygwin on a box that has never been used before. I am sure someone can possibly edit this so that it can select from a different number of

Re: Uninstall/reinstall

2009-01-16 Thread Larry Hall (Cygwin)
royma...@verizon.net wrote: I encountered a problem with v1.5.25-15 on Windows XP. My application is C/C++ with an embedded Perl interpreter. The C/C++ code worked fine until I attempted to invoke the perl script. I got an invalid DLL error. I'm not really asking about this -- it's the steps

Re: 1.5.25: Vista x64 - can't install, no (known) BLODAs, rebase not helping

2009-01-16 Thread Alexander Smith
I'm glad Cygwin is working on Vista 64 for other people, but it's still not working for me. Turning off UAC completely didn't make a difference. Is there anything else I can try? Is there anything I can do to help determine what's causing the problem? I'd really like to get Cygwin working.

Re: setup.exe 2.573.2.3 signature failure

2009-01-16 Thread Larry Hall (Cygwin)
George R Nelson wrote: On Fri, Jan 16, 2009 at 3:31 PM, Larry Hall (Cygwin) reply-to-list-only-lh AT cygwin DOT com wrote: ^^^ . Thanks. George R Nelson wrote: As a newcomer to cygwin, my attempts to download from ctgwin.com or a number of mirror sites

Re: setup.exe 2.573.2.3 signature failure

2009-01-16 Thread Larry Hall (Cygwin)
On 01/16/2009, Larry Hall (Cygwin) wrote: George R Nelson wrote: On Fri, Jan 16, 2009 at 3:31 PM, Larry Hall (Cygwin) reply-to-list-only-lh AT cygwin DOT com wrote: ^^^ . Thanks. Ugh! should have been http://cygwin.com/acronyms/#PCYMTNQREAIYR --

Yet another rvxt vs. minTTY 0.3.4

2009-01-16 Thread David Arnstein
Here is one thing that Cygwin rxvt does badly. Both Cygwin xterm and the new Cygwin MinTTY do quite well. From one of (xterm, rxvt, MinTTY) I telnet into a remote host. On the remote host, I launch the usenet news reader trn. In trn, text can be selected with the mouse, even though trn is

Re: 1.5.25: Vista x64 - can't install, no (known) BLODAs, rebase not helping

2009-01-16 Thread Greg Chicares
On 2009-01-16 20:40Z, Alexander Smith wrote: [...] P.S. Sorry to break the thread by not replying to the original message, but I had some mail configuration issues and don't have the other messages in this thread to reply to. I also couldn't figure out how to get the mailing list's get

Manage Cygwin packages in command-line (without using graphical Setup.exe)

2009-01-16 Thread Salokine Terata
Dear Cygwin users, I have installed Cygwin on few PC; To install Cygwin, I use graphical setup method to install vim, rsync and openssh packages. Now I would like to install cron on all PC. Could I use SSH service and a command line to install cron package ? How can manage Cygwin without go

Re: Manage Cygwin packages in command-line (without using graphical Setup.exe)

2009-01-16 Thread Larry Hall (Cygwin)
Salokine Terata wrote: Dear Cygwin users, I have installed Cygwin on few PC; To install Cygwin, I use graphical setup method to install vim, rsync and openssh packages. Now I would like to install cron on all PC. Could I use SSH service and a command line to install cron package ? How can

Re: Yet another rvxt vs. minTTY 0.3.4

2009-01-16 Thread Andy Koppe
David Arnstein wrote: From one of (xterm, rxvt, MinTTY) I telnet into a remote host. On the remote host, I launch the usenet news reader trn. In trn, text can be selected with the mouse, even though trn is nominally a text program. To select text, the user must hold down the shift key, and drag

Re: setup.exe 2.573.2.3 signature failure

2009-01-16 Thread George R Nelson
On Fri, Jan 16, 2009 at 9:00 PM, Larry Hall (Cygwin) reply-to-list-only...@cygwin.com wrote: George R Nelson wrote: On Fri, Jan 16, 2009 at 3:31 PM, Larry Hall (Cygwin) reply-to-list-only-lh AT cygwin DOT com wrote: ^^^ . Thanks. George R Nelson

Re: setup.exe 2.573.2.3 signature failure

2009-01-16 Thread Larry Hall (Cygwin)
On 01/16/2009, George R Nelson wrote: There's only few points I wanted to follow-up on here, since it seems like you've gotten resolutions to your start-up issues in one form or another. Did I ever say Cygwin = Redhat. I think if you read carefully that I said I downloaded Cygwin from the

Re: setup.exe 2.573.2.3 signature failure

2009-01-16 Thread Dave Korn
George R Nelson wrote: As a newcomer to cygwin, my attempts to download from ctgwin.com or a number of mirror sites all failed with signature errors. WHy do I get this problem? The error I get is: Setup.ini signature http://cygwin.com/setup.bz2.sig from http//cygwin.com failed to verify.

building PHP5

2009-01-16 Thread Paul McFerrin
I'm needing an expert on building PHP5 to work on Apache 1.3.22. What am I doing wrong? I'm having a dickens of a time building PHP5. Here is my confugure command line: ./configure --with-apxs=/usr/local/apache/bin/apxs ./configure --with-apxs=/usr/local/apache/bin/apxs --enable-module=so