The following packages have been updated for the Cygwin distribution:
*** libxslt-1.1.26-3
*** libxslt-devel-1.1.26-3
*** libxslt-doc-1.1.26-3
*** python-libxslt-1.1.26-3
Libxslt is the XSLT C library developed for the GNOME project.
This release includes a patch for CVE-2011-3970.
--
Yaakov
On 3/2/2012 1:33 PM, Matt Seitz (matseitz) wrote:
From: Christopher Faylor
For the record, I don't think Yaakov, Corinna, or I are really
interested in spending our time adding some sort of suggestion
mechanism
to setup.exe. This would have ramifications both for setup.exe, for
the
script w
On 3/5/2012 4:23 PM, Yaakov (Cygwin/X) wrote:
On Mon, 2012-03-05 at 12:59 -0500, Ken Brown wrote:
On 3/5/2012 12:32 PM, Yaakov (Cygwin/X) wrote:
OK, here's the fix:
1) Install cygport-0.10.8.1-1 (released just moments ago).
2) Bump collection-basic to $today and build it with newly-downloaded
On Mon, 2012-03-05 at 12:59 -0500, Ken Brown wrote:
> On 3/5/2012 12:32 PM, Yaakov (Cygwin/X) wrote:
> > OK, here's the fix:
> >
> > 1) Install cygport-0.10.8.1-1 (released just moments ago).
> >
> > 2) Bump collection-basic to $today and build it with newly-downloaded
> > sources.
> >
> > 3) Bump
On March 05, 2012 6:26 PM Ryan Johnson wrote:
>On 05/03/2012 5:05 AM, Lemke, Michael SZ/HZA-ZSW wrote:
>> On March 04, 2012 12:51 PM, Corinna Vinschen wrote:
>>> On Mar 2 20:20, Andy Koppe wrote:
On 2 March 2012 08:41, Corinna Vinschen wrote:
> On Mar 1 20:43, Andy Koppe wrote:
>> On
Greetings, Ryan Johnson!
> Or do your background jobs just produce output really infrequently compared
> to 'make all'?
This is what came to my mind, when I saw your discussion.
I'm not using "Reset scrollback on display activity" feature (in PuTTY)
myself, but I see several use cases, where I c
On 3/5/2012 12:32 PM, Yaakov (Cygwin/X) wrote:
On Mon, 2012-03-05 at 09:55 -0600, Yaakov (Cygwin/X) wrote:
On Mon, 2012-03-05 at 10:52 -0500, Ken Brown wrote:
When building a package with cygport, is there an easy way to supply a
postinstall script that is used as is, without being modified by
On Mar 5 12:33, Charles Wilson wrote:
> On 3/5/2012 11:31 AM, Corinna Vinschen wrote:
> > Why this only fails when cygrunsrv has been built with gcc-4 but not with
> > gcc-3 is most puzzeling.
>
> $ cygcheck /usr/bin/cygrunsrv.exe
> C:\cygwin\bin\cygrunsrv.exe
> C:\cygwin\bin\cygwin1.dll
>
On 3/5/2012 11:31 AM, Corinna Vinschen wrote:
> Why this only fails when cygrunsrv has been built with gcc-4 but not with
> gcc-3 is most puzzeling.
$ cygcheck /usr/bin/cygrunsrv.exe
C:\cygwin\bin\cygrunsrv.exe
C:\cygwin\bin\cygwin1.dll
C:\WINDOWS\system32\KERNEL32.dll
C:\WINDOWS\syste
On Mon, 2012-03-05 at 09:55 -0600, Yaakov (Cygwin/X) wrote:
> On Mon, 2012-03-05 at 10:52 -0500, Ken Brown wrote:
> > When building a package with cygport, is there an easy way to supply a
> > postinstall script that is used as is, without being modified by the
> > functions in /usr/lib/src_posti
On 05/03/2012 5:05 AM, Lemke, Michael SZ/HZA-ZSW wrote:
On March 04, 2012 12:51 PM, Corinna Vinschen wrote:
On Mar 2 20:20, Andy Koppe wrote:
On 2 March 2012 08:41, Corinna Vinschen wrote:
On Mar 1 20:43, Andy Koppe wrote:
On 29 February 2012 12:46, Lemke, Michael SZ/HZA-ZSW wrote:
What i
On 03/05/2012 07:13 AM, Nellis, Kenneth wrote:
> From: Corinna Vinschen
>
>> Thanks for the review. Like this?
>
> If you're open to improvements, the form
> x=$(($x + 1))
> could arguably be improved with any of the following:
> x=$((x + 1))
Still POSIX, and supported by /bin/sh (e
On Mar 5 08:13, Nellis, Kenneth wrote:
> From: Corinna Vinschen
>
> > Thanks for the review. Like this?
>
> If you're open to improvements, the form
> x=$(($x + 1))
> could arguably be improved with any of the following:
> x=$((x + 1))
> let x=x+1
> ((x=x+1))
> ((x
On Mar 4 15:53, Ulf-Dietrich Braumann wrote:
> Yes, Corinna, I reverted this setting again to the default 384MB
> heap size calling:
>
> $ peflags --cygwin-heap=0 /usr/sbin/sshd.exe
> and
> $ peflags --cygwin-heap=0 /usr/bin/cygrunsrv.exe
>
> Later on, someone has recommended me to downgrade cyg
On Mon, 2012-03-05 at 10:52 -0500, Ken Brown wrote:
> When building a package with cygport, is there an easy way to supply a
> postinstall script that is used as is, without being modified by the
> functions in /usr/lib/src_postinst.cygpart? My question is motivated by
> the suggestion in
>
>
When building a package with cygport, is there an easy way to supply a
postinstall script that is used as is, without being modified by the
functions in /usr/lib/src_postinst.cygpart? My question is motivated by
the suggestion in
http://cygwin.com/ml/cygwin/2012-03/msg00188.html
but I can
This problem should be fixed in the latest snapshot.
--
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
From: Corinna Vinschen
> Thanks for the review. Like this?
If you're open to improvements, the form
x=$(($x + 1))
could arguably be improved with any of the following:
x=$((x + 1))
let x=x+1
((x=x+1))
((x++))
((++x))
--Ken Nellis
Hi,
I have been running git svn in the latest cygwin without noticing any
unexpected problems.
It seems you are experiencing the usual "forking" issue. Quoting the
cygwin FAQ:
Read the 'rebase' package README in /usr/share/doc/rebase/, and follow
the instructions there to run 'rebaseall'.
(htt
Hi all,
Any one use git svn on cygwin , I got such error used the latest
version. I am not sure it's an cygwin/perl/git/svn problem ?
$ uname -a
CYGWIN_NT-6.1 Admin-PC 1.7.11(0.260/5/3) 2012-02-24 14:05 i686 Cygwin
$ git svn clone
http://svn.apache.org/repos/asf/subversion/trunk/build/win32
> Yaakov writes:
> On Sun, 2012-03-04 at 16:03 +0100, Dr. Volker Zell wrote:
>> BTW I just did the following steps manually
>>
>> /usr/bin/updmap-sys --syncwithtrees
>> /usr/bin/updmap-sys
>> /usr/bin/mktexlsr
>>
>> and now everything is fine. I think the cal
On Mar 5 13:02, Denis Excoffier wrote:
> On Mon, Mar 05, 2012 at 10:59:19AM +0100, Corinna Vinschen wrote:
> >> On Mar 5 08:09, Denis Excoffier wrote:
> >> >947 [main] sh 660! _pinfo::dup_proc_pipe: something failed for pid 0:
> >> > res 660, hProcess 0x6C8, wr_proc_pipe 0x758 vs. 0x758, Win
On Mon, Mar 05, 2012 at 10:59:19AM +0100, Corinna Vinschen wrote:
>> On Mar 5 08:09, Denis Excoffier wrote:
>> > On Sun, Mar 04, 2012 at 06:22:10PM +0100, Corinna Vinschen wrote:
>> > >> Denis, can you please give the latest snapshot DLL a try in all
>> > >> circumstances in which you saw the abov
Ulf-Dietrich Braumann wrote:
> Yes, Corinna, I reverted this setting again to the default 384MB heap size
> calling:
>
> $ peflags --cygwin-heap=0 /usr/sbin/sshd.exe
> and
> $ peflags --cygwin-heap=0 /usr/bin/cygrunsrv.exe
>
> Later on, someone has recommended me to downgrade cygrunsrv from 1.3
Hi folks,
over the weekend I tested Cygwin on the Windows 8 Consumer Preview and
it basically runs. However, there's a bug in a Windows function which
affects 64 bit systems when running Cygwin 1.7.10 and later. If you do
a base install and then try to run ash/dash in a console window, the
shel
On March 04, 2012 12:51 PM, Corinna Vinschen wrote:
>On Mar 2 20:20, Andy Koppe wrote:
>> On 2 March 2012 08:41, Corinna Vinschen wrote:
>> > On Mar 1 20:43, Andy Koppe wrote:
>> >> On 29 February 2012 12:46, Lemke, Michael SZ/HZA-ZSW wrote:
>> >> > What is the mintty equivalent to rxvt/xterm's
On Mar 4 17:11, Scott wrote:
> On Sun, 4 Mar 2012 15:08:33 +0100, Corinna Vinschen wrote:
> > On Mar 3 10:04, Scott wrote:
> > > With the introduction of cygwin 1.7.11-1, perl scripts that use
> > > dynamic loading fail with dll errors when another program is exec'ed.
> > >
> > > The host
On Mar 5 08:09, Denis Excoffier wrote:
> On Sun, Mar 04, 2012 at 06:22:10PM +0100, Corinna Vinschen wrote:
> >> On Feb 8 11:22, Denis Excoffier wrote:
> >> > On Wed, Feb 08, 2012 at 10:27:11AM +0100, Corinna Vinschen wrote:
> >> > >> On Feb 8 10:08, Denis Excoffier wrote:
> >> > >> > Result is:
28 matches
Mail list logo