Re: Cygwin/X - Query: why invoking from cmd backgrounds?

2024-01-20 Thread Jon Turney via Cygwin
On 20/01/2024 08:55, Shaddy Baddah via Cygwin wrote: Hi, I am just wondering if anyone understands why XWin detaches/runs in the background, when launched from Windows Command Prompt. I assume this is due to XWin being marked as a GUI, not console application (to stop it popping up a useless

Re: Cygwin/X - Query: why invoking from cmd backgrounds?

2024-01-20 Thread Marco Atzeri via Cygwin
On 20/01/2024 09:55, Shaddy Baddah via Cygwin wrote: Hi, I am just wondering if anyone understands why XWin detaches/runs in the background, when launched from Windows Command Prompt. Hi Shaddy, Only a guess But here's what happens when I run that first command line from Windows Command Prom

Cygwin/X - Query: why invoking from cmd backgrounds?

2024-01-20 Thread Shaddy Baddah via Cygwin
Hi, I am just wondering if anyone understands why XWin detaches/runs in the background, when launched from Windows Command Prompt. This being different to when run from Mintty. Here's what happens with my Mintty invocation, which stays in the foreground: | $ XWin :1 -nolisten tcp -ac -multiwi

Re: Cygwin pathconf() query filesystem kernel data? Re: How does Cygwin detect MSFT NFSv3 file system? Re: Weird (path) problems with cygwin test release 3.5.0-0.384.g9939aa7d0945.x86_64 ...

2023-08-24 Thread Martin Wege via Cygwin
; https://sourceware.org/git/?p=newlib-cygwin.git;a=blob;f=winsup/cygwin/path.cc;hb=HEAD#l1719 > >>>> > >>>> https://sourceware.org/git/?p=newlib-cygwin.git;a=blob;f=winsup/cygwin/path.cc;hb=HEAD#l2750 > >>>> > >>>>> 3. Does Cygwin implement t

Re: Cygwin pathconf() query filesystem kernel data? Re: How does Cygwin detect MSFT NFSv3 file system? Re: Weird (path) problems with cygwin test release 3.5.0-0.384.g9939aa7d0945.x86_64 ...

2023-08-21 Thread Brian Inglis via Cygwin
hb=HEAD#l2750 3. Does Cygwin implement the pathconf() api? Yes. Surprisingly, you can check this yourself by just calling the function and trying to compile your code. Apologies, how do we say in German? "Ich sollte meine Frage konkretisieren:" Does the Cygwin implementation of pathcon

Re: Cygwin pathconf() query filesystem kernel data? Re: How does Cygwin detect MSFT NFSv3 file system? Re: Weird (path) problems with cygwin test release 3.5.0-0.384.g9939aa7d0945.x86_64 ...

2023-08-21 Thread Martin Wege via Cygwin
cc;hb=HEAD#l1719 > >> > >> https://sourceware.org/git/?p=newlib-cygwin.git;a=blob;f=winsup/cygwin/path.cc;hb=HEAD#l2750 > >> > >>> 3. Does Cygwin implement the pathconf() api? > >> > >> Yes. Surprisingly, you can check this yourself by just ca

Re: Cygwin pathconf() query filesystem kernel data? Re: How does Cygwin detect MSFT NFSv3 file system? Re: Weird (path) problems with cygwin test release 3.5.0-0.384.g9939aa7d0945.x86_64 ...

2023-08-19 Thread Brian Inglis via Cygwin
just calling the function and trying to compile your code. Apologies, how do we say in German? "Ich sollte meine Frage konkretisieren:" Does the Cygwin implementation of pathconf() support query data of the underlying filesystem based on data from the kernel, as UNIX does? So pathconf()

Cygwin pathconf() query filesystem kernel data? Re: How does Cygwin detect MSFT NFSv3 file system? Re: Weird (path) problems with cygwin test release 3.5.0-0.384.g9939aa7d0945.x86_64 ...

2023-08-18 Thread Martin Wege via Cygwin
-cygwin.git;a=blob;f=winsup/cygwin/path.cc;hb=HEAD#l2750 > > > 3. Does Cygwin implement the pathconf() api? > > Yes. Surprisingly, you can check this yourself by just calling the > function and trying to compile your code. Apologies, how do we say in German? "Ich sollte mein

Re: A query about latest update to "make"

2023-02-21 Thread Marco Atzeri via Cygwin
On 21.02.2023 14:49, Fergus Daly via Cygwin wrote: I update my local Cygwin using setup-x86_64.exe. The latest setup.ini file includes the lines setup-timestamp: 1676945925 setup-version: 2.924 @ make version: 4.4-1 [prev] version: 4.3-1 [test] version: 4.4

A query about latest update to "make"

2023-02-21 Thread Fergus Daly via Cygwin
I update my local Cygwin using setup-x86_64.exe. The latest setup.ini file includes the lines setup-timestamp: 1676945925 setup-version: 2.924 @ make version: 4.4-1 [prev] version: 4.3-1 [test] version: 4.4.0.91-1 I definitely do not use the switch -t (for test versi

Re: [QUERY] Help With Semaphore Error on Windows : Cygwin

2023-02-17 Thread Takashi Yano via Cygwin
On Fri, 17 Feb 2023 12:56:06 +0800 Yeo Kai Wei wrote: > Hi All, > > Thanks for the help. > > It works now. > > So, the 2 things that were required > > 1. Adding the '/' in front of the semaphore name so that Cygwin can > recognise it > > #define SemaphoreName "/mysemaphore" > > 2. Changing t

Re: [QUERY] Help With Semaphore Error on Windows : Cygwin

2023-02-16 Thread Yeo Kai Wei via Cygwin
Hi All, Thanks for the help. It works now. So, the 2 things that were required 1. Adding the '/' in front of the semaphore name so that Cygwin can recognise it #define SemaphoreName "/mysemaphore" 2. Changing the if check from if(semptr == (void*) -1) to if(semptr == (sem_t*) 0) Thank

Re: [QUERY] Help With Semaphore Error on Windows : Cygwin

2023-02-16 Thread Corinna Vinschen via Cygwin
Hi Kai, Apart from what Takashi already wrote, there's another bug in this code: On Feb 16 12:04, Yeo Kai Wei via Cygwin wrote: > #define ByteSize 512 > #define BackingFile "/shMemEx" > #define AccessPerms 0644 > #define SemaphoreName "mysemaphore" What Takas

Re: [QUERY] Help With Semaphore Error on Windows : Cygwin

2023-02-16 Thread Takashi Yano via Cygwin
On Thu, 16 Feb 2023 12:04:01 +0800 Yeo Kai Wei wrote: > Hi All, > > Could I request for some help on some code? > > I ran into an error with semaphores with some book code using Cygwin on > Windows. > > The code will throw an error with sem_post(). > > I compiled it with gcc -o memwriter memwr

[QUERY] Help With Semaphore Error on Windows : Cygwin

2023-02-15 Thread Yeo Kai Wei via Cygwin
Hi All, Could I request for some help on some code? I ran into an error with semaphores with some book code using Cygwin on Windows. The code will throw an error with sem_post(). I compiled it with gcc -o memwriter memwriter.c -lrt -lpthread $ ./memwriter Shared memory address: 0x6fff00

QUERY: Coreutil "factor.exe" in Cygwin still stuck on an old & incorrect version (8.26) - was: Cygwin Digest 13 Dec 2019 16:20:42 -0000 Issue 11673 // Bug in "factor" (coreutils: GNU core utilities (8

2020-06-03 Thread Bernd Eggen
All, In Dec 2019 I reported that the coreutil factor in Cygwin does not work correctly for some composite numbers (more details further below, try eg: echo '3401347*3861211*12099721' | bc | factor which will not stop). While I had a prompt reply about how to build my own version (kindly suppl

Re: How to query the value of %SystemDrive% in an empty environment?

2019-08-07 Thread Corinna Vinschen
'env -i' to create an empty environment, the SYSTEMROOT and WINDIR > >>>> environment variables are preserved (or recreated): > >>>> $ /usr/bin/env -i /usr/bin/env > >>>> SYSTEMROOT=C:\Windows > >>>> WINDIR=C:\Windows > &

Re: How to query the value of %SystemDrive% in an empty environment?

2019-08-07 Thread Michael Haubenwallner
nd WINDIR >>>> environment variables are preserved (or recreated): >>>> $ /usr/bin/env -i /usr/bin/env >>>> SYSTEMROOT=C:\Windows >>>> WINDIR=C:\Windows >>>> And with cygpath, there is the -A, -D, -H, -O, -P, -S, -W and even -F flags >

Re: How to query the value of %SystemDrive% in an empty environment?

2019-08-07 Thread Corinna Vinschen
(or recreated): > >> $ /usr/bin/env -i /usr/bin/env > >> SYSTEMROOT=C:\Windows > >> WINDIR=C:\Windows > >> And with cygpath, there is the -A, -D, -H, -O, -P, -S, -W and even -F flags > >> to query the values for various directories. >

Re: How to query the value of %SystemDrive% in an empty environment?

2019-08-07 Thread Michael Haubenwallner
; SYSTEMROOT=C:\Windows >> WINDIR=C:\Windows >> And with cygpath, there is the -A, -D, -H, -O, -P, -S, -W and even -F flags >> to query the values for various directories. >> Now what I've failed to find is how to query the value for the "SystemDrive" >&

Re: How to query the value of %SystemDrive% in an empty environment?

2019-08-06 Thread Brian Inglis
cygpath, there is the -A, -D, -H, -O, -P, -S, -W and even -F flags > to query the values for various directories. > Now what I've failed to find is how to query the value for the "SystemDrive" > environment variable. > The problem behind is that I'm using "vswhe

Re: How to query the value of %SystemDrive% in an empty environment?

2019-08-06 Thread Bill Stewart
On Tue, Aug 6, 2019 at 10:25 AM Corinna Vinschen wrote: > https://en.wikipedia.org/wiki/Environment_variable#Windows claims that > "The %SystemDrive% variable is a special system-wide environment > variable found on Windows NT and its derivatives. Its value is the drive > upon which the system dir

Re: How to query the value of %SystemDrive% in an empty environment?

2019-08-06 Thread Corinna Vinschen
On Aug 6 10:10, Bill Stewart wrote: > On Tue, Aug 6, 2019 at 9:53 AM Corinna Vinschen wrote: > > > How so? SYSTEMDRIVE is the drive SYSTEMROOT is installed on, no? > > https://support.microsoft.com/en-us/help/314470/ > > "The system volume refers to the disk volume that contains the > hardware

Re: How to query the value of %SystemDrive% in an empty environment?

2019-08-06 Thread Bill Stewart
On Tue, Aug 6, 2019 at 9:53 AM Corinna Vinschen wrote: > How so? SYSTEMDRIVE is the drive SYSTEMROOT is installed on, no? https://support.microsoft.com/en-us/help/314470/ "The system volume refers to the disk volume that contains the hardware-specific files that are needed to start Windows, suc

Re: How to query the value of %SystemDrive% in an empty environment?

2019-08-06 Thread Corinna Vinschen
On Aug 6 09:47, Bill Stewart wrote: > On Tue, Aug 6, 2019 at 9:42 AM Corinna Vinschen wrote: > > > > On Aug 6 17:20, Michael Haubenwallner wrote: > > > Now what I've failed to find is how to query the value for the > > > "SystemDrive" >

Re: How to query the value of %SystemDrive% in an empty environment?

2019-08-06 Thread Bill Stewart
On Tue, Aug 6, 2019 at 9:42 AM Corinna Vinschen wrote: > > On Aug 6 17:20, Michael Haubenwallner wrote: > > Now what I've failed to find is how to query the value for the "SystemDrive" > > environment variable. > > Just strip it off SYSTEMROOT? IIRC, t

Re: How to query the value of %SystemDrive% in an empty environment?

2019-08-06 Thread Corinna Vinschen
> > And with cygpath, there is the -A, -D, -H, -O, -P, -S, -W and even -F flags > to query the values for various directories. > > Now what I've failed to find is how to query the value for the "SystemDrive" > environment variable. Just strip it off SYSTEMROOT?

How to query the value of %SystemDrive% in an empty environment?

2019-08-06 Thread Michael Haubenwallner
Hi, using 'env -i' to create an empty environment, the SYSTEMROOT and WINDIR environment variables are preserved (or recreated): $ /usr/bin/env -i /usr/bin/env SYSTEMROOT=C:\Windows WINDIR=C:\Windows And with cygpath, there is the -A, -D, -H, -O, -P, -S, -W and even -F flags to

Re: When running exec('rsync') with PHP, getting Warning: Error while sending QUERY packet.

2017-05-18 Thread Björn Tantau
s a very, very, very bad idea. I know, I know. This is actually a CLI script. The production server where this is from is actually not allowed to exec anything. the next Query produces the Warning: PHP Warning: Error while sending QUERY packet. PID=15036 in /home/limora/test.php on li

Re: When running exec('rsync') with PHP, getting Warning: Error while sending QUERY packet.

2017-05-18 Thread Andrey Repin
(32 Bit and 64 Bit). > If you have a working MySQL-Connection and then run exec('rsync') exec()'ing anything from PHP, especially from PHP running on a webserver is a very, very, very bad idea. > the next Query produces the Warning: > PHP Warning: Error while sending QUERY

Re: When running exec('rsync') with PHP, getting Warning: Error while sending QUERY packet.

2017-05-17 Thread Brian Inglis
On 2017-05-17 07:39, Björn Tantau wrote: > I encountered a rather strange PHP bug I could only reproduce in > cygwin (32 Bit and 64 Bit). > If you have a working MySQL-Connection and then run exec('rsync') the > next Query produces the Warning: > PHP Warning: Error w

When running exec('rsync') with PHP, getting Warning: Error while sending QUERY packet.

2017-05-17 Thread Björn Tantau
then run exec('rsync') the next Query produces the Warning: PHP Warning: Error while sending QUERY packet. PID=15036 in /home/limora/test.php on line 5 See the attached test.php. It should output: object(PDOStatement)#2 (1) { ["queryString"]=> string(16) "SELECT

Re: Query about "libGL error: Screen is not Windows-DRI capable"

2017-02-20 Thread Jon Turney
On 18/02/2017 21:59, Eliot Moss wrote: Dear friends -- I get the message above when I start cygwin emacs-X11 32-bit while running Cygwin-X. First of all, should I care? And if No. This message should probably be downgraded from an error. I should, what can I do about it? Does this have to

Query about "libGL error: Screen is not Windows-DRI capable"

2017-02-18 Thread Eliot Moss
Dear friends -- I get the message above when I start cygwin emacs-X11 32-bit while running Cygwin-X. First of all, should I care? And if I should, what can I do about it? Does this have to do with the command line parameters when starting the X server, for example? Regards - Eliot Moss -- Pro

Re: Query of type of memcpy (and sys_errlist) on Cygwin

2016-04-10 Thread Tatsuro MATSUOKA
> From: Marco Atzeri > To: cygwin> Cc: > Date: 2016/4/10, Sun 16:12 > Subject: Re: Query of type of memcpy (and sys_errlist) on Cygwin > > Hi Tatsuro, > May be was better to not reply to a different thread ? > I am pending the other thread and I want to discuss

Re: Query of type of memcpy (and sys_errlist) on Cygwin

2016-04-10 Thread Tatsuro MATSUOKA
> From: Hans-Bernhard Bröker > To: cygwin@cygwin.com > Cc: > Date: 2016/4/10, Sun 16:10 > Subject: Re: Query of type of memcpy (and sys_errlist) on Cygwin > > Am 10.04.2016 um 05:14 schrieb Tatsuro MATSUOKA: >>  Hello >>  The topic was discussed on gnuplot m

Re: Query of type of memcpy (and sys_errlist) on Cygwin

2016-04-10 Thread Marco Atzeri
Hi Tatsuro, May be was better to not reply to a different thread ? On 10/04/2016 05:14, Tatsuro MATSUOKA wrote: Hello The topic was discussed on gnuplot mailing list. http://gnuplot.10905.n7.nabble.com/stdfn-h-error-conflicting-types-for-memcopy-and-sys-errlist-on-Cygwin-build-td20061.html Frorm

Re: Query of type of memcpy (and sys_errlist) on Cygwin

2016-04-10 Thread Hans-Bernhard Bröker
Am 10.04.2016 um 05:14 schrieb Tatsuro MATSUOKA: Hello The topic was discussed on gnuplot mailing list. http://gnuplot.10905.n7.nabble.com/stdfn-h-error-conflicting-types-for-memcopy-and-sys-errlist-on-Cygwin-build-td20061.html Frorm discussion there (the topic is now pending.) , I decided ask he

Query of type of memcpy (and sys_errlist) on Cygwin

2016-04-09 Thread Tatsuro MATSUOKA
Hello The topic was discussed on gnuplot mailing list. http://gnuplot.10905.n7.nabble.com/stdfn-h-error-conflicting-types-for-memcopy-and-sys-errlist-on-Cygwin-build-td20061.html Frorm discussion there (the topic is now pending.) , I decided ask here. In compling gnuplot I have met errors: ../../gn

Re: Necessary To Query SACL Information?

2014-10-13 Thread Corinna Vinschen
audit. Looking at the source code, I'm going > to guess this might be from the NtQuerySecurityObject call in > security.cc which requests SACL information by asking for for > ALL_SECURITY_INFORMATION. Does Cygwin really need to query this > information? Aside from keeping my audit log

Re: Necessary To Query SACL Information?

2014-10-12 Thread Bryan Berns
Arg. Responding to myself. Apparently ALL_SECURITY_INFORMATION is internally defined and doesn't contain the flag for SACL information (so much for being 'ALL'). I'll keep exploring... -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Docume

Necessary To Query SACL Information?

2014-10-12 Thread Bryan Berns
s this might be from the NtQuerySecurityObject call in security.cc which requests SACL information by asking for for ALL_SECURITY_INFORMATION. Does Cygwin really need to query this information? Aside from keeping my audit logs clean, it seems like it might be an opportunity for optimizing the ex

Re: Website: Package listing not working + cygport query

2014-06-18 Thread Corinna Vinschen
On Jun 18 13:34, Andrey Repin wrote: > Greetings, Yaakov Selkowitz! > > >> Yaakov, wouldn't it make sense not to just use 0/0 as user/group when > >> generating packages with cygport by forcing --owner=0, --group=0 to the > >> tar command? I'm not suggesting that this is the right way to fix this

Re: Website: Package listing not working + cygport query

2014-06-18 Thread Andrey Repin
Greetings, Yaakov Selkowitz! >> Yaakov, wouldn't it make sense not to just use 0/0 as user/group when >> generating packages with cygport by forcing --owner=0, --group=0 to the >> tar command? I'm not suggesting that this is the right way to fix this >> particular problem but I don't think it's a

Re: Website: Package listing not working + cygport query

2014-06-17 Thread Christopher Faylor
On Wed, Jun 18, 2014 at 12:04:29AM -0500, Yaakov Selkowitz wrote: >On 2014-06-17 10:32, Christopher Faylor wrote: >> I'm surprised that I haven't seen this before: The name that you used to >> generate your packages was "David Stacey/None". My parser wasn't >> expecting a name with a space and I d

Re: Website: Package listing not working + cygport query

2014-06-17 Thread Yaakov Selkowitz
On 2014-06-17 10:32, Christopher Faylor wrote: I'm surprised that I haven't seen this before: The name that you used to generate your packages was "David Stacey/None". My parser wasn't expecting a name with a space and I didn't detect the fact that the parsing failed (#($& just realized that I f

Re: Website: Package listing not working + cygport query

2014-06-17 Thread David Stacey
On 17/06/14 16:39, Christopher Faylor wrote: On Tue, Jun 17, 2014 at 11:32:00AM -0400, Christopher Faylor wrote: I'm surprised that I haven't seen this before: The name that you used to generate your packages was "David Stacey/None". My parser wasn't expecting a name with a space and I didn't d

Re: Website: Package listing not working + cygport query

2014-06-17 Thread Christopher Faylor
On Tue, Jun 17, 2014 at 11:32:00AM -0400, Christopher Faylor wrote: >I'm surprised that I haven't seen this before: The name that you used to >generate your packages was "David Stacey/None". My parser wasn't >expecting a name with a space and I didn't detect the fact that the >parsing failed (#($&

Re: Website: Package listing not working + cygport query

2014-06-17 Thread Christopher Faylor
On Tue, Jun 17, 2014 at 10:31:11AM -0400, Christopher Faylor wrote: >On Mon, Jun 09, 2014 at 07:19:04PM +0100, David Stacey wrote: >>On the cygwin.com website, none of my packages display their contents >>correctly, e.g.: >> >> https://cygwin.com/packages/x86/keepassx/keepassx-0.4.3-2 >>https:

Re: Boost version number query

2013-05-25 Thread David Stacey
On 24/05/13 22:37, Yaakov (Cygwin/X) wrote: On 2013-05-23 12:43, David Stacey wrote: There appears to be some inconsistency regarding the version of boost: For the 'boost' package itself, 1.53.0 is current, with 1.50.0 marked as previous. FWIW, the 'boost' package contains only the sources.

Re: Boost version number query

2013-05-24 Thread Yaakov (Cygwin/X)
On 2013-05-23 12:43, David Stacey wrote: There appears to be some inconsistency regarding the version of boost: For the 'boost' package itself, 1.53.0 is current, with 1.50.0 marked as previous. FWIW, the 'boost' package contains only the sources. cgf: any chance upset could not list source-o

Boost version number query

2013-05-23 Thread David Stacey
There appears to be some inconsistency regarding the version of boost: For the 'boost' package itself, 1.53.0 is current, with 1.50.0 marked as previous. For other boost libraries (i.e. 'libboost-devel', 'libboost_python-devel', 'libboost_python3-devel') 1.50.0 is current with 1.53.0 marked

Re: Latest Cygwin query.

2013-04-24 Thread marco atzeri
On 4/24/2013 5:56 PM, Warren Young wrote: On 4/24/2013 02:30, rashi singhal wrote: Earlier we were using Cygwin - 1003.22.0.0 version. Where does that version number come from? It isn't actually a Cygwin version number. (The latest Cygwin is version 1.7.18.) I bet from file version. Cygwi

Re: Latest Cygwin query.

2013-04-24 Thread Warren Young
On 4/24/2013 02:30, rashi singhal wrote: Earlier we were using Cygwin - 1003.22.0.0 version. Where does that version number come from? It isn't actually a Cygwin version number. (The latest Cygwin is version 1.7.18.) We have native cobol programs, we compile them in net express cobol to m

Re: Latest Cygwin query.

2013-04-24 Thread rashi singhal
Earlier we were using Cygwin - 1003.22.0.0 version. We use MF net express compiler to compile cobol programs. cobcall ,cobint and C functions to call cobol programs. We have native cobol programs, we compile them in net express cobol to make DLL.Also we have C program to call our cobol dll in bas

Re: Latest Cygwin query.

2013-04-23 Thread marco atzeri
On 4/24/2013 5:01 AM, rashi singhal wrote: Please suggest some thing on below query.. We use C programs to link and call Cobol programs(using cobinit ,cobcall), After executing cobol applications on bash we are getting return code as zero always. Cobol program pass some return codes like (32

Latest Cygwin query.

2013-04-23 Thread rashi singhal
Please suggest some thing on below query.. We use C programs to link and call Cobol programs(using cobinit ,cobcall), After executing cobol applications on bash we are getting return code as zero always. Cobol program pass some return codes like (32 , 65 .. ). This problem only occurs after

Re: Query about how to get 'full' Cygwin/unix support

2012-03-28 Thread Jeremy Bopp
On 03/28/2012 03:07 PM, AngusC wrote: > > Hello > > I am using cygwin and have copied the core cygwin files to a folder called > binarytools on my Windows PC. This folder is first item in path env > variable. > > When I run make it has commands to do a mkdir -p > > But mkdir -p myfolder creat

Re: Query about how to get 'full' Cygwin/unix support

2012-03-28 Thread Eric Blake
On 03/28/2012 02:07 PM, AngusC wrote: > > Hello > > I am using cygwin and have copied the core cygwin files to a folder called > binarytools on my Windows PC. This folder is first item in path env > variable. > > When I run make it has commands to do a mkdir -p > > But mkdir -p myfolder creat

Query about how to get 'full' Cygwin/unix support

2012-03-28 Thread AngusC
??? Why the strange behaviour? How would I get the standard unix behaviour? Angus -- View this message in context: http://old.nabble.com/Query-about-how-to-get-%27full%27-Cygwin-unix-support-tp33544853p33544853.html Sent from the Cygwin list mailing list archive at Nabble.com. -- Problem

Re: question on where to direct a query

2012-01-04 Thread marco atzeri
On 1/4/2012 8:44 AM, Paul Allen Newell wrote: Cygwin: I am running code on a Fedora box and a WinXP box under cygwin. When I run a make with g++, I am seeing message of "recipe for target 'whatever' failed". I do not see these under Fedora. Though it may seem like a minor point, it is a bit of

question on where to direct a query

2012-01-03 Thread Paul Allen Newell
Cygwin: I am running code on a Fedora box and a WinXP box under cygwin. When I run a make with g++, I am seeing message of "recipe for target 'whatever' failed". I do not see these under Fedora. Though it may seem like a minor point, it is a bit of a pain when trying to filter any "make.out".

Re: Debugging with/under CYGWIN query

2006-08-14 Thread Darryl Miles
Thanks very much for your reply, you have filled in many of the jigsaw pieces from my patchy fishing questions and here is more detail (if you really wanted to know!). Dave Korn wrote: On 13 August 2006 09:54, Darryl Miles wrote: Q2) Is it possible to setup C:\CYGDEB\ environment with debu

RE: Debugging with/under CYGWIN query

2006-08-14 Thread Dave Korn
On 13 August 2006 09:54, Darryl Miles wrote: > Q1) What is the difference between cygwin0.dll and cygwin1.dll ? It > seems all executables link against cygwin1.dll which for me is at > F:\CYGWIN\BIN\CYGWIN1.DLL. 'cygwin0.dll' is a temporary name under which the new dll is built so that it does

Debugging with/under CYGWIN query

2006-08-13 Thread Darryl Miles
Q1) What is the difference between cygwin0.dll and cygwin1.dll ? It seems all executables link against cygwin1.dll which for me is at F:\CYGWIN\BIN\CYGWIN1.DLL. Q2) Is it possible to setup C:\CYGDEB\ environment with debugging copies of DLLs and EXEs, to help debugging, but keep the runti

Re: query of installed apps on remote Winows

2006-07-16 Thread Christopher Faylor
. > >Thanks for the uninstall lead. That's the key. Looking good. Regtool >can accomplish the same things as expensive 3rd-party Windows tools, >with a lot less grief. (And without the straightjacket.) > >Not expecting this to become a mainstream part of this list, just as

Re: query of installed apps on remote Winows

2006-07-16 Thread Richard Foulk
ghtjacket.) Not expecting this to become a mainstream part of this list, just asking for leads and experiences of others. Cygwin is the key. (My query was not for an uninstall. If we're going to blame a development environment for all the problems it *might* cause in the future we

Re: query of installed apps on remote Winows

2006-07-16 Thread Christopher Faylor
On Sun, Jul 16, 2006 at 12:00:49PM +0100, Dave wrote: >>Is this something that might be supported by existing cygwin tools? > >Personally, I'd leave installing/uninstalling of non-cygwin apps to >windows. Can you imagine the queries coming to this list? > - I couldn't uninstall notepad! > - Execut

Re: query of installed apps on remote Winows

2006-07-16 Thread Dave
Richard Foulk wrote: Anyone know how the control-panel->Add/Remove-Programs facility works? Not particularly cygwin specific, and comprehensively covered at Microsofts site. Anyway, here's some basic info. Each program needing an uninstall item has a key in: /HKLM/Software/Microsoft/Windows/

query of installed apps on remote Winows

2006-07-15 Thread Richard Foulk
Aloha, Didn't get much response on my last query of this topic. But the discussion of regtool has made me wonder ... regtool can access registries of remote machines. So it seems there must be an `easy' way of accessing the list of `currently installed' programs. Anyone know

query bzImage

2006-06-26 Thread hulge hulge
hi i want to know when we run command " make bzImage" , where do the cygwin store bzImage actually i am trying to build linux kernel in cygwin, i can run make menuconfig, after running command make dep everything was fine but when i run "make bzImage" i get error of repeatative decleration so pl

RE: query on updating changes

2006-01-19 Thread Dave Korn
KevinGPO wrote: > What tools come with Cygwin that I can use to find differences between an > old C project and an updated branched version of it? "diff". cheers, DaveK -- Can't think of a witty .sigline today -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple P

query on updating changes

2006-01-19 Thread KevinGPO
What tools come with Cygwin that I can use to find differences between an old C project and an updated branched version of it? -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.ht

Re: Query: issue with cygwin-curl 7.15.0 - cannot close some connections

2005-11-28 Thread Corinna Vinschen
On Nov 28 04:04, Brian Dessent wrote: > The reason that it apparently did not realize that the connection had > been terminated was that the Cygwin poll() was returning 1 with the > POLLHUP bit set in 'revents'. But curl was not aware of this bit and > only looked for POLLIN, so it got confused,

Re: Query: issue with cygwin-curl 7.15.0 - cannot close some connections

2005-11-28 Thread Brian Dessent
Soh Kam Yung wrote: > Brian, Please send all questions about using the Cygwin curl packages to the cygwin (at) cygwin.com mailing list, which I follow. Please do not email me personally. > I have been using curl under cygwin and noticed an issue with closing > of connections with some websites

Re: Query

2005-08-02 Thread Christopher Faylor
On Tue, Aug 02, 2005 at 02:18:41PM +0530, Sundara Pandian wrote: > Hello Sir > > can u guide me with a tutorial for using Cygwin. > > i need to compile / execute the .c files in the cygwin environment. > > > > Thanks and regards Please check out the project web page for links to available

Re: 1.5.13-1 gtk-query-immodules-2.0.exe - Unable to locate DLL

2005-03-31 Thread Brian Dessent
Danny Ng wrote: > I recently downloaded the latest version of Cygwin and installed onto > my computer. On 99% completion I received an error. I'm not sure > whether this is affecting the gcc compiler or not. Whenever I try > compiling my program, it gives me this error. Note: It would be a lot ea

1.5.13-1 gtk-query-immodules-2.0.exe - Unable to locate DLL

2005-03-31 Thread Danny Ng
I recently downloaded the latest version of Cygwin and installed onto my computer. On 99% completion I received an error. I'm not sure whether this is affecting the gcc compiler or not. Whenever I try compiling my program, it gives me this error. $ gcc -Wall -ansi -pedantic BMI.c -o BMI /usr/lib/g

Re: Query regarding Cygwin make/Gnu Make

2003-12-04 Thread Brian Ford
On Thu, 4 Dec 2003, Rajagopalan, Karthik wrote: > I found today a weird working difference between Cygwin Make against Gnu > Make. Let me explain the situation I faced. > Cygwin make *is* GNU make. > I have following piece of code as "test" target. Here $(EXE) takes .exe for > Windows and blank

Re: Query regarding Cygwin make/Gnu Make

2003-12-04 Thread Baurjan Ismagulov
Hello, Karthik. On Thu, Dec 04, 2003 at 03:04:28PM +0530, Rajagopalan, Karthik wrote: > test$(EXE) return -1 back because of encountering a error in code test.c. I'm not sure what values are meaningful for make and how -1 is interpreted: the argument of exit(3) seems to be (signed int), but bash

Query regarding Cygwin make/Gnu Make

2003-12-04 Thread Rajagopalan, Karthik
Hi, I found today a weird working difference between Cygwin Make against Gnu Make. Let me explain the situation I faced. I have following piece of code as "test" target. Here $(EXE) takes .exe for Windows and blank for Linux. test: cat test.dat | test$(EXE) 1> test.res 2>& dif

Re: Query related to PostgreSQL : Srinivas : 12th Aug 2003

2003-08-12 Thread Jason Tishler
Srinivas, Please post instead of sending private email. On Tue, Aug 12, 2003 at 01:48:26PM +0530, Srinivas wrote: > Hi Jayson, s/Jayson/Jason/ > Can you plz give the link for downloading the latest version of the > PostgreSQL, Cygwin PostgreSQL is installable via Cygwin's setup.exe: http:

RE: Query regarding application error..

2003-07-16 Thread Hannu E K Nevalainen \(garbage mail\)
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf > Of Rajagopalan, Karthik > Hai, >I am getting following application error when I try to run the exe from > Cygwin. > > "The application failed to initialize properly()x005).Click on Ok to > terminate the application." > > Is it so

Query regarding application error..

2003-07-16 Thread Rajagopalan, Karthik
Hai, I am getting following application error when I try to run the exe from Cygwin. "The application failed to initialize properly()x005).Click on Ok to terminate the application." Is it something to do with cygwin dll. Please let me know soon. Also the dll site I need to download if so.

Re: port query: any "fping"? & cygwin headers

2003-06-11 Thread Gerrit P. Haase
Hallo Soren, > /usr/include/cygwin/icmp.h > that is an empty file. Is this a TODO for Cygwin? Another header under > netinet/, "/usr/include/netinet/ip_icmp.h", just #include's this empty > file. The fact that another header does this with an *empty* file seems > decidedly bizarre to me. Ther

port query: any "fping"? & cygwin headers

2003-06-11 Thread Soren Andersen
Hey! Hello all. Has anyone ever ported the network tool "fping" to cygwin? I came across some Google results that seemed to be viable but it appears not (I don't have the complete URL I checked, but it was a site that showed a dir listing under a software project named "mon". maybe some of you kno

Re: query regarding use of Xwin -multiwindow

2003-06-03 Thread Igor Pechtchanski
here > to start with this. Any help would be appreciated. > > Thanks, > /John Vincent. The best help you can get would be on the cygwin-xfree list, which deals with XFree86/Cygwin issues. For your convenience, I'm redirecting this query there and

query regarding use of Xwin -multiwindow

2003-06-03 Thread John Vincent
Hi, I've just discovered the -multiwindow option of the cygwin x-server and I think it's great, as I can now run an xterm on a linux box and display it on my windows xp machine. One problem, though, I don't seem able to cut-and-paste btween the xterm window and a ms-windows application. It's as

RE: cygwin License related Query....

2002-12-18 Thread Gary R. Van Sickle
> >Well, perhaps, but I think those two paragraphs are the clearest and > >most concise "layman's terms" explanation of Cygwin licensing I've read > >to date. All it needs is a "No, a link to the Cygwin site won't cut it" > >paragraph and I'd say it would make a good FAQ. > > My response was tailo

Re: cygwin License related Query....

2002-12-18 Thread Christopher Faylor
On Wed, Dec 18, 2002 at 11:26:27AM -0800, Shankar Unni wrote: >Christopher Faylor wrote: >>Btw, I was trying to move this discussion off of the public list because >>it probably isn't of much interest to people there. > >Well, .. > >The Red Hat Cygwin Product pages are marvelously content-free wh

Re: cygwin License related Query....

2002-12-18 Thread Christopher Faylor
On Wed, Dec 18, 2002 at 01:39:57PM -0600, Gary Van Sickle wrote: >>If you are distributing cygwin1.dll and any of the executables that are >>directly associated with it (mount.exe, umount.exe, cygcheck.exe, ps.exe, >>kill.exe, cygpath.exe) then you must adhere to the GPL. That means that >>you hav

Re: cygwin License related Query....

2002-12-18 Thread Gary Van Sickle
If you are distributing cygwin1.dll and any of the executables that are directly associated with it (mount.exe, umount.exe, cygcheck.exe, ps.exe, kill.exe, cygpath.exe) then you must adhere to the GPL. That means that you have to make sources available to your customers. The fact that you haven't

Re: cygwin License related Query....

2002-12-18 Thread Shankar Unni
Christopher Faylor wrote: Btw, I was trying to move this discussion off of the public list because it probably isn't of much interest to people there. Well, .. The Red Hat Cygwin Product pages are marvelously content-free when it comes to cost and content (i.e. which version) information. O

Re: cygwin License related Query....

2002-12-18 Thread Christopher Faylor
y, December 17, 2002 3:26 AM >To: Sajad Bashir Qadri >Cc: [EMAIL PROTECTED]; partha dhar; Dakshinamoorthy Venkataraman >Subject: Re: cygwin License related Query > >On Mon, Dec 16, 2002 at 03:41:00PM +0530, Sajad Bashir Qadri wrote: >>We have a software that runs on Windows platform .The so

RE: cygwin License related Query....

2002-12-18 Thread partha dhar
ember 17, 2002 3:26 AM To: Sajad Bashir Qadri Cc: [EMAIL PROTECTED]; partha dhar; Dakshinamoorthy Venkataraman Subject: Re: cygwin License related Query On Mon, Dec 16, 2002 at 03:41:00PM +0530, Sajad Bashir Qadri wrote: >We have a software that runs on Windows platform .The software is a >

RE: Cygwin License ( Query )

2002-12-16 Thread [EMAIL PROTECTED]
I think http://cygwin.com/licensing.html should answer your basic questions. Larry Original Message: - From: Sajad Bashir Qadri [EMAIL PROTECTED] Date: Mon, 16 Dec 2002 19:35:05 +0530 To: [EMAIL PROTECTED] Subject: Cygwin License ( Query ) Hi, We have a software that

Cygwin License ( Query )

2002-12-16 Thread Sajad Bashir Qadri
Title: Message Hi,     We have a software that runs on Windows platform .The software is a commercial one. And at its backend we want to use PostgreSQL. Since the application will be running on windows platform we need to bundle cygwin with it , to use postgreSQL. The software will not be r

RE: [list] Re: query

2002-12-15 Thread Chris January
> >hi > > > > i am new to cygwin enviornment i just downloaded it > >yesterday . i have an application written in linux > >downloaded from internet .it is a tar file . i want to > >run it on windows 2000 can i do it using cygwin . > > > > No but if you have the source you can build the applicatio

Re: query

2002-12-14 Thread Larry Hall (RFK Partners, Inc)
At 01:29 AM 12/14/2002, mohit batra wrote: >hi > > i am new to cygwin enviornment i just downloaded it >yesterday . i have an application written in linux >downloaded from internet .it is a tar file . i want to >run it on windows 2000 can i do it using cygwin . No but if you have the source

RE: query

2002-12-13 Thread Robert McNulty Junior
As a Linux program, No. Get the source tar and compile it using GCC. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of mohit batra Sent: Saturday, December 14, 2002 12:30 AM To: [EMAIL PROTECTED] Subject: query hi i am new to cygwin enviornment i just

  1   2   >