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
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
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
; 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
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
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
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.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
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
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
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
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
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
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
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
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
'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
> &
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
>
(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.
>
; 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"
>&
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
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
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
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
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"
>
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
>
> 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?
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
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
(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
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
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
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
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
> 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
> 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
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
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
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
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
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
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
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
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
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
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
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
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 (#($&
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:
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.
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
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
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
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
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
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
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
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
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
???
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
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
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".
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
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
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
.
>
>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
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
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
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/
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
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
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
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
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,
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
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
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
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
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
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
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
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:
> 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
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.
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
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
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
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
> >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
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
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
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
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
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
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
>
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
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
> >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
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
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 - 100 of 104 matches
Mail list logo