Re: cygwin stable and cvs snapshot - fork() bug

2007-10-29 Thread Corinna Vinschen
On Oct 29 08:13, [EMAIL PROTECTED] wrote: > > 1 [main] mpd 1736 C:\cygwin\home\mpx\mpd-test\mpd.exe: > > *** fatal error - MapViewOfFileEx (0x1903), > > Win3 2 error 6. Terminating. > > 68 [main] mpd 676 fork: child 1736 - died > > waiting for dll loading, errno 11 problems for

RE: Cygwin setup on XP/Vista (UNIX/DOS compatibilty question)

2007-10-29 Thread Dave Korn
On 26 October 2007 19:21, Larry Hall (Cygwin) wrote: >> A cool new network tool would be a RCP that runs D2U as a option. >> Does such a tool exist? > > > Don't know. But it's simple in principle to write a script that you invoke > to do what you want. Bog-standard ftp does text-mode transfe

Changing users over ssh file creation masks ?

2007-10-29 Thread Tony Benham
I have a couple of users logging onto a windows pc running cygwin with openssh and svn. Essentially the ssh connection is used purely for svn. When they connect via svn+ssh, the authorized_keys file contains a "command=/usr/bin/svnserve" entry to run an svnserve command on the server. It all works

Re: llrint implementation in Cygwin

2007-10-29 Thread Victor Paesa
Hi, Tim Prince computer.org> writes: > > Diego Biurrun wrote: > > Hi! > > > > I have noticed that Cygwin does not implement llrint. However, llrint > > is part of C99 and not having it available makes some applications (for > > example MPlayer and FFmpeg) fail to compile. > > > > Are there an

Obtaining cygwin with cygwin1.dll version 1005.14.0.0

2007-10-29 Thread Paul.Foster
Due to incompatibilities between cygwin versions we need to install a version of cygwin which is compatible with cygwin1.dll version 1005.14.0.0. api version 0.126 FYI, We are running on windows (many flavours) and cygwin is installed as part of one of our applications and cannot be changed. We ne

Re: Obtaining cygwin with cygwin1.dll version 1005.14.0.0

2007-10-29 Thread Brian Dessent
"Paul.Foster" wrote: > Due to incompatibilities between cygwin versions we need to install a > version of cygwin which is compatible with cygwin1.dll version > 1005.14.0.0. api version 0.126 That is a convoluted way of saying version 1.5.14. This is a very dated version, released more than 2.5 y

Re: llrint implementation in Cygwin

2007-10-29 Thread Brian Dessent
Victor Paesa wrote: > I found another way: leverage the llrint() implementation in MinGW. > > a) We need first to download the mingw-runtime Cygwin package. > > b) Then we create a small library: > > ar x /usr/lib/mingw/libmingwex.a llrint.o > ar cq /usr/local/lib/libllrint.a llrint.o > > c) A

Re: cygwin stable and cvs snapshot - fork() bug

2007-10-29 Thread Larry Hall (Cygwin)
[EMAIL PROTECTED] wrote: 1 [main] mpd 1736 C:\cygwin\home\mpx\mpd-test\mpd.exe: *** fatal error - MapViewOfFileEx (0x1903), Win3 2 error 6. Terminating. 68 [main] mpd 676 fork: child 1736 - died waiting for dll loading, errno 11 problems fork'ing for daemon! [...] Have you

RE: llrint implementation in Cygwin

2007-10-29 Thread Dave Korn
On 29 October 2007 12:28, Brian Dessent wrote: > This is a very, very bad idea. MinGW uses a completely different and > incompatible C runtime (MSVCRT) and so any MinGW object that calls into > the runtime (e.g. malloc(), open(), printf(), etc) will crash and burn > hard when linked to the Cygwin

Re: llrint implementation in Cygwin

2007-10-29 Thread Brian Dessent
Dave Korn wrote: > I don't think it was being advocated in general, but I think it's reasonable > to assume that a pure const function like llrint isn't going to do anything > wacky. Yes, I realize it was probably not a worry in this particular case, but I didn't want somebody stumbling on the

RE: [ANNOUNCEMENT] New package: pdftk-1.41.1-1 -- PDF utility

2007-10-29 Thread zzapper
"Dave Korn" <[EMAIL PROTECTED]> wrote in news:02b901c81990$6b6e60c0 [EMAIL PROTECTED]: > On 28 October 2007 09:05, zzapper wrote: > >> Ignored by Vista (does anything work on Vista?) ie >> >> pdftk --help >> >> just returns w/o any message or error > > echo $? > $ pdftk --help $ echo $? 53

Re: [ANNOUNCEMENT] New package: pdftk-1.41.1-1 -- PDF utility

2007-10-29 Thread Corinna Vinschen
On Oct 29 13:09, zzapper wrote: > "Dave Korn" <[EMAIL PROTECTED]> wrote in news:02b901c81990$6b6e60c0 Any chance you can stop quoting raw email addresses? http://cygwin.com/acronyms/#PCYMTNQREAIYR Corinna -- Corinna Vinschen Please, send mails regarding Cygwin to Cygwin Proje

