Re: ECLIPSE IDE NIOS II C/C++ compiler warnings

2023-03-17 Thread cygwinautoreply--- via Cygwin
om* >I realize this version of Eclipse is from 2012.  Also which version of >JAVA Runtime should I be using with Eclipse? >Regards, >Eric Staley https://cygwin.com/faq.html#faq.using.fixing-find_fast_cwd-warnings -- Problem reports: https://cygwin.com/problems.html FAQ:

ECLIPSE IDE NIOS II C/C++ compiler warnings

2023-03-17 Thread Eric Staley via Cygwin
I am receiving these WARNING messages when trying to compile a NIOS II C/C++ project with Eclipse Indigo IDE *    2 [main] sh 7356 find_fast_cwd: WARNING: Couldn't compute FAST_CWD pointer.  Please report this problem tothe public mailing list cygwin@cygwin.com* I realize this version

Re: FD_{SET,ISSET,CLR} macros from sys/select.h triggerring gcc's -Wsign-conversion warnings

2020-08-03 Thread Corinna Vinschen
ctions (POSIX says it's unspecified whether > they're functions or macros) and cast the filedescriptor number to > unsigned internally or something similar. I thought about that as well, but I'd like to keep it as close to FreeBSD as possible. In theory, it would be even better t

Re: FD_{SET,ISSET,CLR} macros from sys/select.h triggerring gcc's -Wsign-conversion warnings

2020-08-03 Thread Petr Skocik via Cygwin
; (1L << >> ((n) % NFDBITS))) >> >> int-casting the sizeof and using 1UL instead of 1L fixes the problem: > Thanks. I pushed a patch which will show up in the next Cygwin release: > https://sourceware.org/git/?p=newlib-cygwin.git;a=commitdiff;h=5717262b8ecf > > Funn

Re: FD_{SET,ISSET,CLR} macros from sys/select.h triggerring gcc's -Wsign-conversion warnings

2020-08-03 Thread Corinna Vinschen
    #  define    FD_ISSET(n, p)    ((p)->fds_bits[(n)/NFDBITS] & (1L << > ((n) % NFDBITS))) > > int-casting the sizeof and using 1UL instead of 1L fixes the problem: Thanks. I pushed a patch which will show up in the next Cygwin release: https://sourceware.org/git/?p=newlib

FD_{SET,ISSET,CLR} macros from sys/select.h triggerring gcc's -Wsign-conversion warnings

2020-08-02 Thread Petr Skocik via Cygwin
Example: #include void f(int X) {     fd_set set;     FD_ZERO(&set);     FD_SET(X,&set);     FD_CLR(X+1,&set);     (void)FD_ISSET(X+2,&set); } causes fds.c:7:2: warning: conversion to ‘long unsigned int’ from ‘int’ may change the sign of the result [-Wsign-conversion]   FD_SET(X,&set);   ^~

Re: Possible issue with gawk 5.0.1-1: Getting new warnings

2019-07-12 Thread Steven Penny
On Thu, 11 Jul 2019 11:51:09, Vipul P wrote: Here is a sample script to invoke awk: $ cat ./gawk_error.sh #!/bin/sh echo "This:is:a:colon:separated:line:%%%:" | awk '{ gsub("\\%", "%25", $0); gsub("\\:", "%3A", $0); print }' As others said, your invocation is not idiomatic AWK. Anywher

Re: Possible issue with gawk 5.0.1-1: Getting new warnings

