date command shows time 20 minutes into future

2012-01-27 Thread David Balažic
Hi! I'm running an up to date version of cygwin (update a week ago or so) on Windows XP Pro SP3. Today I noticed the date command prints the wrong time: - actual wall clock time: 10:47 - date output: Fri Jan 27 11:07:38 CEST 2012 - date -u: Fri Jan 27 10:08:01 UTC 2012 - windows system time (

[ANNOUNCEMENT] New package: gsm-1.0.13-2

2012-01-27 Thread Yaakov (Cygwin/X)
The following packages have been added to the Cygwin distribution: *** gsm/libgsm1/libgsm-devel 1.0.13-2 GSM is a C library implementation of the European GSM 06.10 provisional standard for full-rate speech transcoding, prI-ETS 300 036. -- Yaakov Cygwin/X CYGWIN-ANNOUNCE UNSUBSCRIBE INFO ===

[ANNOUNCEMENT] New package: libsndfile-1.0.25-1

2012-01-27 Thread Yaakov (Cygwin/X)
The following packages have been added to the Cygwin distribution: *** libsndfile-1.0.25-1 *** libsndfile1-1.0.25-1 *** libsndfile-devel-1.0.25-1 libsndfile is a library of C routines for reading and writing files containing sampled audio data in several formats. -- Yaakov Cygwin/X CYGWIN-AN

[ANNOUNCEMENT] New package: liborc0.4-0.4.14-1

2012-01-27 Thread Yaakov (Cygwin/X)
The following packages have been added to the Cygwin distribution: *** liborc0.4_0-0.4.14-1 *** liborc0.4-devel-0.4.14-1 Orc is a library and set of tools for compiling and executing very simple programs that operate on arrays of data. The language is a generic assembly language that represents

[ANNOUNCEMENT] New package: wavpack-4.60.1-1

2012-01-27 Thread Yaakov (Cygwin/X)
The following packages have been added to the Cygwin distribution: *** wavpack-4.60.1-1 *** libwavpack1-4.60.1-1 *** libwavpack-devel-4.60.1-1 WavPack is a completely open audio compression format providing lossless, high-quality lossy, and a unique hybrid compression mode. -- Yaakov Cygwin/X

[ANNOUNCEMENT] New package: libsamplerate-0.1.7-10

2012-01-27 Thread Yaakov (Cygwin/X)
The following packages have been added to the Cygwin distribution: *** libsamplerate-0.1.7-10 *** libsamplerate0-0.1.7-10 *** libsamplerate-devel-0.1.7-10 libsamplerate provides a Sample Rate Converter for audio. -- Yaakov Cygwin/X CYGWIN-ANNOUNCE UNSUBSCRIBE INFO ===

[ANNOUNCEMENT] New package: json-c-0.9-1

2012-01-27 Thread Yaakov (Cygwin/X)
The following packages have been added to the Cygwin distribution: *** libjson0-0.9-1 *** libjson-devel-0.9-1 JSON-C implements a reference counting object model that allows you to easily construct JSON objects in C, output them as JSON formatted strings and parse JSON formatted strings back into

[ANNOUNCEMENT] New package: pulseaudio-1.1-1

2012-01-27 Thread Yaakov (Cygwin/X)
The following packages have been added to the Cygwin distribution: *** pulseaudio-1.1-1 *** libpulse0-1.1-1 *** libpulse-mainloop-glib0-1.1-1 *** libpulse-simple0-1.1-1 *** libpulse-devel-1.1-1 *** vala-libpulse-1.1-1 PulseAudio is a sound system for POSIX OSes, meaning that it is a proxy for you

[ANNOUNCEMENT] Updated: esound-0.2.41-11

2012-01-27 Thread Yaakov (Cygwin/X)
The following packages have been updated for the Cygwin distribution: *** esound-0.2.41-11 *** libesd0-0.2.41-11 *** libesd-devel-0.2.41-11 This release removes the esd(1) sound server from esound in favour of the more modern PulseAudio sound server's ESounD compatibility interface. The library

[ANNOUNCEMENT] New package: sox-14.3.2-2

2012-01-27 Thread Yaakov (Cygwin/X)
The following packages have been added to the Cygwin distribution: *** sox-14.3.2-2 *** libsox1-14.3.2-2 *** libsox-devel-14.3.2-2 *** sox-fmt-ao-14.3.2-2 *** sox-fmt-flac-14.3.2-2 *** sox-fmt-pulseaudio-14.3.2-2 *** sox-fmt-wavpack-14.3.2-2 SoX (also known as Sound eXchange) translates sound fil

