about summary refs log tree commit diff
path: root/locale
Commit message (Collapse)AuthorAgeFilesLines
...
* Add localedef --big-endian and --little-endian options.Joseph Myers2013-09-245-190/+292
|
* Make locale archive hash function architecture-independent.Joseph Myers2013-09-231-1/+1
|
* Update iso-639.defChris Leonard2013-09-191-1/+15
|
* Fix some types in localedef.Richard Sandiford2013-09-131-4/+3
|
* Make localedef output generation use more logical interfaces.Richard Sandiford2013-09-0615-1611/+658
|
* Update iso-1427.def and related occurrences.Chris Leonard2013-09-041-16/+8
|
* Fix then/than typos.Ondřej Bílka2013-08-302-2/+2
|
* Fix missing declaration of LC_CTYPE nonascii-case elementAndreas Schwab2013-08-271-0/+1
|
* Fix missing libc-internal.h include.Richard Henderson2013-06-251-0/+1
| | | | * locale/programs/locarchive.c: Include <libc-internal.h>
* [BZ #10283] localedef: align fixed maps to SHMLBAMike Frysinger2013-06-242-16/+52
| | | | | | | | | | | | Many Linux arches require fixed mmaps to be aligned higher than pagesize, so use the SHMLBA define as it represents this quantity exactly. This fixes spurious errors seen on those arches like: cannot map archive header: Invalid argument URL: http://sourceware.org/bugzilla/show_bug.cgi?id=10283 Reported-by: CHIKAMA Masaki <masaki.chikama@gmail.com> Signed-off-by: Mike Frysinger <vapier@gentoo.org>
* Convert iso-639.def to utf-8Siddhesh Poyarekar2013-06-111-5/+5
|
* Fix leading whitespaces.Ondrej Bilka2013-06-062-2/+2
|
* Add #include <stdint.h> to locale/gen-translit.pl and fix C-translit.h.Ryan S. Arnold2013-06-052-1/+2
|
* Link extra-libs consistently with libc and ld.so.Joseph Myers2013-05-311-6/+0
|
* localedef: include file name in error messagesMike Frysinger2013-05-251-2/+2
| | | | | | | | | | When mkstemp fails, the error message the user gets back is: cannot create temporary file: No such file or directory That isn't terribly useful in figuring out why, so include the full filename we tried to create in the error output. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
* Add #include <stdint.h> for uint[32|64]_t usage (except installed headers).Ryan S. Arnold2013-05-1627-0/+29
|
* Use *stat64 instead of *stat in installed programsFlorian Weimer2013-05-102-14/+14
| | | | | This ensures reliable operation on file systems with inode numbers which do not fit into 32 bits.
* BZ#14812: Add missing N_ markers in localedef.Roland McGrath2013-03-201-5/+6
|
* Fix some build warningsSiddhesh Poyarekar2013-02-261-1/+1
|
* unify xmalloc prototypes & friendsMike Frysinger2013-02-183-15/+3
| | | | | | | | These prototypes are duplicated in many places. Add a dedicated header for holding prototypes for program-specific functions to avoid that. Signed-off-by: Mike Frysinger <vapier@gentoo.org>
* Remove lots of inline keywords.Roland McGrath2013-02-073-3/+3
|
* Fix "localedef --posix" descriptionAllan McRae2013-01-031-1/+1
|
* Update copyright notices with scripts/update-copyrights.Joseph Myers2013-01-0299-107/+99
|
* Add script to update copyright notices and reformat some to facilitate its use.Joseph Myers2013-01-012-4/+2
|
* Update copyright years.David S. Miller2013-01-012-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | * catgets/gencat.c: Update copyright year. * csu/version.c: Likewise. * debug/catchsegv.sh: Likewise. * debug/pcprofiledump.c: Likewise. * debug/xtrace.sh: Likewise. * elf/ldconfig.c: Likewise. * elf/ldd.bash.in: Likewise. * elf/pldd.c: Likewise. * elf/sotruss.ksh: Likewise. * elf/sprof.c: Likewise. * iconv/iconv_prog.c: Likewise. * iconv/iconvconfig.c: Likewise. * locale/programs/locale.c: Likewise. * locale/programs/localedef.c: Likewise. * login/programs/pt_chown.c: Likewise. * malloc/memusage.sh: Likewise. * malloc/memusagestat.c: Likewise. * malloc/mtrace.pl: Likewise. * nscd/nscd.c: Likewise. * nss/getent.c: Likewise. * nss/makedb.c: Likewise. * posix/getconf.c: Likewise.
* Add support for sparc cryptographic hash opcodes.David S. Miller2012-11-131-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * crypt/Makefile: Move test targets after toplevel Rules inclusion. Grab any necessary sysdep routines when linking. * crypt/md5.c (md5_process_block): Remove define, we will always name it __md5_process_block. (md5_finish_ctx): Update md5_process_block call. (md5_stream): Likewise. (md5_process_bytes): Likewise. (md5_process_block): Rename to __md5_process_block and move to ... * crypt/md5-block.c: ... here. * crypt/sha256.c (sha256_process_block): Move to ... * crypt/sha256-block.c: ... here. * crypt/sha512.c (sha512_process_block): Move to ... * crypt/sha512-block.c: ... here. * locale/Makefile (CFLAGS-md5.c): Define to add crypt/ to include path. * sysdeps/sparc/sparc-ifunc.c (sparc_libc_ifunc): Define. * sysdeps/sparc/sparc64/multiarch/Makefile (libcrypt-sysdep_routines): Add crypto assembler sysdeps when in crypt subdir. (localedef-aux): Add md5 crypto assembler when in locale subdir. * sysdeps/sparc/sparc32/sparcv9/multiarch/Makefile: Mirror sparc64 multiarch changes. * sysdeps/sparc/sparc64/multiarch/md5-block.c: New file. * sysdeps/sparc/sparc64/multiarch/md5-crop.S: New file. * sysdeps/sparc/sparc64/multiarch/sha256-block.c: New file. * sysdeps/sparc/sparc64/multiarch/sha256-crop.S: New file. * sysdeps/sparc/sparc64/multiarch/sha512-block.c: New file. * sysdeps/sparc/sparc64/multiarch/sha512-crop.S: New file. * sysdeps/sparc/sparc32/sparcv9/multiarch/md5-block.c: New file. * sysdeps/sparc/sparc32/sparcv9/multiarch/md5-crop.S: New file. * sysdeps/sparc/sparc32/sparcv9/multiarch/sha256-block.c: New file. * sysdeps/sparc/sparc32/sparcv9/multiarch/sha256-crop.S: New file. * sysdeps/sparc/sparc32/sparcv9/multiarch/sha512-block.c: New file. * sysdeps/sparc/sparc32/sparcv9/multiarch/sha512-crop.S: New file.
* Support --with-pkgversion and --with-bugurl.Joseph Myers2012-11-092-8/+17
|
* Get rid of ASM_GLOBAL_DIRECTIVE.Marek Polacek2012-07-101-4/+1
|
* [PATCH] [BZ #3440] Make LC_ALL etc. useful in #if expressions.Paul Eggert2012-05-101-17/+14
|
* "Gallegan" should be "Galician"Chris Leonard2012-04-131-1/+1
| | | | | | [BZ #13973] * locale/iso-639.def: Fix gl language name. Spotted by Yaron Shahrabani.
* Replace FSF snail mail address with URL in gperf input.Paul Eggert2012-03-104-28/+34
|
* Remove distribute variable from MakefilesUlrich Drepper2012-03-071-14/+1
|
* Replace FSF snail mail address with URLs.Paul Eggert2012-02-0995-251/+156
|
* Remove PARAMS macros.Marek Polacek2012-01-311-4/+0
|
* Remove miscellaneous __STDC__ conditionals.Joseph Myers2012-01-301-5/+1
|
* Remove __STDC__ conditionals from non-installed headers.Joseph Myers2012-01-261-6/+2
|
* Add noreturn attributeMarek Polacek2012-01-101-1/+1
|
* Optimize xmalloc, xcalloc, xrealloc, and xstrdupUlrich Drepper2012-01-084-13/+16
| | | | | Add alloc_size attribute and apply consistently the malloc attribute to xmalloc, xcalloc, xrealloc, and xstrdup.
* More fallout from supporting only ELFUlrich Drepper2012-01-081-2/+2
|
* Remove pre-ISO C supportUlrich Drepper2012-01-072-7/+8
| | | | No more __const.
* Update copyright yearUlrich Drepper2012-01-012-4/+4
|
* Add brx_IN localeUlrich Drepper2011-12-221-0/+1
|
* Fix access after end of search string in regex matcherAndreas Schwab2011-11-302-9/+11
|
* Use O_CLOEXEC in a few more placesUlrich Drepper2011-11-152-6/+7
|
* Use strcasecmp_l instead of strcasecmpUlrich Drepper2011-11-081-1/+2
|
* Clean up locarchive mmap reservation code.Roland McGrath2011-10-081-42/+32
|
* Cleanup of configuration optionsUlrich Drepper2011-09-102-14/+4
| | | | Make several tool features mandatory and simplify the code.
* Remove support for automatic cvs check-insUlrich Drepper2011-09-081-3/+0
| | | | CVS use for glibc is long gone.
* Clean up locale/Makefile variables for -D switches.Roland McGrath2011-08-141-11/+17
|
* Fix compile problemUlrich Drepper2011-08-131-2/+3
| | | | l10nflist compiles for localedef now. Optimize a bit.