Re: po update
Eric Blake <[email protected]>
| Newsgroups | gmane.comp.gnu.m4.patches |
|---|---|
| Message-ID | <[email protected]> |
Eric Blake <ebb9 <at> byu.net> writes: > I noticed that the use of N_() in main.c was having problems with --disable- > assert. And setlocale is required by C89, which we assume now. But it still requires the use of <locale.h> :) 2006-10-25 Eric Blake <[email protected]> * src/m4.h (includes): Need <locale.h> after all; fixes regression from yesterday. Index: src/m4.h =================================================================== RCS file: /sources/m4/m4/src/m4.h,v retrieving revision 1.22 diff -u -r1.22 m4.h --- src/m4.h 24 Oct 2006 14:14:13 -0000 1.22 +++ src/m4.h 25 Oct 2006 14:51:06 -0000 @@ -25,6 +25,7 @@ #include <ctype.h> #include <errno.h> +#include <locale.h> #include <signal.h> #include <stdio.h> #include <stdlib.h>