Killing-Process woes

2017-06-19 Thread Ronald Otto Valentin Fischer
I'm spawning processes in background, but have problems killing them. Here is the setup: My script (zsh) creates one or more processes in the background, and waits until they are finished. I have also set up a trap for SIGINT, with the intention that if I press Control-C, the background processes

[ANNOUNCEMENT] vinagre 3.22.0-2

2017-06-19 Thread Yaakov Selkowitz
The following packages have been uploaded to the Cygwin distribution: * vinagre-3.22.0-2 Vinagre is a remote desktop viewer application for the GNOME desktop which uses Virtual Network Computing (VNC), and other protocols, to remotely control another computer. Vinagre can be used to control ano

[ANNOUNCEMENT] remmina 1.2.0-0.4.rcgit.18

2017-06-19 Thread Yaakov Selkowitz
The following packages have been uploaded to the Cygwin distribution: * remmina-1.2.0-0.4.rcgit.18 * remmina-devel-1.2.0-0.4.rcgit.18 Remmina is a remote desktop client written in GTK+, aiming to be useful for system administrators and travellers, who need to work with lots of remote computers

[ANNOUNCEMENT] spice-gtk 0.33-1, spice 0.13.3-1

2017-06-19 Thread Yaakov Selkowitz
The following packages have been uploaded to the Cygwin distribution: * spice-gtk-0.33-1 * spice-protocol-0.12.12-1 * libspice-client-glib2.0_8-0.33-1 * libspice-client-glib2.0-devel-0.33-1 * libspice-client-gtk3.0_5-0.33-1 * libspice-client-gtk3.0-devel-0.33-1 * libspice-controller0-0.33-1 * libs

[ANNOUNCEMENT] libusb1.0 1.0.21-1

2017-06-19 Thread Yaakov Selkowitz
The following packages have been uploaded to the Cygwin distribution: * libusb1.0-1.0.21-1 * libusb1.0-devel-1.0.21-1 * mingw64-i686-libusb1.0-1.0.21-1 * mingw64-x86_64-libusb1.0-1.0.21-1 libusb is a library that provides generic access to USB devices. As a library, it is meant to be used by dev

RE: Updated: setup (2.880)

2017-06-19 Thread Nellis, Kenneth
From: Andrey Repin > Doesn't matter what syntax I use, I'm unable to reproduce your effects. > ... > Get rid of intercepting proxies and your problem will go away as well. > It's not a matter of syntax. I'm unaware of any proxies involved. I haven't set any up. Don't even know how. Any proxies th

Re: Updated: setup (2.880)

2017-06-19 Thread Andrey Repin
Greetings, Nellis, Kenneth! > The folks who couldn't reproduce it were using different > command syntax than I. Doesn't matter what syntax I use, I'm unable to reproduce your effects. > I shall change to the better syntax. Get rid of intercepting proxies and your problem will go away as well.

RE: Updated: setup (2.880)

2017-06-19 Thread Nellis, Kenneth
The folks who couldn't reproduce it were using different command syntax than I. Mine: wget -O setup-x86_64.exe http://cygwin.com/setup-x86_64.exe Theirs: wget https://cygwin.com/setup-x86_64.exe Why did I use that syntax? Because it was given in the OP, http://cygwin.com/ml/cygwin/2012-04/msg0

Re: Updated: setup (2.880)

2017-06-19 Thread Andrey Repin
Greetings, Jon Turney! >> $ wget https://cygwin.com/setup-x86_64.exe >> --2017-06-19 17:31:56-- https://cygwin.com/setup-x86_64.exe >> Resolving cygwin.com... 209.132.180.131 >> Connecting to cygwin.com|209.132.180.131|:443... connected. >> HTTP request sent, awaiting response... 200 OK >> Length

[ANNOUNCEMENT] Updated: libaprutil1-1.6.0-1

2017-06-19 Thread David Rothenberger
DESCRIPTION: The mission of the Apache Portable Runtime (APR) project is to create and maintain software libraries that provide a predictable and consistent interface to underlying platform-specific implementations. The primary goal is to provide an API to which software developers may

[ANNOUNCEMENT] Updated: {apr1,libapr1,libapr1-devel}-1.6.2-1

2017-06-19 Thread David Rothenberger
CYGWIN NEWS: The library was built with TCP_NOPUSH support disabled. Cygwin defines TCP_NOPUSH, but returns "protocol not defined" when it's used. According to http://msdn.microsoft.com/en-us/library/ms738596%28v=vs.85%29.aspx this is because Windows doesn't support it. NEWS:

[ANNOUNCEMENT] procps-ng 3.3.12-2

2017-06-19 Thread Wayne Porter
The following packages have been uploaded to the Cygwin distribution: * procps-ng-3.3.12-2 * libprocps-ng6-3.3.12-2 * libprocps-ng-devel-3.3.12-2 This package provides command line and full screen utilities for browsing procfs, a pseudo file system dynamically generated by the kernel to provide i

Re: Updated: setup (2.880)

2017-06-19 Thread Jon Turney
On 19/06/2017 16:29, Nellis, Kenneth wrote: #!/bin/sh # From http://cygwin.com/ml/cygwin/2012-04/msg00714.html name=setup-x86_64.exe wget -O $name --quiet http://cygwin.com/$name || exit # ACL issues require some fixing up after wget chmod +x $name exit ...but Windows complained about the file f

Re: Updated: setup (2.880)

2017-06-19 Thread Andrey Repin
Greetings, Nellis, Kenneth! > name=setup-x86_64.exe > wget -O $name --quiet http://cygwin.com/$name || exit Wait, WHY do you download it over HTTP? Use HTTPS. -- With best regards, Andrey Repin Monday, June 19, 2017 19:28:44 Sorry for my terrible english... -- Problem reports: http://

Re: Updated: setup (2.880)

2017-06-19 Thread Andrey Repin
Greetings, Nellis, Kenneth! > wget -O $name --quiet http://cygwin.com/$name || exit Do not use wget -O name unless you have no other choice. The construction is essentially equal to wget -O - --quiet http://cygwin.com/$name > "$name" Means, it will never allow -N to work. (When -O given, -N is

Re: Updated: setup (2.880)

2017-06-19 Thread Marco Atzeri
On 19/06/2017 17:29, Nellis, Kenneth wrote: From: cygwin-announce-owner A new version of Setup, release 2.880, has been uploaded to https://cygwin.com/setup-x86.exe (32 bit version) https://cygwin.com/setup-x86_64.exe (64 bit version) ... Please send bug reports, as usual, to the pu

RE: Updated: setup (2.880)

2017-06-19 Thread Nellis, Kenneth
From: cygwin-announce-owner > > A new version of Setup, release 2.880, has been uploaded to > >https://cygwin.com/setup-x86.exe (32 bit version) >https://cygwin.com/setup-x86_64.exe (64 bit version) > ... > Please send bug reports, as usual, to the public mailing list cygwin AT > cyg

Re: bug in lrint [was: FW: Printing long int in C program under cygwin64]

2017-06-19 Thread Carl Fredrik Forsberg
Hello again. I have performed a few more tests with the program below. The lrint() family of functions I tested all appear tohave problems with negative numbers. There seem to be an unsigned vs. signed integer problems. I could not find cygwin/math/lrint.c on my Cygwin installation where patche