diff options
-rw-r--r-- | extra/Configs/Config.in | 2 | ||||
-rw-r--r-- | include/libintl.h | 5 |
2 files changed, 6 insertions, 1 deletions
diff --git a/extra/Configs/Config.in b/extra/Configs/Config.in index 4deed3026..d0933722e 100644 --- a/extra/Configs/Config.in +++ b/extra/Configs/Config.in @@ -944,7 +944,7 @@ config UCLIBC_HAS_SYS_SIGLIST config UCLIBC_HAS_GETTEXT_AWARENESS bool "Include gettext awareness" - depends on UCLIBC_HAS_LOCALE + depends on UCLIBC_HAS_LOCALE && UCLIBC_MJN3_ONLY default n help NOTE!!! Not yet integrated with strerror and strsignal. NOTE!!! diff --git a/include/libintl.h b/include/libintl.h index 89db38f3b..1ba9d0d8c 100644 --- a/include/libintl.h +++ b/include/libintl.h @@ -34,6 +34,11 @@ __BEGIN_DECLS +#ifdef __UCLIBC_MJN3_ONLY__ +#warning "mjn3 FIXME: gettext has a prototype but isn't defined." +#warning "mjn3 FIXME: __OPTIMIZE__ is never defined." +#endif + /* Look up MSGID in the current default message catalog for the current LC_MESSAGES locale. If not found, returns MSGID itself (the default text). */ |