From 9fe81b755894fc982714657c53d1cb4be59bc161 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Wed, 7 Aug 2002 08:42:33 +0000 Subject: Message catalog support for internationalization is not currently provided by uClibc, and here I have added macros to disable it. -Erik --- include/libintl.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 include/libintl.h diff --git a/include/libintl.h b/include/libintl.h new file mode 100644 index 000000000..ae1ac88e8 --- /dev/null +++ b/include/libintl.h @@ -0,0 +1,18 @@ +/* Message catalog support for internationalization is not currently + * provided by uClibc, and so I have added macros here to disable it. + * Sorry about that. + */ + +#ifndef _LIBINTL_H +#define _LIBINTL_H 1 + +#undef bindtextdomain +#define bindtextdomain(Domain, Directory) /* empty */ +#undef textdomain +#define textdomain(Domain) /* empty */ +#define _(Text) (Text) +#define N_(Text) (Text) + + +#endif /* _LIBINTL_H */ + -- cgit v1.2.3