From 6f788c0ea5198d3d1ec1566f3701642b12d7bc05 Mon Sep 17 00:00:00 2001 From: oetiker Date: Mon, 7 May 2012 07:31:28 +0000 Subject: [PATCH] fix warning: "__STRICT_ANSI__" is not defined warning patch by Gilles Esp git-svn-id: svn://svn.oetiker.ch/rrdtool/trunk/program@2288 a5681a0c-68f1-0310-ab6d-d61299d08faa --- src/gettext.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gettext.h b/src/gettext.h index 209921e..b9380cc 100644 --- a/src/gettext.h +++ b/src/gettext.h @@ -170,7 +170,7 @@ npgettext_aux (const char *domain, #include #define _LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS \ - (((__GNUC__ >= 3 || __GNUG__ >= 2) && !__STRICT_ANSI__) \ + (((__GNUC__ >= 3 || __GNUG__ >= 2) && !defined __STRICT_ANSI__) \ /* || __STDC_VERSION__ >= 199901L */ ) #if !_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS -- 2.11.0