2019-07-12 Thread Brian Inglis
quot;, "%25", $0); >> gsub("\\:", "%3A", $0); >> print >> }' > gsub(regexp, replacement[, target]) > echo "This:is:a:colon:separated:line:%%%:" | awk '{ > gsub(/%/, "%25"); > gsub(/:/, "%3A"); >

Re: Possible issue with gawk 5.0.1-1: Getting new warnings

2019-07-12 Thread Houder
; | awk '{ > gsub("\\%", "%25", $0); > gsub("\\:", "%3A", $0); > print > }' ? gsub(regexp, replacement[, target]) echo "This:is:a:colon:separated:line:%%%:" | awk '{ gsub(/%/, "%25");

Possible issue with gawk 5.0.1-1: Getting new warnings

2019-07-11 Thread Vipul P
Hello, Here is a sample script to invoke awk: $ cat ./gawk_error.sh #!/bin/sh echo "This:is:a:colon:separated:line:%%%:" | awk '{ gsub("\\%", "%25", $0); gsub("\\:", "%3A", $0); print }' If I invoke it with gawk 5.0.1

Re: warnings starting "emacs"

2017-09-27 Thread Ken Brown
On 9/27/2017 5:00 AM, Siegmar Gross wrote: Hi Ken, thank you very much for your answer. Unfortunately, I still get the same messages. I've updated my system to the latest package versions and I use Cygwin x86_64 on top of Windows 10. Unfortunately, I get some warnings when a start &

Re: warnings starting "emacs"

2017-09-27 Thread Siegmar Gross
Hi Ken, thank you very much for your answer. Unfortunately, I still get the same messages. I've updated my system to the latest package versions and I use Cygwin x86_64 on top of Windows 10. Unfortunately, I get some warnings when a start "emacs". PC26 cygwin64 26 emacs

Re: warnings starting "emacs"

2017-09-26 Thread Ken Brown
On 9/26/2017 6:18 AM, Siegmar Gross wrote: Hi, I've updated my system to the latest package versions and I use Cygwin x86_64 on top of Windows 10. Unfortunately, I get some warnings when a start "emacs". PC26 cygwin64 26 emacs Cygwin.bat PC26 cygwin64 27 libGL error: Screen is

warnings starting "emacs"

2017-09-26 Thread Siegmar Gross
Hi, I've updated my system to the latest package versions and I use Cygwin x86_64 on top of Windows 10. Unfortunately, I get some warnings when a start "emacs". PC26 cygwin64 26 emacs Cygwin.bat PC26 cygwin64 27 libGL error: Screen is not Windows-DRI capable ** (emacs:9112): WA

Re: Norton Warnings about cygwin.com

2013-11-09 Thread Sean Murphy
Hello Emily, On Sat, Nov 9, 2013 at 6:43 AM, Emily Jackson wrote: > I am getting a "This page is suspect" warning from my Norton toolbar in > Firefox when I go to any cygwin.com page; the full report says that > http://cygwin.com/setup-x86.exe is a virus. > > Emily > > -- > Problem reports:

Norton Warnings about cygwin.com

2013-11-09 Thread Emily Jackson
I am getting a "This page is suspect" warning from my Norton toolbar in Firefox when I go to any cygwin.com page; the full report says that http://cygwin.com/setup-x86.exe is a virus. Emily -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Doc

Re: Suppressing annoying warnings

2012-11-18 Thread Christopher Faylor
On Sun, Nov 18, 2012 at 01:41:04PM +, Uday S Reddy wrote: >On 10/1/2012 1:18 AM, Christopher Faylor wrote: >> On Sat, Sep 29, 2012 at 11:53:06AM -0400, Ken Brown wrote: >>> On 9/29/2012 11:33 AM, Daniel Corbe wrote: If this were an environment that I had customized on my own I might a

Re: Suppressing annoying warnings

2012-11-18 Thread Ken Brown
On 11/18/2012 8:41 AM, Uday S Reddy wrote: On 10/1/2012 1:18 AM, Christopher Faylor wrote: On Sat, Sep 29, 2012 at 11:53:06AM -0400, Ken Brown wrote: On 9/29/2012 11:33 AM, Daniel Corbe wrote: If this were an environment that I had customized on my own I might agree with you; however, this is

Re: Suppressing annoying warnings

2012-11-18 Thread Uday S Reddy
On 10/1/2012 1:18 AM, Christopher Faylor wrote: On Sat, Sep 29, 2012 at 11:53:06AM -0400, Ken Brown wrote: On 9/29/2012 11:33 AM, Daniel Corbe wrote: If this were an environment that I had customized on my own I might agree with you; however, this is a standard toolkit that I'm working with and

Re: Suppressing annoying warnings

2012-09-30 Thread Christopher Faylor
On Sat, Sep 29, 2012 at 11:53:06AM -0400, Ken Brown wrote: >On 9/29/2012 11:33 AM, Daniel Corbe wrote: >> If this were an environment that I had customized on my own I might >> agree with you; however, this is a standard toolkit that I'm working >> with and its functionally portable to every platfo

Re: Suppressing annoying warnings

2012-09-29 Thread Ken Brown
On 9/29/2012 11:33 AM, Daniel Corbe wrote: If this were an environment that I had customized on my own I might agree with you; however, this is a standard toolkit that I'm working with and its functionally portable to every platform I've tried to use so far except for cygwin. And the reason is

Re: Suppressing annoying warnings

2012-09-29 Thread Daniel Corbe
Ken Brown writes: > On 9/28/2012 7:49 PM, Daniel Corbe wrote: >> >> I'm using emacs-w3m to render HTML messages in gnus on windows by way of >> the cygwin w3m port. It's working, except every time w3m gets run I'm >> greeted by this warning message: >> >> "tty" option detected in CYGWIN environm

Re: Suppressing annoying warnings

2012-09-29 Thread Ken Brown
On 9/28/2012 7:49 PM, Daniel Corbe wrote: I'm using emacs-w3m to render HTML messages in gnus on windows by way of the cygwin w3m port. It's working, except every time w3m gets run I'm greeted by this warning message: "tty" option detected in CYGWIN environment variable. CYGWIN=tty is no longe

Re: Suppressing annoying warnings

2012-09-29 Thread Bob Heckel
On Fri, Sep 28, 2012 at 7:49 PM, Daniel Corbe wrote: > > I'm using emacs-w3m to render HTML messages in gnus on windows by way of > the cygwin w3m port. It's working, except every time w3m gets run I'm > greeted by this warning message: > > "tty" option detected in CYGWIN environment variable. >

Suppressing annoying warnings

2012-09-28 Thread Daniel Corbe
I'm using emacs-w3m to render HTML messages in gnus on windows by way of the cygwin w3m port. It's working, except every time w3m gets run I'm greeted by this warning message: "tty" option detected in CYGWIN environment variable. CYGWIN=tty is no longer supported. Please remove it from your CYG

Re: mingw64-i686-gcc-4.5.3-4: -Wformat warnings broken in C++

2012-01-05 Thread Christian Franke
JonY wrote: On 1/5/2012 02:31, Christian Franke wrote: Both are new issues not seen in previous releases. If desired, I could resend this report to mingw-w64 list. Christian Yes, please do that. This is an odd problem indeed, maybe a missing attribute qualifier. Done. Christian -- Proble

Re: mingw64-i686-gcc-4.5.3-4: -Wformat warnings broken in C++

2012-01-04 Thread JonY
On 1/5/2012 02:31, Christian Franke wrote: > When printf/scanf functions from MinGW runtime are selected via > __USE_MINGW_ANSI_STDIO, then format string checking is broken. This only > affects the C++ compiler: > > > $ cygcheck -f /usr/bin/i686-w64-mingw32-g++ > mingw64-i686-gcc-g++-4.5.3-4 > >

mingw64-i686-gcc-4.5.3-4: -Wformat warnings broken in C++

2012-01-04 Thread Christian Franke
When printf/scanf functions from MinGW runtime are selected via __USE_MINGW_ANSI_STDIO, then format string checking is broken. This only affects the C++ compiler: $ cygcheck -f /usr/bin/i686-w64-mingw32-g++ mingw64-i686-gcc-g++-4.5.3-4 $ cat testfmt.c #define __USE_MINGW_ANSI_STDIO 1 #include

Re: Re: Spurious warnings about MS-DOS paths

2011-04-15 Thread Ryan Johnson
On 2:59 PM, Eric Blake wrote: On 04/13/2011 09:10 PM, Ryan Johnson wrote: Hi all, A recent cygwin update has started spewing warnings such as the following when I do tab completion on a path containing spaces: $ cd ~/Home/Documents/Pcygwin warning: MS-DOS style path detected: ~/Home

Re: Spurious warnings about MS-DOS paths

2011-04-14 Thread Eric Blake
On 04/13/2011 09:10 PM, Ryan Johnson wrote: > Hi all, > > A recent cygwin update has started spewing warnings such as the > following when I do tab completion on a path containing spaces: >> $ cd ~/Home/Documents/Pcygwin warning: >> MS-DOS style path detected: ~/Home/Doc

Re: Spurious warnings about MS-DOS paths

2011-04-13 Thread Christopher Faylor
On Wed, Apr 13, 2011 at 11:10:14PM -0400, Ryan Johnson wrote: >Hi all, > >A recent cygwin update has started spewing warnings such as the >following when I do tab completion on a path containing spaces: >> $ cd ~/Home/Documents/Pcygwin warning: >> MS-DOS style path detec

Spurious warnings about MS-DOS paths

2011-04-13 Thread Ryan Johnson
Hi all, A recent cygwin update has started spewing warnings such as the following when I do tab completion on a path containing spaces: $ cd ~/Home/Documents/Pcygwin warning: MS-DOS style path detected: ~/Home/Documents/PC\ reviews\ 2011 Preferred POSIX equivalent is: ~/Home/Documents/PC

Re: FYI-- Symantec Security Warnings with setup.exe

2011-01-04 Thread Larry Hall (Cygwin)
On 1/1/2011 3:12 PM, Carl Lund wrote: Hi-- On running Cygwin setup today, Norton Security complained about two files tee.ext and date.exe Norton used its SONAR (see below) to detect what it thought was a high security risk. They claimed programs were behaving suspicious on my computer. One thi

FYI-- Symantec Security Warnings with setup.exe

2011-01-01 Thread Carl Lund
Hi-- On running Cygwin setup today, Norton Security complained about two files tee.ext and date.exe Norton used its SONAR (see below) to detect what it thought was a high security risk. They claimed programs were behaving suspicious on my computer. One thing that flagged these files was that

Re: warnings

2009-03-23 Thread Corinna Vinschen
On Mar 23 08:53, Yaakov S wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA256 > > /usr/include/asm/byteorder.h:36: warning: inline function > '__constant_ntohs' declared but never defined > /usr/include/asm/byteorder.h:35: warning: inline function > '__constant_ntohl' declared but never def

warnings

2009-03-23 Thread Yaakov (Cygwin/X)
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 /usr/include/asm/byteorder.h:36: warning: inline function '__constant_ntohs' declared but never defined /usr/include/asm/byteorder.h:35: warning: inline function '__constant_ntohl' declared but never defined These are first prototyped extern inline,

Need Help Plz, Warnings Configure openoffice build under cygwin

2007-02-26 Thread Zaki
Hi all, I'm new to openoffice, i lanched ./Configure under cygwin, i have warnings : Internal freetype2 does not support emboldening Use of uninitialized value in substitution (s///) at ./oowintool line 66 can you help me Thanks -- Unsubscribe info: http://cygwin.com/ml/#unsubs

Re: gettext 0.14.5 - some warnings on compiling

2007-01-26 Thread Eric Blake
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 According to -VASKO- on 1/26/2007 5:54 AM: > > So, to whom I should report about these warnings to get skilled suggestions > for fast fixing or confirmations for safely ignoring it? Anybody can really > help ? Thanks a lot. >

Re: gettext 0.14.5 - some warnings on compiling

2007-01-26 Thread -VASKO-
> So, to whom I should report about these warnings to get skilled suggestions for fast fixing or confirmations for safely ignoring it? Anybody can really help ? Thanks a lot. -- View this message in context: http://www.nabble.com/gettext-0.14.5---some-warnings-on-compiling-tf3105340.html

Re: gettext 0.14.5 - some warnings on compiling

2007-01-25 Thread Eric Blake
m SVN. It required gettext 0.14.5. I just run 'make src' command > and download from http://ftp.gnu.org/gnu automatically stared with > curl. Don't ask me, why. Patch for l10nflist.c is trivial, I just > change some arguments types to 'const char*' instead

Re: gettext 0.14.5 - some warnings on compiling

2007-01-25 Thread Eric Blake
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 According to Eric Blake on 1/25/2007 6:31 AM: > > Or for that matter, explain why you need to compile from source. Cygwin > comes with gettext 0.15 precompiled, so that you need not worry about > compiling it yourself. > I will add this - gettext 0

Re: gettext 0.14.5 - some warnings on compiling

2007-01-25 Thread Eric Blake
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 According to Eric Blake on 1/25/2007 6:28 AM: > According to -VASKO- on 1/25/2007 6:22 AM: >> === >> ./l10nflist.c: In function `_nl_make_l10nflist': >> ./l10nflist.c:343: warning: assignm

Re: gettext 0.14.5 - some warnings on compiling

2007-01-25 Thread Eric Blake
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 According to -VASKO- on 1/25/2007 6:22 AM: > === > ./l10nflist.c: In function `_nl_make_l10nflist': > ./l10nflist.c:343: warning: assignment makes pointer from integer without a > cast Co

gettext 0.14.5 - some warnings on compiling

2007-01-25 Thread -VASKO-
mpile': regex.c:3211: warning: comparison is always true due to limited range of data type === I get warnings listed above when compiling gettext 0.14.5-1. I found fix for l10nflist.c here: http://gcc.gnu.org/ml/gcc/2006-09/msg00646.

aclocal warnings

2006-04-03 Thread Brad Bell
/automake/automake.html#Extending-aclocal I am including below (for others) a bash script that I use to fix this (so that one pays better attention to other warnings generated by aclocal). The proper fix for this is to have the libsmi, libmcrypt, and cppunit projects fix the macros. # ! /bin/bash

Re: Exim 4.52 Cygwin 1.5.8 SPA authentication failures warnings in Reject Log

2005-08-23 Thread Olaf Föllinger
Hi, On Tue, Aug 23, 2005 at 08:26:30PM -0500, Herb Martin wrote: > Would someone running Exim 4.50+ (especially 4.52) on CygWin and using > Microsoft Outlook or Outlook Express with SPA (NTLM) authentication to a > flat file please search your Exim reject log for a warning of the following > type

Exim 4.52 Cygwin 1.5.8 SPA authentication failures warnings in Reject Log

2005-08-23 Thread Herb Martin
Would someone running Exim 4.50+ (especially 4.52) on CygWin and using Microsoft Outlook or Outlook Express with SPA (NTLM) authentication to a flat file please search your Exim reject log for a warning of the following type (all one line): 2005-08-23 18:36:53 spa authenticator failed for cpe-70-1

Re: Warnings for converting non-pointer types to NULL

2005-05-12 Thread Raz
On 5/12/05, Mikael <[EMAIL PROTECTED]> wrote: > I guess presume NULL is a macro evaulting to 0 in windows.h and a typedef > for (void *)0 in , or? No. Not in . Since you are using that header file, I assume you are using C++. In C++, NULL is 0, not (void *)0 as it is in C. > > Since I want to ha

Warnings for converting non-pointer types to NULL

2005-05-12 Thread Mikael
Hello, I'm using Cygwin to develop programs using Win32 for the GUI and lot's of posix stuff for the "back-end". Anyway, I noticed that if I include in a file, I have to include after it if I want to receive warnings for converting non-pointer types to NULL. I guess pre

Re: strange warnings from man (Re: [ANNOUNCEMENT] Updated: man-1.5o1-1)

2004-12-13 Thread Shankar Unni
Dave Korn wrote: http://www.cygwin.com/ml/cygwin/2004-09/msg01621.html Whoops. Blush! Forgot to check the archives.. Thanks. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html F

RE: strange warnings from man (Re: [ANNOUNCEMENT] Updated: man-1.5o1-1)

2004-12-13 Thread Dave Korn
> -Original Message- > From: cygwin-owner On Behalf Of Shankar Unni > Sent: 13 December 2004 19:27 > Dr. Volker Zell wrote: > > > A new version of 'man' has been uploaded to a server near you. > > man NEWS: > > = > > man-1.5o1: > > With the new version, I'm getting the following

strange warnings from man (Re: [ANNOUNCEMENT] Updated: man-1.5o1-1)

2004-12-13 Thread Shankar Unni
Dr. Volker Zell wrote: A new version of 'man' has been uploaded to a server near you. man NEWS: = man-1.5o1: With the new version, I'm getting the following 4 messages every time I run "man": Unrecognized line in config file (ignored) JNROFF LANG=ja_JP.UTF-8 /usr/bin/groff -Tnipp

Re: Is there any option to export the errors and warnings to a file

2004-02-04 Thread Larry Hall
At 07:38 PM 2/4/2004, vikie you wrote: >Larry Hall,ÄúºÃ£¡ > >Is there any option to export the errors and warnings to a file. >Thanks. Hm, this is an interesting approach. You ask a question on the Cygwin list. I point out that the question is off-topic for the list and

Re: Is there any option to export the errors and warnings to a file

2004-02-04 Thread Shankar Unni
vikie wrote: > Larry Hall,您好! Please address questions to the group. > Is there any option to export the errors and warnings to a file. > Thanks. This is not a "cygwin" question, but a Win32 API question. Please read the MSDN documentation to see how to read the

Is there any option to export the errors and warnings to a file

2004-02-04 Thread vikie
Larry Hall,您好! Is there any option to export the errors and warnings to a file. Thanks. === 2004-02-04 10:50:00 您在来信中写道:=== >At 07:05 AM 2/4/2004, vikie you wrote: > >>In VC++ program,I call the CreateProcess() fuction to run the >> arm-920t-elf-

Re: How can I export the errors and warnings to a file in a window program

2004-02-04 Thread Larry Hall
At 07:05 AM 2/4/2004, vikie you wrote: >In VC++ program,I call the CreateProcess() fuction to run the > arm-920t-elf-gcc.exe, How can I export the errors and warnings to a file.Thanks! > Sorry, this question is off-topic for this list. Here we talk about Cygwin (

How can I export the errors and warnings to a file in a window program

2004-02-04 Thread vikie
In VC++ program,I call the CreateProcess() fuction to run the arm-920t-elf-gcc.exe, How can I export the errors and warnings to a file.Thanks!   vikie [EMAIL PROTECTED]   2004-02-04 -- Unsubscribe info: http://cygwin.com/ml

mount managed warnings!

2003-07-10 Thread Christopher Faylor
I should have put some stronger caveats in the release announcement about the use of the -o managed option to mount. As people have discovered, it is not ready for prime time. And, even if it was ready for prime time, it is definitely not something that you want to use on all of your directories.

Getting rid of auto-import warnings

2003-01-31 Thread Johnny Willemsen
__declspec import/export when building with shared libraries. I got most of ACE/TAO compiling, but independent of setting the linker flags --enable-auto-import or --disable-auto-import I keep getting warnings about auto-import. It is a class with multiple statics and only on one of the statics the warning is

Re: w32api bugfix (was: Currently, CVS setup.exe does not compile, due to warnings with 'warnings as errors' in effect. How best to change code to avoid warnings?)

2002-03-04 Thread Max Bowsher
Responses below Max. - Original Message - From: "Robert Collins" <[EMAIL PROTECTED]> To: "Max Bowsher" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Sunday, March 03, 2002 9:20 PM Subject: RE: w32api bugfix (was: Currently, CVS setup.exe does not c

RE: w32api bugfix (was: Currently, CVS setup.exe does not compile, due to warnings with 'warnings as errors' in effect. How best to change code to avoid warnings?)

2002-03-03 Thread Robert Collins
> -Original Message- > From: Max Bowsher [mailto:[EMAIL PROTECTED]] > Sent: Sunday, March 03, 2002 9:36 PM > To: [EMAIL PROTECTED] > Subject: w32api bugfix (was: Currently, CVS setup.exe does > not compile, due to warnings with 'warnings as errors' in

w32api bugfix (was: Currently, CVS setup.exe does not compile, due to warnings with 'warnings as errors' in effect. How best to change code to avoid warnings?)

2002-03-03 Thread Max Bowsher
ect 'int proc();' means: ditto AND causes a warning (which, since setup is compiled with 'warnings as errors' on, stops the build) 'int proc(void);' means: ditto Summary: The construct 'typedef int (WINAPI *FARPROC)();' in w32api causes an error

RE: Currently, CVS setup.exe does not compile, due to warnings with 'warnings as errors' in effect. How best to change code to avoid warnings?

2002-03-02 Thread Robert Collins
> -Original Message- > From: Max Bowsher [mailto:[EMAIL PROTECTED]] > What do the experts think? Hmm, does C++ support the same feature? If not then an ifdef __cplusplus might do it. Rob -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Bug reporting: http:/

Currently, CVS setup.exe does not compile, due to warnings with 'warnings as errors' in effect. How best to change code to avoid warnings?

2002-03-02 Thread Max Bowsher
Currently, CVS setup.exe does not compile, due to warnings with 'warnings as errors' in effect. How best to change code to avoid warnings? Warning in winsup/bz2lib/bzlib.c: static char *bzerrorstrings[] = { "OK" This requires the insertion of a const qualifier.

Re: cygwin ualarm() breaks Perl [WAS Re: cygwin @ 13452 warnings]

2001-12-06 Thread Christopher Faylor
On Thu, Dec 06, 2001 at 12:29:57PM -0500, John Peacock wrote: >"H.Merijn Brand" wrote: >> >> the ualarm is still fatal on 1.3.6-2. I've just removed the second argument in >> > >I found the following entry in winsup/cygwin/ChangeLog: > > 2001-11-27 Christopher Faylor <[EMAIL PROTECTED]> > >

Cygwin ualarm() breaks Perl [WAS Re: Cygwin @ 13452 warnings]

2001-12-06 Thread John Peacock
"H.Merijn Brand" wrote: > > the ualarm is still fatal on 1.3.6-2. I've just removed the second argument in > I found the following entry in winsup/cygwin/ChangeLog: 2001-11-27 Christopher Faylor <[EMAIL PROTECTED]> * cygwin.din (ualarm): New export. (ualarm): New functio