gcc-4 segmentation fault while compiling Tk (from CPAN)

2012-01-27 Thread Marc Girod
I just filed a report to gcc bugzilla: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=52017 for compiling Tk-804.030 on Cygwin 1.7.9 with gcc-4 4.5.3-3 . Marc -- View this message in context: http://old.nabble.com/gcc-4-segmentation-fault-while-compiling-Tk-%28from-CPAN%29-tp33213218p33213218.h

Re: src/winsup/cygwin ChangeLog dcrt0.cc

2012-01-27 Thread Václav Zeman
On 2012-01-27 10:28, cori...@cygwin.com wrote: CVSROOT:/cvs/src Module name:src Changes by: cori...@sourceware.org 2012-01-27 09:28:38 Modified files: winsup/cygwin : ChangeLog dcrt0.cc Log message: * dcrt0.cc (is_dos_path): New macro to recognize drive letter

Re: src/winsup/cygwin ChangeLog dcrt0.cc

2012-01-27 Thread Chris January
On 27.01.2012 10:46, Václav Zeman wrote: +#define is_dos_path(s) (isdrive(s) \ + || ((s)[0] == '\\' \ + && (s)[1] == '\\' \ + && isalpha ((s)[2]) \ + && strchr ((s) + 3, '\\'))) Is it safe to acce

Re: date command shows time 20 minutes into future

2012-01-27 Thread Earnie Boyd
On Fri, Jan 27, 2012 at 4:50 AM, David Balažic wrote: > Hi! > > I'm running an up to date version of cygwin (update a week ago or so) > on Windows XP Pro SP3. > > Today I noticed the date command prints the wrong time: >  - actual wall clock time: 10:47 >  - date output: Fri Jan 27 11:07:38 CEST 20

Re: date command shows time 20 minutes into future

2012-01-27 Thread Corinna Vinschen
On Jan 27 10:50, David Balažic wrote: > Hi! > > I'm running an up to date version of cygwin (update a week ago or so) > on Windows XP Pro SP3. > > Today I noticed the date command prints the wrong time: > - actual wall clock time: 10:47 > - date output: Fri Jan 27 11:07:38 CEST 2012 > - date -

Re: date command shows time 20 minutes into future

2012-01-27 Thread Cliff Hones
On 27/01/2012 12:48, Corinna Vinschen wrote: > On Jan 27 10:50, David Balažic wrote: >> Hi! >> >> I'm running an up to date version of cygwin (update a week ago or so) >> on Windows XP Pro SP3. >> >> Today I noticed the date command prints the wrong time: >> - actual wall clock time: 10:47 >> - d

Re: date command shows time 20 minutes into future

2012-01-27 Thread Corinna Vinschen
On Jan 27 14:54, Cliff Hones wrote: > On 27/01/2012 12:48, Corinna Vinschen wrote: > > On Jan 27 10:50, David Balažic wrote: > >> Hi! > >> > >> I'm running an up to date version of cygwin (update a week ago or so) > >> on Windows XP Pro SP3. > >> > >> Today I noticed the date command prints the wro

Re: date command shows time 20 minutes into future

2012-01-27 Thread David Balažic
Hi! Just to note, the UTC printout is wrong too, so I assume this has nothing to do with timezones. European time is UTC+1 currently. TZ=CET date This prints he same time as with no TZ. (the difference being only the "CE(S)T" string) Regards, David -- Problem reports: http://cygwin.com/p

What Package Contains the cw (Color Wrapper) Software

2012-01-27 Thread lookingupward
I cannot locate cw on the ftp site of a cygwin mirror. I would like to know if it is bundled under some other package name, possibly with other utilities. Thanks! -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http

Re: What Package Contains the cw (Color Wrapper) Software

2012-01-27 Thread Larry Hall (Cygwin)
On 1/27/2012 4:00 PM, lookingupw...@lavabit.com wrote: I cannot locate cw on the ftp site of a cygwin mirror. I would like to know if it is bundled under some other package name, possibly with other utilities. http://cygwin.com/cgi-bin2/package-grep.cgi?grep=bin%2Fcw.exe -- Larry __

What Package Contains the cw (Color Wrapper) Software

2012-01-27 Thread lookingupward
Thank you Larry! My problem is I am trying to download it via ftp rather than Cygwin's Setup.exe and I cannot find it on the ftp site. (I am limited by a proxy server from using Cygwin's setup.ext to find it directly). If I wanted to go to an ftp mirror site, like ftp://cygwin.mirrorcatalogs.com

