Re: /bin/rebaseall fails

2011-02-09 Thread Rafael Kitover
On 2/8/2011 10:42 AM, David Means wrote: When running rebaseall, I receive a #13 error from FixImage: $ /bin/rebaseall /usr/lib/cygicudata.dll: skipped because nonexistent /usr/lib/cygicui18n.dll: skipped because nonexistent /usr/lib/cygicuio.dll: skipped because nonexistent

Re: after ssh connection is getting closed

2011-02-09 Thread Corinna Vinschen
On Feb 9 12:14, Sarkar, Kaushik wrote: After connecting through ssh immediately my connection is getting closed. I can't reproduce this problem, neither with Cygwin 1.7.7, nor with the latest Cygwin from CVS, neither with OpenSSH 5.6, nor 5.7, nor 5.8. However, I *could* reproduce it on my

Re: 1.7.7: after upgrade lost ability to login via ssh

2011-02-09 Thread Corinna Vinschen
On Feb 8 21:14, Gerry Reno wrote: Something else I just discovered after upgrading to 1.7.7 is that I now have lost the ability to login via ssh. I have OpenSSH installed and running sshd as a service. Both password and keys accepted. But now neither means will work. # ssh -i

AW: AW: How to make ls as quick as a Windows dir?

2011-02-09 Thread Paul Maier
Perhaps it's time for a full problem report. See the link below for specifics on what should be in such a report. http://cygwin.com/problems.html Larry, for the cygcheck log: please mail (only to) me your personal e-mail address. I can't mail the file to the list. Paul. -- Problem

[ANNOUNCEMENT] Updated: cppcheck-1.47-1

2011-02-09 Thread Chris Sutcliffe
Version 1.47-1 of cppcheck has been uploaded, following the upstream release. cppcheck is a tool for static C/C++ code analysis. It tries to detect bugs that your C/C++ compiler don't see. The goal is no false positives. cppcheck is versatile. You can check non-standard code that includes

ADO does not work from bash

2011-02-09 Thread Rafael Kitover
I first reported this problem to the Win32::OLE Perl module RT queue, but as it turns out, the problem is in the Cygwin shell environment and not in the Cygwin perl or the module. From Cygwin bash: $ perl -MWin32::OLE -wle 'Win32::OLE-new(ADODB.Connection)' Win32::OLE(0.1709) error 0x8007007e:

Re: [patch]another sigsegv in environ.cc

2011-02-09 Thread jojelino
changes introduced. all file: add __attribute__ ((regparm (x))) explicitly in function definition. environ.cc fix findenv_func that were not prefixed __stdcall exception.h add body to prevent compilation error with -DDEBUG_EXCEPTION fhandler_floppy.cc hookapi.cc syscalls.cc in6.h passwd.cc

Accessing folders elsewhere than C:\cygwin

2011-02-09 Thread Fergus
I have Cygwin mounted conventionally under Q:\cygwin. I would like to access files under Q:\else. But (for example) ls ../../.. only ever attains \cygwin (and lower). I can use ls /cygdrive/q/else/ (and lower) but this means knowing the drive name (in this case Q:) I don't much want to change

Re: [patch]another sigsegv in environ.cc

2011-02-09 Thread Corinna Vinschen
On Feb 9 23:17, jojelino wrote: changes introduced. all file: add __attribute__ ((regparm (x))) explicitly in function definition. environ.cc fix findenv_func that were not prefixed __stdcall exception.h add body to prevent compilation error with -DDEBUG_EXCEPTION fhandler_floppy.cc

Re: Accessing folders elsewhere than C:\cygwin

