Re: [netcf-devel] Re: netcf - anyone here for an "other operating system (but not (Solaris))"

2016-11-02 Thread Michael Felt
On 01/11/2016 15:52, Eric Blake wrote: # Skip lines that do not start with version. Indeed, and the autoconf manual warns about this: >Sed scripts should not use branch labels longer than 7 characters and >should not contain comments; AIX 5.3 sed rejects indented comments. Which AIX version a

Re: [netcf-devel] netcf - anyone here for an "other operating system (but not (Solaris))"

2016-11-02 Thread Michael Felt
On 01/11/2016 13:09, Daniel P. Berrange wrote: On Tue, Nov 01, 2016 at 11:55:12AM -, aixto...@gmail.com wrote: Granted - the web page is from 7 years ago (now that I look more closely). How can I help ? netcf is in its very early stages, and can be improved in any number of ways. The most

Re: [netcf-devel] netcf - anyone here for an "other operating system (but not (Solaris))"

2016-11-02 Thread Daniel P. Berrange
On Wed, Nov 02, 2016 at 12:47:03PM +0100, Michael Felt wrote: > On 01/11/2016 13:09, Daniel P. Berrange wrote: > > On Tue, Nov 01, 2016 at 11:55:12AM -, aixto...@gmail.com wrote: > > > Granted - the web page is from 7 years ago (now that I look more closely). > > > > > > How can I help ? > > >

[PATCH] support for quarter from strftime (%q)

2016-11-02 Thread Pádraig Brady
On 06/10/16 12:53, Pádraig Brady wrote: > On 06/10/16 11:11, john woods wrote: >> date +%YW%V gives week and year; it would be nice if date +%YQ%q could >> return, eg 2016Q3 as having a quarters code in date would save AWKwardness >> or shell arithmetic. >> >> Perhaps we could have >> %q 1,2,3,4 >

Re: manywarnings.m4 optimization request

2016-11-02 Thread Tim Ruehsen
On Sunday, October 30, 2016 11:33:18 AM CET Paul Eggert wrote: > Tim Rühsen wrote: > > It would of great help though, if someone could lead me to the (.m4 ?) > > files to change and/or needed functionality. > > http://savannah.gnu.org/git/?group=gnulib > http://git.savannah.gnu.org/cgit/gnulib.git

Re: bug#23153: [PATCH]: For FIXME in cp.c

2016-11-02 Thread Pádraig Brady
unarchive 23153 stop On 05/04/16 15:49, Rishabh Dave wrote: > Did fix that - changing function call to GNU style and "suffix_from_env" to > local variable. The corresponding patch is attached. > > On Mon, Apr 4, 2016 at 10:36 PM, Paul Eggert wrote: > >> On 04/04/2016 09:30 AM, Rishabh Dave wrot

Re: avoid new GCC-7-exposed warnings

2016-11-02 Thread Eric Blake
On 11/01/2016 05:24 PM, Eric Blake wrote: >> Subject: [PATCH 1/3] gnulib: update to latest and adapt printf-quote.sh test >> >> * .gitignore: Add /lib/limits.h. >> * tests/misc/printf-quote.sh: Reflect that a single quote is now >> rendered as "'", rather than as ''\'''. >> --- >> .gitignore

Re: __typeof__ does not work as expected with XLC compiler on AIX 5.2

2016-11-02 Thread TestRealTime .
Hello Paul, I checked the values of macros you have asked: __GNUC__, __SUNPRO_C, __STDC__, __xlC_ver__ are all undefined. The rest ones are defined and the values are same for 32- and 64-bit compilation: __IBM__TYPEOF__=1 __IBMC__=600 __xlC__=1536 Compiler version is much older than yours: cc_r

Re: __typeof__ does not work as expected with XLC compiler on AIX 5.2

2016-11-02 Thread TestRealTime .
Hello Florian, I tried to check your assumption. I prepared a small code snipper which is compiled successfully. I think, it may be considered as some "evidence". autobld@pavo:base> cat simple.c int main() { int x = 3; __typeof__(x) y = 4; long z; z = (__typeof__(z)) (x + y);