Re: What Package Contains the cw (Color Wrapper) Software

2012-01-27 Thread lookingupward
Oops. I'm signed up as digest and I forgot to include the subject "RE: " on the prev post. > Thank you Larry! > > My problem is I am trying to download it via ftp rather than Cygwin's > Setup.exe and I cannot find it on the ftp site. (I am limited by a proxy > server from using Cygwin's setup.ex

Perl system() function works sometimes.

2012-01-27 Thread Gary E. Barnes
perl -e 'system ("/bin/ls -l /tmp");' # still works perl -e 'system ("/bin/ls -l /tmp > /tmp/xxx");'# no longer works perl -e 'system ("(/bin/ls -l /tmp>");' # no longer works Perl's system() function is just the Unix system() call. The string argument is

Re: What Package Contains the cw (Color Wrapper) Software

2012-01-27 Thread Jeremy Bopp
On 01/27/2012 03:43 PM, lookingupw...@lavabit.com wrote: > Oops. I'm signed up as digest and I forgot to include the subject "RE: " > on the prev post. > >> Thank you Larry! >> >> My problem is I am trying to download it via ftp rather than Cygwin's >> Setup.exe and I cannot find it on the ftp si

Re: What Package Contains the cw (Color Wrapper) Software

2012-01-27 Thread lookingupward
I may have mis-spoke. No proxy settings are actually configured in the browser but stringent security filtering is in place. The way the network here is configured, it will not allow it. No error and no list of mirrors comes up. I have already used this alternative ftp method to install another

Re: Perl system() function works sometimes.

2012-01-27 Thread lookingupward
So it acts up when it tries to write to tmp directory. Does it still have permission to write to tmp? Is is possible your space is getting filled up? -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.c

"git clone" over ssh fails intermittently w/snapshot 20120123

2012-01-27 Thread Kevin Layer
Cygwin Configuration Diagnostics Current System Time: Fri Jan 27 14:24:45 2012 Windows 7 Ultimate Ver 6.1 Build 7601 Service Pack 1 Running under WOW64 on AMD64 Path: C:\cygwin\usr\local\bin C:\cygwin\bin C:\Perl64\site\bin C:\Perl64\bin . C:\bin C:\sbin C:\cygwin\bin C:\cygwin\usr\loca

Re: "git clone" over ssh fails intermittently w/snapshot 20120123

2012-01-27 Thread Kevin Layer
I don't know what happened to the email in transit, but much information at the head of the email was chopped off. From my outbox, here's the missing bit: * This is the failure mode: $ rm -fr test; git clone git:/repo/git/composer test Cloning into test... fatal: The remote end

Re: What Package Contains the cw (Color Wrapper) Software

2012-01-27 Thread Larry Hall (Cygwin)
On 1/27/2012 4:40 PM, lookingupw...@lavabit.com wrote: Thank you Larry! My problem is I am trying to download it via ftp rather than Cygwin's Setup.exe and I cannot find it on the ftp site. Well, if you followed the link I sent, you'd recognize that there is no such package in the distribution

Re: "git clone" over ssh fails intermittently w/snapshot 20120123

2012-01-27 Thread Larry Hall (Cygwin)
On 1/27/2012 5:32 PM, Kevin Layer wrote: This is the failure mode: $ rm -fr test; git clone git:/repo/git/composer test Cloning into test... fatal: The remote end hung up unexpectedly fatal: early EOF fatal: index-pack failed Is this failure new or was it happening before this snapshot too?

Re: What Package Contains the cw (Color Wrapper) Software

2012-01-27 Thread lookingupward
Oh, sorry Larry. I mis-read it. My mistake. -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple

Re: What Package Contains the cw (Color Wrapper) Software

2012-01-27 Thread Larry Hall (Cygwin)
On 1/27/2012 7:13 PM, lookingupw...@lavabit.com wrote: Oh, sorry Larry. I mis-read it. My mistake. No apology necessary. I can see how you might interpret in passing the link I sent to the results of the package search as one for the package itself. -- Larry ___

Re: Problem with gethostid

2012-01-27 Thread Yuri Gribov
Corinna, > did you read my replies to your original mail? I was not subscribed to the list so I was not receiving your emails (you'll probably want to "Reply all" next time...). Thanks a lot for your help! When does this change go to official cygwin1.dll? I don't dare to build Cygwin myself...