2011-02-09 Thread Greg Chicares
On 2011-02-09 14:42Z, Fergus wrote: I have Cygwin mounted conventionally under Q:\cygwin. I would like to access files under Q:\else. But (for example) ls ../../.. only ever attains \cygwin (and lower). I can use ls /cygdrive/q/else/ (and lower) but this means knowing the drive name (in this

Re: Accessing folders elsewhere than C:\cygwin

2011-02-09 Thread Jeremy Bopp
On 02/09/2011 08:42 AM, Fergus wrote: I have Cygwin mounted conventionally under Q:\cygwin. I would like to access files under Q:\else. But (for example) ls ../../.. only ever attains \cygwin (and lower). I can use ls /cygdrive/q/else/ (and lower) but this means knowing the drive name (in

Re: Accessing folders elsewhere than C:\cygwin

2011-02-09 Thread Jeremy Bopp
On 02/09/2011 09:50 AM, Jeremy Bopp wrote: mount | grep -q 'on /mnt/else type' || mount $(cygpath -m)/../else /mnt/else ^^^ I lost a slash in the above code. It should be as follows: mount | grep -q 'on /mnt/else type' || mount $(cygpath -m /)/../else /mnt/else

Re: Accessing folders elsewhere than C:\cygwin

2011-02-09 Thread Andrew Schulman
I have Cygwin mounted conventionally under Q:\cygwin. I would like to access files under Q:\else. But (for example) ls ../../.. only ever attains \cygwin (and lower). I can use ls /cygdrive/q/else/ (and lower) but this means knowing the drive name (in this case Q:) Well at some level you're

Re: after ssh connection is getting closed

2011-02-09 Thread Larry Hall (Cygwin)
On 2/9/2011 1:45 AM, Sarkar, Kaushik wrote: After connecting through ssh immediately my connection is getting closed. C:\WINDOWSssh -vvv 10.72.248.117 -l cyg_server OpenSSH_5.7p1, OpenSSL ^^ Don't use cyg-server to login. It's not meant for

Re: AW: AW: How to make ls as quick as a Windows dir?

2011-02-09 Thread Larry Hall (Cygwin)
On 2/9/2011 6:31 AM, Paul Maier wrote: Perhaps it's time for a full problem report. See the link below for specifics on what should be in such a report. http://cygwin.com/problems.html Larry, for the cygcheck log: please mail (only to) me your personal e-mail address. I can't mail the

[ANNOUNCEMENT] Updated: git-1.7.4-1, git{k,-gui,-completion,-svn}-1.7.4-1

2011-02-09 Thread Eric Blake (cygwin)
A new release of git, 1.7.4-1, has been uploaded, and will be available for use when your mirror catches up. This leaves 1.7.3.3-1 as previous. NEWS: = This is a new upstream release, with upstream release notes attached. See also the package documentation in /usr/share/doc/git/. When

Re: 1.7.7: after upgrade lost ability to login via ssh

2011-02-09 Thread Gerry Reno
On 02/09/2011 05:54 AM, Corinna Vinschen wrote: On Feb 8 21:14, Gerry Reno wrote: Something else I just discovered after upgrading to 1.7.7 is that I now have lost the ability to login via ssh. I have OpenSSH installed and running sshd as a service. Both password and keys accepted.

Re: Accessing folders elsewhere than C:\cygwin

2011-02-09 Thread Corinna Vinschen
On Feb 9 15:37, Greg Chicares wrote: On 2011-02-09 14:42Z, Fergus wrote: I have Cygwin mounted conventionally under Q:\cygwin. I would like to access files under Q:\else. But (for example) ls ../../.. only ever attains \cygwin (and lower). I can use ls /cygdrive/q/else/ (and lower) but

Re: 1.7.7: after upgrade lost ability to login via ssh

2011-02-09 Thread Corinna Vinschen
On Feb 9 11:34, Gerry Reno wrote: On 02/09/2011 05:54 AM, Corinna Vinschen wrote: On Feb 8 21:14, Gerry Reno wrote: Something else I just discovered after upgrading to 1.7.7 is that I now have lost the ability to login via ssh. I have OpenSSH installed and running sshd as a

Re: 1.7.7: 'Bad address' errors when using Windows 2003 R2 WOW64

2011-02-09 Thread Gerry Reno
On 02/08/2011 04:10 PM, Gerry Reno wrote: On 02/08/2011 03:28 PM, Gerry Reno wrote: On 02/08/2011 03:14 PM, Larry Hall (Cygwin) wrote: On 2/8/2011 2:47 PM, Gerry Reno wrote: snip As you can see it is not just the lapack0.sh file in /etc/profile.d/. Even when I

How to detect CygWin SVN?

2011-02-09 Thread Jochen Wiedmann
Hi, I'd like to write a script, which ought to work with the CygWin SVN client as well as any native SVN clients. As a prerequisite, I need to detect whether the svn program in the path is CygWin SVN or not. Question is, how to do this? Because the output of svn --version contains nothing that

Re: How to detect CygWin SVN?

2011-02-09 Thread Jeremy Bopp
On 02/09/2011 01:10 PM, Jochen Wiedmann wrote: Hi, I'd like to write a script, which ought to work with the CygWin SVN client as well as any native SVN clients. As a prerequisite, I need to detect whether the svn program in the path is CygWin SVN or not. Question is, how to do this? Because

Re: building a cross-compiler for Linux/OSX

2011-02-09 Thread Fabiano Sidler
Hello? Noone building cross-compilers for cygwin? Thus spake Fabiano Sidler, 11/02/07 10:50: Hi folks! I'm trying to build a cross-compiler under Linux and MacOSX using this script: http://sourceware.org/ml/cygwin/2010-08/txt00010.txt I get the same error on Linux and MacOSX after the make

Re: How to detect CygWin SVN?

2011-02-09 Thread Jochen Wiedmann
On Wed, Feb 9, 2011 at 8:17 PM, Jeremy Bopp jer...@bopp.net wrote: I'm assuming that your script expects svn to be in the PATH, so you could check to see if the path to the svn client lives within Cygwin's installation: if [ $(type -p svn) = '/usr/bin/svn' ]; then  echo Found Cygwin's svn

Re: How to detect CygWin SVN?

2011-02-09 Thread Jeremy Bopp
On 02/09/2011 02:22 PM, Jochen Wiedmann wrote: On Wed, Feb 9, 2011 at 8:17 PM, Jeremy Bopp jer...@bopp.net wrote: I'm assuming that your script expects svn to be in the PATH, so you could check to see if the path to the svn client lives within Cygwin's installation: if [ $(type -p svn) =

Re: How to detect CygWin SVN?

2011-02-09 Thread Jochen Wiedmann
Preferrably cmd Or, in the alternative, the output of a cmd-Shell invocation to be analyzed by some Java program. On Wed, Feb 9, 2011 at 9:26 PM, Jeremy Bopp jer...@bopp.net wrote: On 02/09/2011 02:22 PM, Jochen Wiedmann wrote: On Wed, Feb 9, 2011 at 8:17 PM, Jeremy Bopp jer...@bopp.net

[ANNOUNCEMENT] Updated: bash-4.1.9-3

2011-02-09 Thread Eric Blake (cygwin)
A new release of bash, 4.1.9-3, has been uploaded and will soon reach a mirror near you; replacing 4.1.9-2 and leaving bash 3.2.51-24 as previous. NEWS: = This is a minor rebuild which avoids a miscompilation that was causing bash to crash on some machines during ssh-host-config. There are a

Re: 1.7.7: after upgrade lost ability to login via ssh

2011-02-09 Thread Gerry Reno
On 02/08/2011 11:07 PM, Larry Hall (Cygwin) wrote: On 2/8/2011 9:14 PM, Gerry Reno wrote: Something else I just discovered after upgrading to 1.7.7 is that I now have lost the ability to login via ssh. I have OpenSSH installed and running sshd as a service. Both password and keys accepted.

Re: How to detect CygWin SVN?

2011-02-09 Thread Csaba Raduly
Hi Jochen, On 2/9/11, Jochen Wiedmann wrote: Hi, I'd like to write a script, which ought to work with the CygWin SVN client as well as any native SVN clients. As a prerequisite, I need to detect whether the svn program in the path is CygWin SVN or not. Question is, how to do this?

Re: 1.7.7: after upgrade lost ability to login via ssh

2011-02-09 Thread Gerry Reno
On 02/09/2011 04:56 PM, Gerry Reno wrote: On 02/08/2011 11:07 PM, Larry Hall (Cygwin) wrote: On 2/8/2011 9:14 PM, Gerry Reno wrote: Something else I just discovered after upgrading to 1.7.7 is that I now have lost the ability to login via ssh. I have OpenSSH installed and running

Re: 1.7.7: after upgrade lost ability to login via ssh

2011-02-09 Thread Gerry Reno
On 02/09/2011 05:07 PM, Gerry Reno wrote: On 02/09/2011 04:56 PM, Gerry Reno wrote: On 02/08/2011 11:07 PM, Larry Hall (Cygwin) wrote: On 2/8/2011 9:14 PM, Gerry Reno wrote: Something else I just discovered after upgrading to 1.7.7 is that I now have lost the

Re: 1.7.7: after upgrade lost ability to login via ssh

2011-02-09 Thread Larry Hall (Cygwin)
On 2/9/2011 5:07 PM, Gerry Reno wrote: On 02/09/2011 04:56 PM, Gerry Reno wrote: On 02/08/2011 11:07 PM, Larry Hall (Cygwin) wrote: On 2/8/2011 9:14 PM, Gerry Reno wrote: Something else I just discovered after upgrading to 1.7.7 is that I now have lost the ability to login via ssh. I have

Re: 1.7.7: after upgrade lost ability to login via ssh

2011-02-09 Thread Larry Hall (Cygwin)
On 2/9/2011 5:56 PM, Gerry Reno wrote: On 02/09/2011 05:35 PM, Larry Hall (Cygwin) wrote: On 2/9/2011 5:07 PM, Gerry Reno wrote: On 02/09/2011 04:56 PM, Gerry Reno wrote: On 02/08/2011 11:07 PM, Larry Hall (Cygwin) wrote: On 2/8/2011 9:14 PM, Gerry Reno wrote: Something else I just

Re: 1.7.7: after upgrade lost ability to login via ssh

2011-02-09 Thread Gerry Reno
On 02/09/2011 06:43 PM, Larry Hall (Cygwin) wrote: On 2/9/2011 5:56 PM, Gerry Reno wrote: On 02/09/2011 05:35 PM, Larry Hall (Cygwin) wrote: On 2/9/2011 5:07 PM, Gerry Reno wrote: On 02/09/2011 04:56 PM, Gerry Reno wrote: On 02/08/2011 11:07 PM, Larry Hall (Cygwin) wrote: On 2/8/2011 9:14

Re: 1.7.7: after upgrade lost ability to login via ssh

2011-02-09 Thread Gerry Reno
On 02/09/2011 07:21 PM, Gerry Reno wrote: On 02/09/2011 06:43 PM, Larry Hall (Cygwin) wrote: On 2/9/2011 5:56 PM, Gerry Reno wrote: On 02/09/2011 05:35 PM, Larry Hall (Cygwin) wrote: On 2/9/2011 5:07 PM, Gerry Reno wrote: On 02/09/2011 04:56 PM, Gerry Reno wrote:

Re: 1.7.7: after upgrade lost ability to login via ssh

2011-02-09 Thread Gerry Reno
On 02/09/2011 08:04 PM, Gerry Reno wrote: On 02/09/2011 07:21 PM, Gerry Reno wrote: On 02/09/2011 06:43 PM, Larry Hall (Cygwin) wrote: On 2/9/2011 5:56 PM, Gerry Reno wrote: On 02/09/2011 05:35 PM, Larry Hall (Cygwin) wrote: On 2/9/2011 5:07 PM,

Re: [ANNOUNCEMENT] Updated: OpenSSH-5.8p1-1

2011-02-09 Thread Hans Horn
On 2/8/2011 3:58 PM, Hans Horn wrote: On 2/8/2011 3:32 PM, Cyrille Lefevre wrote: Le 08/02/2011 22:42, Hans Horn a écrit : Trying some of the more recent revisions listed on the Cygwin Time Machine. e.g. ftp://www.fruitbat.org/pub/cygwin/circa/2011/01/11/194023 All give me Unable to get

Re: 1.7.7: after upgrade lost ability to login via ssh

2011-02-09 Thread Gerry Reno
On 02/09/2011 08:21 PM, Gerry Reno wrote: On 02/09/2011 08:04 PM, Gerry Reno wrote: On 02/09/2011 07:21 PM, Gerry Reno wrote: On 02/09/2011 06:43 PM, Larry Hall (Cygwin) wrote: On 2/9/2011 5:56 PM, Gerry Reno wrote: On 02/09/2011 05:35

Re: RFU: cppcheck-1.47-1

2011-02-09 Thread Andy Koppe
On 9 February 2011 02:46, Chris Sutcliffe wrote: Please upload: --- wget -x -nH --cut-dirs=1 \ http://emergedesktop.org/cygwin/cppcheck/setup.hint  \ http://emergedesktop.org/cygwin/cppcheck/cppcheck-1.47-1.tar.bz2  \ http://emergedesktop.org/cygwin/cppcheck/cppcheck-1.47-1-src.tar.bz2

Re: [RFU] zsh-4.3.11-2

2011-02-09 Thread Christopher Faylor
On Tue, Jan 25, 2011 at 09:15:53PM -0800, Peter A. Castro wrote: Hmm... I was sure I'd waited until they appeared in the mirrors. You don't have to wait until they appeared in mirrors since that's a very variable thing. It is best to wait until someone has acked your RFU request, though (as I'm

Re: [ITA] - base-files

2011-02-09 Thread Charles Wilson
On 2/6/2011 4:40 PM, David Sastre wrote: I have a question yet: is there a consistent way of knowing the GID of users with administrative privileges (from a windows perspective) so that could be used to add /usr/sbin to their paths? AFAIK, this requires Win32 C code. Take a look at the code

Re: [ITA] - base-files

2011-02-09 Thread Corinna Vinschen
On Feb 9 10:42, Charles Wilson wrote: On 2/6/2011 4:40 PM, David Sastre wrote: I have a question yet: is there a consistent way of knowing the GID of users with administrative privileges (from a windows perspective) so that could be used to add /usr/sbin to their paths? AFAIK, this

AW: AW: clipboard integration doesn't work

2011-02-09 Thread Paul Maier
As a workaround, you could perhaps set your locale to de_DE.ISO8859-1 (which is a subset of CP1252), if you actually need to work with CP1252 encoded data, Hi Jon, that WORKS!! 8-))) Thanks for the help. It's fine for me now. Paul -- Unsubscribe info:

