Re: OpenSSH port forwarding bug

2014-02-12 Thread Andrew Schulman
> Hi All... > The following example shows the port forwarding problem. > > > ~ > > $ ssh raven -W coyote:22 > getsockname failed: Bad file descriptor > SSH-2.0-OpenSSH_6.5 > Protocol mismatch. > ~ > > $ ssh raven nc coyote 22 > SSH-2.0-OpenSSH_6.5 > Protocol mismatch. What are you trying to

OpenSSH port forwarding bug

2014-02-12 Thread Karl M
Hi All... The following example shows the port forwarding problem. ~ $ ssh raven -W coyote:22 getsockname failed: Bad file descriptor SSH-2.0-OpenSSH_6.5 Protocol mismatch. ~ $ ssh raven nc coyote 22 SSH-2.0-OpenSSH_6.5 Protocol mismatch. This is the latest version of everything on a win7-6

Re: newt-0.52.16 patches for Cygwin

2014-02-12 Thread Michael Verrilli
Ok, I'll try to figure out the NLS support. (Post edit, read the end if you don't care about how I got there, it's resolved). I never really got into building configure scripts, but this is what I'm seeing... When I run configure, I see: checking for gettext in -lc... no checking for gettext in

Re: newt-0.52.16 patches for Cygwin

2014-02-12 Thread Andrey Repin
Greetings, Michael Verrilli! > I have been wanting to write some python using the newt (snack) > module, so I managed to get it to compile pretty cleanly with some > minor patching. Is it appropriate for me to submit patches here for > whoever else might have a need? Or should I try to contact t

Re: g77 on cygwin64

2014-02-12 Thread carolus
On 2/12/2014 9:07 AM, Scott T. Marshall wrote: My colleagues have no interest in fixing it since they have g77 on their unix machines, and to them, it isn't broken. Perhaps your colleagues would be willing to look at your results and tell you whether there is a trivial fix for your problem. g

Re: get rid of getpwent? (Was: cygwin-1.7.28 getpwent header declaration changes ?)

2014-02-12 Thread Christopher Faylor
On Wed, Feb 12, 2014 at 08:59:31PM +0100, Corinna Vinschen wrote: >On Feb 12 11:16, Ken Brown wrote: >> On 2/12/2014 4:08 AM, Corinna Vinschen wrote: >> >On Feb 11 19:06, Eric Blake wrote: >> >>On 02/11/2014 05:06 PM, Warren Young wrote: >> >>>On 2/11/2014 16:25, David Stacey wrote: >> getpwent

Re: g77 on cygwin64

2014-02-12 Thread Tim Prince
On 2/12/2014 12:59 PM, David Conrad wrote: On Wed, Feb 12, 2014 at 12:16 PM, Andrey Repin wrote: The strange thing is that gfortran does compile the code, but once compiled, the executables have strange behavior mainly involving problems reading in data files. ... And this is finally the infor

Re: get rid of getpwent? (Was: cygwin-1.7.28 getpwent header declaration changes ?)

2014-02-12 Thread Corinna Vinschen
On Feb 12 11:16, Ken Brown wrote: > On 2/12/2014 4:08 AM, Corinna Vinschen wrote: > >On Feb 11 19:06, Eric Blake wrote: > >>On 02/11/2014 05:06 PM, Warren Young wrote: > >>>On 2/11/2014 16:25, David Stacey wrote: > getpwent() is called in three different places. > >>> > >>>To those of you who h

Re: g77 on cygwin64

2014-02-12 Thread Marco Atzeri
On 12/02/2014 20:06, Richard wrote: Yeah, I was there, fought those battles. The proof of what was going on was found in crash dumps. ...This was from the era when "RISC architecture" meant "Relegate all the Important Sh_t to the Compiler." Richard More recently, all wchar_t are 4 byte l

newt-0.52.16 patches for Cygwin

2014-02-12 Thread Michael Verrilli
I have been wanting to write some python using the newt (snack) module, so I managed to get it to compile pretty cleanly with some minor patching. Is it appropriate for me to submit patches here for whoever else might have a need? Or should I try to contact the maintainer? This is the tarball I

Re: g77 on cygwin64

2014-02-12 Thread Achim Gratz
Scott T. Marshall writes: > The strange thing is that gfortran does compile the > code, but once compiled, the executables have strange behavior mainly > involving problems reading in data files. To me this rather indicates a bug in the code, probably involving bad assumptions about what can be be

