Hi,
On 25/1/22 7:02 am, Jon Turney wrote:
> A new version of Setup (2.917) has been uploaded to:
>
> https://cygwin.com/setup-x86_64.exe (64 bit version)
> https://cygwin.com/setup-x86.exe (32 bit version)
>
> Changes compared to 2.915:
...
I've had a new problem with this version, whi
New version 4.3.4-1
libzmq-devel
libzmq-doc
libzmq5
has been uploaded.
CHANGES
This is the latest upstream bug fix.
https://github.com/zeromq/libzmq/releases
DESCRIPTION
An open-source universal messaging library
ZeroMQ (also known as ØMQ, 0MQ, or zmq) looks like an embeddable
networking
New version 4.3.0-1
scons
has been uploaded.
CHANGES
This is the latest upstream bug fix.
DESCRIPTION
SCons is an Open Source software construction tool—that is,
a next-generation build tool. Think of SCons as an improved,
cross-platform substitute for the classic Make utility with
integrate
Version 5.0.5-1 of
nco
is available in the Cygwin distribution.
CHANGES
Latest upstream release
DESCRIPTION
The NCO toolkit manipulates and analyzes data stored in netCDF-accessible
formats, including DAP, HDF4, and HDF5. It exploits the geophysical
expressivity of many CF (Climate & Forecas
Updated version 1.3.2-1 of
libtirpc-common
libtirpc-devel
libtirpc-doc
libtirpc3
have been uploaded for cygwin
CHANGES
Last upstream release
https://sourceforge.net/p/libtirpc/mailman/message/37279515/
DESCRIPTION
Libtirpc is a port of Suns Transport-Independent
RPC library to Linux. I
Updated version 1.3.0.0-1 of
librsb-devel
librsb0
have been uploaded for cygwin
CHANGES
Last upstream release
https://sourceforge.net/p/librsb/mailman/message/37595374/
DESCRIPTION
librsb is a library for sparse matrix computations featuring the
Recursive Sparse Blocks (RSB) matrix forma
Thank You!!!
On 1/24/2022 10:02 AM, Jon Turney wrote:
On 20/01/2022 01:01, Ken Whitesell wrote:
On 1/19/2022 2:28 PM, Jon Turney wrote:
On 19/01/2022 00:02, Ken Whitesell wrote:
On 1/17/2022 1:29 PM, Ken Whitesell wrote:
Is there a known solution for this? (Or is it known that there is
no
> Else how would you stop them in the first place?
Restarting the OS was the way (post install, to restart with the new DLL),
but that no longer works anymore with Win10.
Anton Lavrentiev
Contractor NIH/NLM/NCBI
--
Problem reports: https://cygwin.com/problems.html
FAQ: ht
On 26.01.2022 21:16, Andrey Repin wrote:
Greetings, marco atzeri!
Marco, on an unrelated note, can you please package Subversion with
alternatives support?
I understand that the request is uncommon, but I do have uncommon
requirements. I'm using a custom Subversion build, which is good for commo
On 2022-01-26 07:50, Andrey Repin wrote:
Greetings, Brian Inglis!
restart them in a late local permanent postinstall script
/etc/postinstall/zp_z0_l_start_services.dash after setup.
It never occured to me that I can use postinstall tasks to restart services :D
Just add a line
for svc in cyg
Greetings, marco atzeri!
Marco, on an unrelated note, can you please package Subversion with
alternatives support?
I understand that the request is uncommon, but I do have uncommon
requirements. I'm using a custom Subversion build, which is good for common
use, but have a small deficiency in LC_TI
Greetings, Andrey Repin!
> Greetings, Corinna Vinschen via Cygwin-announce!
>> The following packages have been uploaded to the Cygwin distribution:
>> * cygwin-3.3.3-1
>> * cygwin-devel-3.3.3-1
>> * cygwin-doc-3.3.3-1
> It seems there's some network shares problem going on with 3.3
> I've got
Greetings, mail2s...@gmx.net!
Since Cygwin(as a library/wrapper layer) is not packaging or in any other way
providing Java code, no.
As a software distribution platform, there are 33 packages that contain .jar
files: https://cygwin.com/cgi-bin2/package-grep.cgi?grep=%5C.jar%24&arch=x86_64
What th
Greetings, Lavrentiev, Anton (NIH/NLM/NCBI) [C]!
>> for svc in cygserver $( cygrunsrv --list | grep -v cygserver ); do net start
>> "$svc"; done
>> and you're golden!
> Not so fast, you must have admin rights to start any Windows services,
> including cygserver.
> So maybe just bronze, and not
--
Problem reports: https://cygwin.com/problems.html
FAQ: https://cygwin.com/faq/
Documentation:https://cygwin.com/docs.html
Unsubscribe info: https://cygwin.com/ml/#unsubscribe-simple
> It is best to avoid Cygwin-specific code.
Agreed.
The code is mostly only ifdef win32 vs. Posix but just a few spots are
Cygwin-specific.
(and Apple specific, Solaris specific, IA64-specific etc.)
- Jay
From: Andrey Repin
Sent: Wednesday, January 26, 2022 2
Greetings, Kevin Schnitzius!
> On Wednesday, January 19, 2022, 12:46:26 AM EST, Marco Atzeri
> Works fine from bash. It reproes from cmd.exe
Then your CMD environment is not set identical to your bash env.
Simple fix - use bash.
--
With best regards,
Andrey Repin
Wednesday, January 26, 2022
> for svc in cygserver $( cygrunsrv --list | grep -v cygserver ); do net start
> "$svc"; done
> and you're golden!
Not so fast, you must have admin rights to start any Windows services,
including cygserver.
So maybe just bronze, and not so golden
Anton Lavrentiev
Contractor NIH/NLM/NCBI
--
Greetings, Brian Inglis!
> restart them in a late local permanent postinstall script
> /etc/postinstall/zp_z0_l_start_services.dash after setup.
It never occured to me that I can use postinstall tasks to restart services :D
Just add a line
for svc in cygserver $( cygrunsrv --list | grep -v cygs
Greetings, Mark Hansen!
> I have an application running under Linux which I would like to move to
> Windows
> (with Cygwin). This application depends on getting notifications when a CD Rom
> drive status has changed (like audio CD inserted, ejected, etc.). For this, I
> use a Linux utility applic
Greetings, Jay K!
>> Just use POSIX exit(3)!
> I did switch my code:
> #ifdef __CYGWIN__
> exit(x);
> #else
> ExitProcess(x);
> #endif
> .
It is best to avoid Cygwin-specific code.
Use either Linux(POSIX) or Windows specific tests, and only test for Cygwin if
/absolutely/ necessary.
--
W
On Tue, Jan 25, 2022 at 10:33:52PM +, Buchbinder, Barry (NIH/NIAID) [E] via
Cygwin wrote:
> On Mon, Jan 24, 2022 at 6:12 PM Bill Stewart wrote:
> >
> >On Mon, Jan 24, 2022 at 3:49 PM Buchbinder, Barry (NIH/NIAID) [E] via Cygwin
> >wrote:
> >
> >Windows protected your PC
> >> Microsoft Defende
22 matches
Mail list logo