Re: Can't use XDMCP, winProcEstablishConnection - ProcEstablishConnection failed, bailing shows in log

2011-02-09 Thread Alexander Pokluda
Here is an excerpt from /var/log/messages on the VM that I'm trying to connect to with XWin. This is what appears in the log after running XWin -from 10.3.20.159 -query 10.3.147.100 Feb 8 11:22:08 dev01 gdm[4097]: gdm_xdmcp_decode: Received opcode QUERY from client 10.3.20.159 Feb 8 11:22:08

Re: Can't use XDMCP, winProcEstablishConnection - ProcEstablishConnection failed, bailing shows in log

2011-02-09 Thread Jon TURNEY
Firstly, thanks very much for taking the time to collect so much detailed information about this problem. On 09/02/2011 15:36, Alexander Pokluda wrote: Here is an excerpt from /var/log/messages on the VM that I'm trying to connect to with XWin. This is what appears in the log after running

winsup/cygwin exception.h ChangeLog

2011-02-09 Thread cgf
CVSROOT:/cvs/uberbaum Module name:winsup Changes by: c...@sourceware.org 2011-02-09 15:40:39 Modified files: cygwin : exception.h ChangeLog Log message: * exception.h: Remove DEBUG_EXCEPTION left over debugging ifdef. * dll_init.cc: Fix typo

winsup/cygwin ChangeLog hookapi.cc

2011-02-09 Thread cgf
CVSROOT:/cvs/uberbaum Module name:winsup Changes by: c...@sourceware.org 2011-02-09 15:46:00 Modified files: cygwin : ChangeLog hookapi.cc Log message: * hookapi.cc (hook_or_detect_cygwin): Prevent i from being considered uninitialized by gcc.

winsup/cygwin cygheap.cc ChangeLog lib/cygwin_ ...

2011-02-09 Thread cgf
CVSROOT:/cvs/uberbaum Module name:winsup Changes by: c...@sourceware.org 2011-02-10 02:22:36 Modified files: cygwin : cygheap.cc ChangeLog cygwin/lib : cygwin_crt0.c Log message: * cygheap.cc: Add some __stdcall decoration where

Re: provide __xpg_strerror_r

2011-02-09 Thread Christopher Faylor
On Wed, Feb 09, 2011 at 05:20:59PM -0700, Eric Blake wrote: On 02/06/2011 02:54 AM, Corinna Vinschen wrote: We already provide our own strerror() (it provides a better experience for out-of-range values that the newlib interface), but we're currently using the newlib strerror_r() (in spite of

Re: [PATCH] pthread_yield

2011-02-09 Thread Christopher Faylor
On Wed, Feb 09, 2011 at 11:49:58PM -0600, Yaakov (Cygwin/X) wrote: pthread_yield(3) was part of the POSIX.1c drafts but never made it into the final standard. Nevertheless, it is provided by Linux[1], FreeBSD[2], OpenBSD[3], AIX[4], and possibly other *NIXes. On Linux, this function is

Updated: cppcheck-1.47-1

2011-02-09 Thread Chris Sutcliffe
Version 1.47-1 of cppcheck has been uploaded, following the upstream release. cppcheck is a tool for static C/C++ code analysis. It tries to detect bugs that your C/C++ compiler don't see. The goal is no false positives. cppcheck is versatile. You can check non-standard code that includes

Updated: git-1.7.4-1, git{k,-gui,-completion,-svn}-1.7.4-1

2011-02-09 Thread Eric Blake (cygwin)
A new release of git, 1.7.4-1, has been uploaded, and will be available for use when your mirror catches up. This leaves 1.7.3.3-1 as previous. NEWS: = This is a new upstream release, with upstream release notes attached. See also the package documentation in /usr/share/doc/git/. When

Updated: bash-4.1.9-3

2011-02-09 Thread Eric Blake (cygwin)
A new release of bash, 4.1.9-3, has been uploaded and will soon reach a mirror near you; replacing 4.1.9-2 and leaving bash 3.2.51-24 as previous. NEWS: = This is a minor rebuild which avoids a miscompilation that was causing bash to crash on some machines during ssh-host-config. There are a