[ANNOUNCEMENT] cygport 0.31.0-1

2018-02-27 Thread Yaakov Selkowitz
The following packages have been uploaded to the Cygwin distribution: * cygport-0.31.0-1 cygport is the standard method for building and maintaining packages for the Cygwin distribution. This release includes some new features: * CMake-based builds use Ninja instead of Unix Makefiles to compil

Re: gawk Regression: CR characters are not stripped on Windows

2018-02-27 Thread Andrey Repin
Greetings, Orgad Shaneh! > 1. The gawk info page states that: >> Under MS-Windows, ^^^ >> 'gawk' (and many other text programs) silently >> translates end-of-line '\r\n' to '\n' on input and '\n' to '\r\n' on >> output. > and on Feb 8 the following section was added: >> Recent v

Re: RPC clnt_create() adress already in use

2018-02-27 Thread PAULUS, Raimund, TI-ABN
High Corinna, is it possible to get the patched cygwin1.dll for Cygwin 2.5.1? I have to support several older Win XP SP3 boxes. Raimund -Ursprüngliche Nachricht- Von: cygwin-ow...@cygwin.com [mailto:cygwin-ow...@cygwin.com] Im Auftrag von Corinna Vinschen Gesendet: Dienstag, 6. Februar

Re: gawk Regression: CR characters are not stripped on Windows

2018-02-27 Thread Orgad Shaneh
On Tue, Feb 27, 2018 at 11:48 AM, Andrey Repin wrote: > Greetings, Orgad Shaneh! > >> 1. The gawk info page states that: > >>> Under MS-Windows, > ^^^ >>> 'gawk' (and many other text programs) silently >>> translates end-of-line '\r\n' to '\n' on input and '\n' to '\r\n' on >>> out

Re: RPC clnt_create() adress already in use

2018-02-27 Thread Corinna Vinschen
On Feb 27 09:54, PAULUS, Raimund, TI-ABN wrote: > High Corinna, > > is it possible to get the patched cygwin1.dll for Cygwin 2.5.1? I have to > support several older Win XP SP3 boxes. Sorry, we only support the current Cygwin build and keep the next older version as fallback. It's just not feas

Re: environ: fix link error on 64-bit Cygwin

2018-02-27 Thread Corinna Vinschen
On Feb 26 16:28, Ken Brown wrote: > On 1/31/2018 9:40 AM, Corinna Vinschen wrote: > > On Jan 31 07:52, Eric Blake wrote: > > > Forwarding from the gnulib list; is this something we should fix in > > > cygwin proper? > > > > Why does anybody remove the -Wl,--disable-auto-import flag? What for? > >

Re: Request new gawk release

2018-02-27 Thread Corinna Vinschen
On Feb 26 19:05, Steven Penny wrote: > Please release new Cygwin gawk. Current version is 4.2.0 (Oct 2017), and since > then 1 version has dropped [1]: > > 4.2.1 (Feb 2018) You know that the 4.2.1 upstream release was only 2 days ago? You may want to give the maintainer a bit of time to prepare

[ANNOUNCEMENT] Updated: gawk-4.2.1-1

2018-02-27 Thread Corinna Vinschen
I've updated the gawk package to 4.2.1-1. This is a new upstream release. Changes from 4.2.0 to 4.2.1 --- 1. Support for OS/2 has been brought up to date. This support was accidentally omitted from the initial 4.2 release, for which we apologize. 2. The manual rec

Re: gawk Regression: CR characters are not stripped on Windows

2018-02-27 Thread Houder
On Tue, 27 Feb 2018 09:22:18, Orgad Shaneh wrote: > Cross-posting per Eli Zaretskii's request. > > CR characters used to be automatically stripped on Windows (MSYS2 and > Cygwin environments). This is broken in 4.2.0. 4.2.0 (change was made in 4.1.4) Something for you to study (while Corin

Re: gawk Regression: CR characters are not stripped on Windows

2018-02-27 Thread Steven Penny
On Tue, 27 Feb 2018 12:13:37, Orgad Shaneh wrote: I see. This is however not true for MSYS2. Then I guess we will just keep this as a patch for MSYS2, which is already merged[1]? [1] https://github.com/Alexpux/MSYS2-packages/commit/c81d882b9838f8245603c7a8d5f8845eeadd6c2a yes, it is sad that

Re: environ: fix link error on 64-bit Cygwin

2018-02-27 Thread cyg Simple
On 2/26/2018 4:28 PM, Ken Brown wrote: > On 1/31/2018 9:40 AM, Corinna Vinschen wrote: >> On Jan 31 07:52, Eric Blake wrote: >>> Forwarding from the gnulib list; is this something we should fix in >>> cygwin proper? >> >> Why does anybody remove the -Wl,--disable-auto-import flag?  What for? >> The

Re: Setting a bash variable from backtick operator fails

2018-02-27 Thread cyg Simple
On 2/27/2018 9:12 AM, Numien wrote: > While working on diagnosing an issue with autotools, I found Cygwin's > bash seems to not be able to set a variable from backtick substitution, > at least on my system (Cygwin x86_64, updated today, on Win10) > > > On a Linux system it works as expected: > >