Re: [ANNOUNCEMENT] New package: pdftk-1.41.1-1 -- PDF utility

2007-10-29 Thread Brian Dessent
zzapper wrote: > $ pdftk --help > > $ echo $? > 53 That means you've got an installation problem -- you're missing some required library. From cygcheck, pdftk only requires libiconv2 and zlib, both of which are listed correctly in the setup.hint, and both of which are very common libraries whic

RE: cygwin stable and cvs snapshot - fork() bug

2007-10-29 Thread michael.vogt
>>> Some of the BLODA stuff has to be deinstalled entirely to have an >> effect since it hooks one of its own DLLs into some system DLL. >> >>> Another question: Does the mpd tool load DLLs at run time? Did you >> try rebasing? >> >> I rebooted my system (and disabled the AV services), so I was

Re: llrint implementation in Cygwin

2007-10-29 Thread Victor Paesa
Hi, Brian Dessent writes: > > Dave Korn wrote: > > > I don't think it was being advocated in general, but I think it's reasonable > > to assume that a pure const function like llrint isn't going to do anything > > wacky. > > Yes, I realize it was probably not a worry in this particular case, bu

How does Cygwin support Large files?

2007-10-29 Thread Hongliang Wang
Hello all, My platform is WindowsXP+SP2, Cygwin DLL release version is 1.5.24-2 I am trying to make my program support large files, so in stdio.h I found 356 #ifdef __LARGE64_FILES 357 #if !defined(__CYGWIN__) || defined(_COMPILING_NEWLIB) However, when I tried to compile with _COMPILING_NEW

Re: How does Cygwin support Large files?

2007-10-29 Thread Corinna Vinschen
On Oct 29 14:32, Hongliang Wang wrote: > > Hello all, > > My platform is WindowsXP+SP2, Cygwin DLL release version is 1.5.24-2 > > I am trying to make my program support large files, so in stdio.h I found > > 356 #ifdef __LARGE64_FILES > 357 #if !defined(__CYGWIN__) || defined(_COMPILING_NEWL

RE: How does Cygwin support Large files?

2007-10-29 Thread Hongliang Wang
Ok, Thanks! > Date: Mon, 29 Oct 2007 15:43:09 +0100 > From: [EMAIL PROTECTED] > To: cygwin@cygwin.com > Subject: Re: How does Cygwin support Large files? > > On Oct 29 14:32, Hongliang Wang wrote: >> >> Hello all, >> >> My platform is WindowsXP+SP2, Cygwin DLL release version is 1.5.24-2 >> >> I

Re: [ANNOUNCEMENT] New package: pdftk-1.41.1-1 -- PDF utility

2007-10-29 Thread David Rothenberger
On 10/29/2007 6:24 AM, Brian Dessent wrote: zzapper wrote: $ pdftk --help $ echo $? 53 That means you've got an installation problem -- you're missing some required library. From cygcheck, pdftk only requires libiconv2 and zlib, both of which are listed correctly in the setup.hint, and both

Bug in TZ with new daylight savings time

2007-10-29 Thread Reklau, Matthew
Running an MS Windows application from within cygwin fails because it believes the timezone is wrong.  Running from the Windows GUI and from DOS is fine.  This is a huge problem for my company as we need to be able to launch this tool from a perl script under cygwin and cannot. I read: http://w

Access Denied to registry keys HKLM\Software

2007-10-29 Thread Adrian Hill
I am new to Cygwin, we are running version 1.59. Cygwin used is for account management for our Active Directory. Cygwin is used to launch an C-based program (that is running as service) that calls a VB6 Program, which is called via a SSH connection from our central account management system that

cannot start sshd on cygwin- win xp

2007-10-29 Thread [EMAIL PROTECTED]
a selection of all the error message I am getting. Messing around trying to start it. it doesn`t show up on netstat -an. I did install and uninstall a windows port of openssh, I don`T know if that messed things up. But nothing i easily do about that if it did.. $ cygrunsrv -I sshd -p /usr/

Re: Access Denied to registry keys HKLM\Software

2007-10-29 Thread Larry Hall (Cygwin)
Adrian Hill wrote: I am new to Cygwin, we are running version 1.59. Cygwin used is for account management for our Active Directory. Cygwin is used to launch an C-based program (that is running as service) that calls a VB6 Program, which is called via a SSH connection from our central account ma

Re: cannot start sshd on cygwin- win xp

2007-10-29 Thread Larry Hall (Cygwin)
[EMAIL PROTECTED] wrote: a selection of all the error message I am getting. Messing around trying to start it. it doesn`t show up on netstat -an. I did install and uninstall a windows port of openssh, I don`T know if that messed things up. But nothing i easily do about that if it did.. L