From ab65d635c8bb11b9343e727f8e73e7d718322e1e Mon Sep 17 00:00:00 2001 From: maximilian attems Date: Thu, 31 May 2012 19:40:49 +0200 Subject: [PATCH] lib/strutils: circumvent missing localeconv() Add stub too nls.h, include it instead of locale.h. Code in strutils handles already returned NULL. Signed-off-by: maximilian attems --- include/nls.h | 6 ++++++ lib/strutils.c | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/include/nls.h b/include/nls.h index 9a9311bdcc..3eabfe63b3 100644 --- a/include/nls.h +++ b/include/nls.h @@ -12,6 +12,12 @@ int main(int argc, char *argv[]); #else # undef setlocale # define setlocale(Category, Locale) /* empty */ +struct lconv +{ + char *decimal_point; +}; +# undef localeconv +# define localeconv() NULL #endif #ifdef ENABLE_NLS diff --git a/lib/strutils.c b/lib/strutils.c index 6bdc01d380..036ae06398 100644 --- a/lib/strutils.c +++ b/lib/strutils.c @@ -9,10 +9,10 @@ #include #include #include -#include #include #include "c.h" +#include "nls.h" #include "strutils.h" #include "bitops.h" -- 2.47.3