Re: Setting a bash variable from backtick operator fails

2018-02-27 Thread Andrey Repin
Greetings, Numien! > While working on diagnosing an issue with autotools, I found Cygwin's > bash seems to not be able to set a variable from backtick substitution, > at least on my system (Cygwin x86_64, updated today, on Win10) > On a Linux system it works as expected: > $ test=`echo "x86_64-

Re: gawk Regression: CR characters are not stripped on Windows

2018-02-27 Thread Brian Inglis
On 2018-02-27 00:22, Orgad Shaneh wrote: > Cross-posting per Eli Zaretskii's request. > CR characters used to be automatically stripped on Windows (MSYS2 and > Cygwin environments). This is broken in 4.2.0. Cygwin binary mounts treat files as on Unix. You missed all the discussions in early 2017

Re: Setting a bash variable from backtick operator fails

2018-02-27 Thread Marco Atzeri
On 27/02/2018 15:47, Andrey Repin wrote: Greetings, Numien! While working on diagnosing an issue with autotools, I found Cygwin's bash seems to not be able to set a variable from backtick substitution, at least on my system (Cygwin x86_64, updated today, on Win10) On a Linux system it works

Re: Setting a bash variable from backtick operator fails

2018-02-27 Thread Brian Inglis
On 2018-02-27 07:12, Numien wrote: > While working on diagnosing an issue with autotools, I found Cygwin's > bash seems to not be able to set a variable from backtick substitution, > at least on my system (Cygwin x86_64, updated today, on Win10) > On a Linux system it works as expected: > $ test=`e

Re: [ANNOUNCEMENT] Test: postgresql-10.2-1

2018-02-27 Thread Marco Atzeri
On 10/02/2018 14:50, Marco Atzeri wrote: Version 10.2-1  of packages   libecpg-compat3   libecpg-devel   libecpg6   libpgtypes3   libpq-devel   libpq5   postgresql   postgresql-client   postgresql-contrib   postgresql-devel   postgresql-doc   postgresql-plperl   postgresql-plpython

Re: Setting a bash variable from backtick operator fails

2018-02-27 Thread Marco Atzeri
going back to the mailing list... On 27/02/2018 16:53, Jürgen Wagner wrote: Hi,   the expression you posted works on my Cygwin. However, I've had similar failures in the past. If you are a user of Comodo CIS/AntiVirus, check out the settings for shellcode injection. Enable the checks, allow all

Re: gawk Regression: CR characters are not stripped on Windows

