From: Bruno Haible Date: Fri, 11 Aug 2006 13:09:44 +0000 (+0000) Subject: Work around the __VA_LIST__ in problem on Tru64 with DTK compiler. X-Git-Tag: cvs-readonly~2071 X-Git-Url: http://erislabs.org.uk/gitweb/?a=commitdiff_plain;h=cb93838fdc233b82f1688dcd5b25edb5a5ab08ce;p=gnulib.git Work around the __VA_LIST__ in problem on Tru64 with DTK compiler. --- diff --git a/m4/ChangeLog b/m4/ChangeLog index f16924a70..1634c4f83 100644 --- a/m4/ChangeLog +++ b/m4/ChangeLog @@ -1,3 +1,8 @@ +2006-08-11 Bruno Haible + + * wcwidth.m4 (gl_FUNC_WCWIDTH): Include and before + . Needed for OSF/1 and BSD/OS. + 2006-08-10 Jim Meyering * cycle-check.m4: New file. diff --git a/m4/wcwidth.m4 b/m4/wcwidth.m4 index 06a12a1b2..8cdfba436 100644 --- a/m4/wcwidth.m4 +++ b/m4/wcwidth.m4 @@ -1,4 +1,4 @@ -# wcwidth.m4 serial 4 +# wcwidth.m4 serial 5 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, @@ -19,6 +19,12 @@ AC_DEFUN([gl_FUNC_WCWIDTH], /* AIX 3.2.5 declares wcwidth in . */ #include #if HAVE_WCHAR_H +/* Tru64 with Desktop Toolkit C has a bug: must be included before + . + BSD/OS 4.1 has a bug: and must be included before + . */ +# include +# include # include #endif ])])