]> Git Repo - uclibc-ng.git/commitdiff
Message catalog support for internationalization is not currently
authorEric Andersen <[email protected]>
Wed, 7 Aug 2002 08:42:33 +0000 (08:42 -0000)
committerEric Andersen <[email protected]>
Wed, 7 Aug 2002 08:42:33 +0000 (08:42 -0000)
provided by uClibc, and here I have added macros to disable it.
 -Erik

include/libintl.h [new file with mode: 0644]

diff --git a/include/libintl.h b/include/libintl.h
new file mode 100644 (file)
index 0000000..ae1ac88
--- /dev/null
@@ -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 */
+
This page took 0.023786 seconds and 4 git commands to generate.