Re: g77 on cygwin64

2014-02-12 Thread Marco Atzeri
On 12/02/2014 18:35, LMH wrote: > Coming back to your issue, it is really curious that gfortran compiles > the code but behaves wrongly, I was expecting it rejects the code > if not in line with latest standard. This happens on some of my code as well and is in many ways a far worse i

Re: g77 on cygwin64

2014-02-12 Thread Richard
On Wed, 12 Feb 2014, David Conrad wrote: Since the problem occurs going from 32-bit to 64-bit Cygwin, it sounds to me like all-the-world's-a-VAX syndrome. I bet there are places where it reads from files and assumes that if it reads N words into integers, that is N 32-bit quantities, or somethi

Status of Xemacs on cygwin64. Is help needed?

2014-02-12 Thread Anibal Morales
I don't have a lot of free time but I miss my Xemacs. If I can make a difference I would like to volunteer and help release this package but I am a total cygwin package noob.

Re: g77 on cygwin64

2014-02-12 Thread David Conrad
On Wed, Feb 12, 2014 at 12:16 PM, Andrey Repin wrote: >> The strange thing is that gfortran does compile the code, but >> once compiled, the executables have strange behavior mainly involving >> problems reading in data files. ... > > And this is finally the information, that we can work with. > My

Re: g77 on cygwin64

2014-02-12 Thread LMH
Marco Atzeri wrote: On 12/02/2014 16:07, Scott T. Marshall wrote: Thank-you to those that responded with suggestions involving my fortran issues. Fixing the code is not something I am going to pursue since the source code was written by several different colleagues and is spread out amongst ma

Re: g77 on cygwin64

2014-02-12 Thread Andrey Repin
Greetings, Scott T. Marshall! Please don't http://cygwin.com/acronyms/#TOFU > Thank-you to those that responded with suggestions involving my fortran > issues. Fixing the code is not something I am going to pursue since the > source code was written by several different colleagues and is spread

Re: g77 on cygwin64

2014-02-12 Thread Marco Atzeri
On 12/02/2014 16:07, Scott T. Marshall wrote: Thank-you to those that responded with suggestions involving my fortran issues. Fixing the code is not something I am going to pursue since the source code was written by several different colleagues and is spread out amongst many .f files. My colleag

Re: get rid of getpwent? (Was: cygwin-1.7.28 getpwent header declaration changes ?)

2014-02-12 Thread Andrey Repin
Greetings, Ken Brown! > What about the following compromise: If /etc/passwd exists, then > getpwent behaves as it does currently. Otherwise, it returns a handful > of entries, or possibly just the current user. This gives users a > choice. If tab-completion in this situation is important to

Re: get rid of getpwent? (Was: cygwin-1.7.28 getpwent header declaration changes ?)

2014-02-12 Thread Richard
On Wed, 12 Feb 2014, Ken Brown wrote: On 2/12/2014 4:08 AM, Corinna Vinschen wrote: On Feb 11 19:06, Eric Blake wrote: On 02/11/2014 05:06 PM, Warren Young wrote: On 2/11/2014 16:25, David Stacey wrote: getpwent() is called in three different places. To those of you who have investigated t

Re: get rid of getpwent? (Was: cygwin-1.7.28 getpwent header declaration changes ?)

2014-02-12 Thread Ken Brown
On 2/12/2014 4:08 AM, Corinna Vinschen wrote: On Feb 11 19:06, Eric Blake wrote: On 02/11/2014 05:06 PM, Warren Young wrote: On 2/11/2014 16:25, David Stacey wrote: getpwent() is called in three different places. To those of you who have investigated these code paths: do any of them look lik

Re: g77 on cygwin64

2014-02-12 Thread Christopher Faylor
On Wed, Feb 12, 2014 at 11:14:51AM +0400, Andrey Repin wrote: >Greetings, Scott T. Marshall! >> Would it be very difficult to take the old g77 source and recompile it >> for cygwin64? Has anyone successfully done this before? > >It would certainly be easier to fix you code to compile with >standard

Re: g77 on cygwin64

2014-02-12 Thread Scott T. Marshall
Thank-you to those that responded with suggestions involving my fortran issues. Fixing the code is not something I am going to pursue since the source code was written by several different colleagues and is spread out amongst many .f files. My colleagues have no interest in fixing it since they

