From: Bruno Haible Date: Wed, 25 Oct 2006 12:59:30 +0000 (+0000) Subject: __PGI or __PGIC__? I don't really know. X-Git-Tag: 0.16.x-branchpoint~23 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aad7a9eefba9ed864125e6ca6b25c65a114f2622;p=thirdparty%2Fgettext.git __PGI or __PGIC__? I don't really know. --- diff --git a/gettext-tools/m4/ChangeLog b/gettext-tools/m4/ChangeLog index 809fd2f54..c47b93492 100644 --- a/gettext-tools/m4/ChangeLog +++ b/gettext-tools/m4/ChangeLog @@ -2,6 +2,10 @@ * gettext-0.16 released. +2006-10-25 Bruno Haible + + * openmp.m4 (gt_OPENMP): Adjust test for PGI compiler. + 2006-10-25 Bruno Haible * libgrep.m4 (gt_LIBGREP): Also check for wcscoll. Needed for diff --git a/gettext-tools/m4/openmp.m4 b/gettext-tools/m4/openmp.m4 index 2ffa40332..4b94804b4 100644 --- a/gettext-tools/m4/openmp.m4 +++ b/gettext-tools/m4/openmp.m4 @@ -1,4 +1,4 @@ -# openmp.m4 serial 2 (gettext-0.16) +# openmp.m4 serial 3 (gettext-0.16) dnl Copyright (C) 2006 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, @@ -80,7 +80,7 @@ AC_DEFUN([gt_OPENMP], else dnl --- Test for SGI C, PGI C. AC_EGREP_CPP([Brand], [ -#if defined __sgi || defined __PGIC__ +#if defined __sgi || defined __PGI || defined __PGIC__ Brand #endif ], result=yes, result=no)