2018-02-27 Thread Eric Blake
[urrgh - Cygwin's list policy in supplying reply-to makes it difficult to reply-to-all] On 02/27/2018 01:22 AM, Orgad Shaneh wrote: Hi, Cross-posting per Eli Zaretskii's request. CR characters used to be automatically stripped on Windows (MSYS2 and Cygwin environments). This is broken in 4.2.

Re: Setting a bash variable from backtick operator fails

2018-02-27 Thread Numien
Jürgen Wagner nailed it; it was my antivirus, and disabling the shellcode injection check fixed it. Thanks everyone for the help. -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe

Autodesk Users List.

2018-02-27 Thread Amy Hodge
Hi, I would like to know if you are interested in acquiring Network Software Users List. Information fields we provide for each contact in the list: MYVRMS, Volanté Systems, TravelNet Solutions, Givex, InnQuest Software, TurfCare Supply Corp, Software Developers Inc, and Software Develop

Pasting from GNU/Linux into X11 Emacs running on Cygwin

2018-02-27 Thread Achim Gratz
The first paste from my GNU/Linux konsole session into emacs-x11 running on Cygwin and displaying on the GNU/Linux display gets Emacs into a spin loop. I used to be able to C-g my way out of it, but since the latest major Emacs update I need to send Emacs a USR2 signal, which produces this backtr

Re: Setting a bash variable from backtick operator fails

2018-02-27 Thread Kaz Kylheku
On 2018-02-27 09:10, Numien wrote: Jürgen Wagner nailed it; it was my antivirus, and disabling the shellcode injection check fixed it. However, this time-wasting pattern of dealing with the issue by end users is not a good way. A better approach would be to identify some common paterns of BL

Re: Setting a bash variable from backtick operator fails

2018-02-27 Thread Vince Rice
> On Feb 27, 2018, at 2:29 PM, Kaz Kylheku <920-082-4...@kylheku.com> wrote: > > On 2018-02-27 09:10, Numien wrote: >> Jürgen Wagner nailed it; it was my antivirus, and disabling the >> shellcode injection check fixed it. > > However, this time-wasting pattern of dealing with the issue by end use

Re: [ANNOUNCEMENT] lz4 1.7.5-1

2018-02-27 Thread Jon Turney
On 27/02/2018 06:11, Yaakov Selkowitz wrote: On 2018-02-26 19:20, Brian Inglis wrote: Is lz4 statically built with and not depend on liblz4_1? Correct. Setup is not upgrading lz4 from 131 - should the solver be picking that up now? I'm not sure; Jon? No, 131-1 is still greater than 1.7.5

quick tcler's question: using cygwin

2018-02-27 Thread U-BLASTER-6000\mtdew
Hi tcler's- I use cygwin a lot for emacs email with mu4e, gnucash, and gnucobol to name a few. I'd like to use it for Tcl. One requirement I am looking for is teacup/teapot. If I need an extension that isn't in the packages from the official cygwin repository, I'd like to get it maybe through t

gcc frameworks U++

2018-02-27 Thread U-BLASTER-6000\mtdew
Hi- I recently had a little difficulty with mingw in a self contained environment (just the compiler) not the msys with mingw. I am wondering does anyone here use U++ with mingw? I got the postgresql tutorial to compile and link in U++ but I did so in virtualbox on with linux. I tried to keep t

[ANNOUNCEMENT] giflib 5.1.4-1

2018-02-27 Thread Yaakov Selkowitz
The following packages have been uploaded to the Cygwin distribution: * giflib-5.1.4-1 * libgif7-5.1.4-1 * libgif-devel-5.1.4-1 * mingw64-i686-giflib-5.1.4-1 * mingw64-x86_64-giflib-5.1.4-1 Library and utilities for manipulating GIF graphics, with LZW compression support. This is an update to t

[ANNOUNCEMENT] Various packages rebuilt for dependencies

2018-02-27 Thread Yaakov Selkowitz
The following packages, along with their subpackages, have been uploaded to the Cygwin distribution: * imlib-1.9.15-16 * imlib2-1.4.10-1 * imlib2_loaders-1.4.10-1 * kdelibs-4.14.38-3 * kf5-khtml-5.43.0-2 * libiptcdata-1.0.4-4 * libwebp-0.6.1-2 * ming-0.4.8-2 * tracker-miners-2.0.4-2 * WindowMaker-

now i remember gcc U++ error

2018-02-27 Thread U-BLASTER-6000\mtdew
Hi - I couldn't place it off hand. Now i remember. U++ complained of os not detected when under gcc without mingw. It doesn't recognize gcc unless it is part of the self contained mingw. So it seems my hand is forced to learn more about mingw as I like the U++ framework. I gues that is a projec

[ANNOUNCEMENT] publicsuffix-list 20180223-1

2018-02-27 Thread Yaakov Selkowitz
The following packages have been uploaded to the Cygwin distribution: * publicsuffix-list-20180223-1 * publicsuffix-list-dafsa-20180223-1 A public suffix is one under which Internet users can (or historically could) directly register names. Some examples of public suffixes are .com, .co.uk and

[ANNOUNCEMENT] ca-certificates 2.22-1

2018-02-27 Thread Yaakov Selkowitz
The following packages have been uploaded to the Cygwin distribution: * ca-certificates-2.22-1 Mozilla's CA root certificates for use with OpenSSL, NSS, GnuTLS, and other software that handles certificate verification. This release includes the latest changes from Mozilla: https://developer.mo

re: U++ and mingw

2018-02-27 Thread U-BLASTER-6000\mtdew
Hi- I read up on mingw system. I now can use it with U++. I know cygwin has mingw packages. I'd rather just leave the gcc package set up without mingw and install mingw from outside of cygwin. I really like cygwin and will try to use it for Tcl even if I don't get the teacup system. They recom

Re: RPC clnt_create() adress already in use

2018-02-27 Thread Mark Geisert
Corinna Vinschen wrote: On Feb 27 09:54, PAULUS, Raimund, TI-ABN wrote: High Corinna, is it possible to get the patched cygwin1.dll for Cygwin 2.5.1? I have to support several older Win XP SP3 boxes. Sorry, we only support the current Cygwin build and keep the next older version as fallback.

Re: Autodesk Users List.

2018-02-27 Thread Liam Black
OPT OUT On Tue, Feb 27, 2018 at 2:37 PM, Amy Hodge wrote: > Hi, > > > > > > I would like to know if you are interested in acquiring Network Software > Users List. > > > > Information fields we provide for each contact in the list: MYVRMS, > Volanté Systems, TravelNet Solutions, Givex, InnQuest S

OPT OUT

2018-02-27 Thread Liam Black
-- 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: OPT OUT

2018-02-27 Thread R0b0t1
You can't opt out. You're stuck here, forever, with your internet friends. On Wed, Feb 28, 2018 at 12:12 AM, Liam Black wrote: > > > -- > Problem reports: http://cygwin.com/problems.html > FAQ: http://cygwin.com/faq/ > Documentation: http://cygwin.com/docs.html > U

Re: OPT OUT

2018-02-27 Thread Wayne Barron
It was a spam message, and Liam Black followed the directions to OPT OUT of the SPAM message. To funny. -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.co

Re: OPT OUT

2018-02-27 Thread Ben Kamen
On 02/28/2018 12:50 AM, Wayne Barron wrote: > To funny. > Sometimes I wish we could take away some adults internet access. You know -- before they hurt themselves with it. ;) -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: