Re: [screen-devel] [PATCH] Fix configure when CFLAGS="-Wall -Werror" is specified.

2010-03-09 Thread Sadrul Habib Chowdhury
* William Pursell had this to say on [09 Mar 2010, 05:04:57 -1000]: > Sadrul Habib Chowdhury wrote: > > > > -AC_TRY_RUN(main(){exit(0);},,[ > > +AC_TRY_RUN([ > > > AC_TRY_RUN is deprecated. Use AC_RUN_IFELSE > > > Or, perhaps we should just make sure that we remove -Wall -Werror from >

Re: [screen-devel] [PATCH] Fix configure when CFLAGS="-Wall -Werror" is specified.

2010-03-09 Thread William Pursell
Sadrul Habib Chowdhury wrote: > > -AC_TRY_RUN(main(){exit(0);},,[ > +AC_TRY_RUN([ AC_TRY_RUN is deprecated. Use AC_RUN_IFELSE > Or, perhaps we should just make sure that we remove -Wall -Werror from > CFLAGS when running ./configure, to keep things simple? That is the standard app

Re: [screen-devel] [PATCH] Fix configure when CFLAGS="-Wall -Werror" is specified.

2010-02-27 Thread Giuseppe Scrivano
Hi Sadrul, thanks for your comments. I have used include's in the configure.in tests instead of using external declarations. I have also fixed compiler warning in the screen code (errors when -Werror is used), tested with gcc 4.4.3. I didn't have time yet to look at the patch on savannah, I'll

Re: [screen-devel] [PATCH] Fix configure when CFLAGS="-Wall -Werror" is specified.

2010-02-20 Thread Sadrul Habib Chowdhury
* Giuseppe Scrivano had this to say on [13 Feb 2010, 22:44:04 +0100]: > Hello, > > this trivial patch fixes ./configure CFLAGS="-Wall -Werror". Hi. Thanks for the patch! It looks like when we configure with -Wall -Werror, even with your patch, the configure gets some incorrect results, e.g. in m

[screen-devel] [PATCH] Fix configure when CFLAGS="-Wall -Werror" is specified.

2010-02-14 Thread Giuseppe Scrivano
Hello, this trivial patch fixes ./configure CFLAGS="-Wall -Werror". Cheers, Giuseppe >From 2323115d8b432eb85d5341da6664215ad75cda9a Mon Sep 17 00:00:00 2001 From: Giuseppe Scrivano Date: Sat, 13 Feb 2010 22:38:59 +0100 Subject: [PATCH] Fix configure when CFLAGS="-Wall -Werror" is specified. --