[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: po update
From: |
Eric Blake |
Subject: |
Re: po update |
Date: |
Wed, 25 Oct 2006 14:52:56 +0000 (UTC) |
User-agent: |
Loom/3.14 (http://gmane.org/) |
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 <address@hidden>
* 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>