diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-06-17 07:39:18 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-06-17 07:39:18 +0000 |
commit | a8e4c924e8cdd2db10de2175f73c70ad43aa931b (patch) | |
tree | 9555863a7c6c9b6f3a98ed5b4bc33b60c7208163 /intl | |
parent | 1d96d74da7f6adccd82e4000efe38900b295467a (diff) | |
download | glibc-a8e4c924e8cdd2db10de2175f73c70ad43aa931b.tar glibc-a8e4c924e8cdd2db10de2175f73c70ad43aa931b.tar.gz glibc-a8e4c924e8cdd2db10de2175f73c70ad43aa931b.tar.bz2 glibc-a8e4c924e8cdd2db10de2175f73c70ad43aa931b.zip |
Update.
2000-06-17 Ulrich Drepper <drepper@redhat.com>
* iconv/gconv_trans.c: Implement handling if translit_ignore.
* locale/langinfo.h: Add entries for translit_ignore information.
* locale/categories.def: Add entries for new LC_CTYPE elements.
* locale/C-ctype.c: Add initializers for new fields. Use NULL
pointer instead of "" where possible.
* locale/programs/ld-ctype.c: Write out translit_ignore information.
* intl/Depend: Add localedata.
* intl/tst-gettext.c: Call setlocale for LC_CTYPE.
* intl/tst-gettext.sh: Set LOCPATH to localedata build dir.
Diffstat (limited to 'intl')
-rw-r--r-- | intl/Depend | 1 | ||||
-rw-r--r-- | intl/tst-gettext.c | 2 | ||||
-rwxr-xr-x | intl/tst-gettext.sh | 2 |
3 files changed, 5 insertions, 0 deletions
diff --git a/intl/Depend b/intl/Depend index e35d3258a3..981111e299 100644 --- a/intl/Depend +++ b/intl/Depend @@ -1 +1,2 @@ iconvdata +localedata diff --git a/intl/tst-gettext.c b/intl/tst-gettext.c index b897d71582..d9f97187f7 100644 --- a/intl/tst-gettext.c +++ b/intl/tst-gettext.c @@ -18,6 +18,7 @@ Boston, MA 02111-1307, USA. */ #include <libintl.h> +#include <locale.h> #include <stdio.h> #include <stdlib.h> #include <string.h> @@ -70,6 +71,7 @@ main (int argc, char *argv[]) setenv ("LC_MESSAGES", "non-existing-locale", 1); setenv ("LC_CTYPE", "non-existing-locale", 1); setenv ("LANG", "non-existing-locale", 1); + setlocale (LC_CTYPE, "de_DE"); unsetenv ("OUTPUT_CHARSET"); /* This is the name of the existing domain with a catalog for the LC_MESSAGES category. */ diff --git a/intl/tst-gettext.sh b/intl/tst-gettext.sh index 9d2151f6b6..9fb8b432c7 100755 --- a/intl/tst-gettext.sh +++ b/intl/tst-gettext.sh @@ -23,6 +23,8 @@ objpfx=$2 GCONV_PATH=${common_objpfx}iconvdata export GCONV_PATH +LOCPATH=${common_objpfx}localedata +export LOCPATH # Generate the test data. test -d ${objpfx}domaindir || mkdir ${objpfx}domaindir |