Re: get rid of getpwent? (Was: cygwin-1.7.28 getpwent header declaration changes ?)

2014-02-12 Thread Richard
On Wed, 12 Feb 2014, Corinna Vinschen wrote: On Feb 11 19:06, Eric Blake wrote: On 02/11/2014 05:06 PM, Warren Young wrote: On 2/11/2014 16:25, David Stacey wrote: getpwent() is called in three different places. To those of you who have investigated these code paths: do any of them look lik

Re: Clearing the buffer after quitting LESS, MAN, VIM etc.

2014-02-12 Thread Larry Hall (Cygwin)
On 2/12/2014 8:33 AM, Dawid Ferenczy wrote: Christopher Faylor cygwin.com> writes: You're apparently not using a snapshot. cgf Hi there! I have discovered one more bug, which seems to be related: ... And which snapshot are you using? -- Larry _

Re: Clearing the buffer after quitting LESS, MAN, VIM etc.

2014-02-12 Thread Dawid Ferenczy
Christopher Faylor cygwin.com> writes: > You're apparently not using a snapshot. > > cgf Hi there! I have discovered one more bug, which seems to be related: I'm working with CLI having long scrollback buffer. I need to read something a couple of pages back, so I scroll back in the buffer.

Re: snapshots dated 20140210 fail

2014-02-12 Thread Corinna Vinschen
On Feb 12 13:47, Denis Excoffier wrote: > On 2014-02-11 21:39, Denis Excoffier wrote: > > On 2014-02-11 10:20, Corinna Vinschen wrote: > >> On Feb 10 16:09, Warren Young wrote: > >>> On 2/10/2014 15:53, Denis Excoffier wrote: > > I can see another one, dated 22:17:21 UTC. Same problem as

Re: snapshots dated 20140210 fail

2014-02-12 Thread Denis Excoffier
On 2014-02-11 21:39, Denis Excoffier wrote: > On 2014-02-11 10:20, Corinna Vinschen wrote: >> On Feb 10 16:09, Warren Young wrote: >>> On 2/10/2014 15:53, Denis Excoffier wrote: I can see another one, dated 22:17:21 UTC. Same problem as for the 3rd and 4th: windows complaint that th

Re: Newbie Alias and Profile questions

2014-02-12 Thread Andrey Repin
Greetings, Mike Rushton! Please don't http://cygwin.com/acronyms/#TOFU > OK, I got it working ... I have my home in an directory other that what > Cygwin defaults because other software run needs > I thought my files were being overwritten ... but no - I was modifying > the wrong files. > Af

Re: get rid of getpwent? (Was: cygwin-1.7.28 getpwent header declaration changes ?)

2014-02-12 Thread Andrey Repin
Greetings, Corinna Vinschen! > Either way, implementing a full getpwent requires to return the local > users, the users of the primary domain, and the users of all trusted > domains. I know of domains with 200K users and there are probably > bigger ones. How long should a search take when a user

RE: Is There A Way to Update ADB?

2014-02-12 Thread Cilix Tay
Thanks, Balaji!  I know what to do now. Thanks also, Christopher. -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin

Re: snapshots dated 20140210 fail

2014-02-12 Thread Corinna Vinschen
On Feb 11 14:41, Warren Young wrote: > On 2/11/2014 02:20, Corinna Vinschen wrote: > > > >Can you please both test the snapshot DLLs from today? Both versions, > >32 and 64 bit, work fine for me on Windows 8.1. > > Sunshine and butterflies: > > $ uname -a > CYGWIN_NT-6.3-WOW64 amanita 1.7.29s(0.

Re: get rid of getpwent? (Was: cygwin-1.7.28 getpwent header declaration changes ?)

2014-02-12 Thread Corinna Vinschen
On Feb 11 19:06, Eric Blake wrote: > On 02/11/2014 05:06 PM, Warren Young wrote: > > On 2/11/2014 16:25, David Stacey wrote: > >> getpwent() is called in three different places. > > > > To those of you who have investigated these code paths: do any of them > > look like they couldn't be replaced b

Re: Newbie Alias and Profile questions

2014-02-12 Thread Mike Rushton
OK, I got it working ... I have my home in an directory other that what Cygwin defaults because other software run needs I thought my files were being overwritten ... but no - I was modifying the wrong files. After I found the correct files and modified the .bash_profile everything was fine