diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-12-26 09:30:54 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-12-26 09:30:54 +0000 |
commit | 85f72e9c2a46601358e5e908053c13709b3003c3 (patch) | |
tree | 81d271ef44f1c5eeec78864acc54e471b13c9943 /localedata/Makefile | |
parent | 65c64a0b4afc4814d11af5d185772eb48d72e6ce (diff) | |
download | glibc-85f72e9c2a46601358e5e908053c13709b3003c3.tar glibc-85f72e9c2a46601358e5e908053c13709b3003c3.tar.gz glibc-85f72e9c2a46601358e5e908053c13709b3003c3.tar.bz2 glibc-85f72e9c2a46601358e5e908053c13709b3003c3.zip |
Update.
1998-12-25 Ulrich Drepper <drepper@cygnus.com>
* elf/dl-hash.h: Move to...
* sysdeps/generic/dl-hash.h: ...here. Correct parameter type (must
be unsigned char). Remove conditional from inner loop and rearrange
binary operations (12-22% performance increase).
* sysdeps/i386/i686/dl-hash.h: New file. Yet 10% faster than
optimized generic version.
Diffstat (limited to 'localedata/Makefile')
-rw-r--r-- | localedata/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/localedata/Makefile b/localedata/Makefile index 614e1355dc..d53d523c10 100644 --- a/localedata/Makefile +++ b/localedata/Makefile @@ -24,7 +24,8 @@ all: # Make this the default target; it will be defined in Rules. # List with all available character set descriptions. charmaps := $(filter-out $(addprefix charmaps/, CVS RCS %~), \ - $(wildcard charmaps/*)) + $(wildcard charmaps/[A-I]*) \ + $(wildcard charmaps/[J-Z]*)) # List with all available character set descriptions. locales := $(filter-out $(addprefix locales/, CVS RCS %~), \ |