aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/mklocale
Commit message (Collapse)AuthorAgeFilesLines
...
* Allow GB18030 localeAndrey A. Chernov2003-07-291-0/+1
| | | | Notes: svn path=/head/; revision=118147
* Bump WARNS to 6. Add usage(). Use provided xmalloc() instead of malloc().Philippe Charnier2003-06-173-57/+45
| | | | | | | Use err(). Notes: svn path=/head/; revision=116502
* Change fatal to warnx() for unknown encodingAndrey A. Chernov2003-06-031-4/+2
| | | | Notes: svn path=/head/; revision=115776
* Hardcore supported encodings listAndrey A. Chernov2003-06-021-1/+11
| | | | Notes: svn path=/head/; revision=115722
* english(4) police.Jens Schweikhardt2002-12-271-1/+1
| | | | Notes: svn path=/head/; revision=108317
* Mark the INVALID keyword as being deprecated since the concept ofTim J. Robbins2002-12-212-1/+5
| | | | | | | "invalid runes" is useless without the rest of the deprecated rune interface. Notes: svn path=/head/; revision=108158
* mdoc(7) police: markup polishing.Ruslan Ermilov2002-11-261-10/+10
| | | | | | | Approved by: re Notes: svn path=/head/; revision=107276
* Use more verbose diagnostics for wrong DIGIT rangeAndrey A. Chernov2002-10-201-5/+5
| | | | Notes: svn path=/head/; revision=105589
* Add checks for DIGIT set consistency to prevent common misinterpretationAndrey A. Chernov2002-10-201-11/+53
| | | | | | | | | automatically. Remove output file on error. Staticize functions declared as static. Notes: svn path=/head/; revision=105548
* Add Big5, MSKanji and UTF-8 to the list of supported encodings.Tim J. Robbins2002-10-141-10/+29
| | | | | | | Mark UTF2 as being deprecated. Notes: svn path=/head/; revision=105072
* Document SWIDTH*Andrey A. Chernov2002-08-201-0/+12
| | | | Notes: svn path=/head/; revision=102186
* Add swidth definitions and lex code to mklocaleMichael C . Wu2002-08-161-0/+4
| | | | | | | | | | | | After adding swidth support in iswctype.c and ctype.h Submitted by: clkao@clkao.org Reviewed by: keichii,ache Obtained from: NetBSD MFC after: 1 month Notes: svn path=/head/; revision=101986
* WARNS=4Alfred Perlstein2002-07-142-4/+2
| | | | Notes: svn path=/head/; revision=99984
* WARNS=2, de-__P()Alfred Perlstein2002-07-142-3/+4
| | | | Notes: svn path=/head/; revision=99982
* Declarations cleanup; make sure externs are in a common header.Mark Murray2002-04-283-9/+72
| | | | | | | Fix declarations, casts and return values. Notes: svn path=/head/; revision=95643
* Usage style sweep: spell "usage" with a small 'u'.Dag-Erling Smørgrav2002-04-221-1/+1
| | | | | | | | Also change one case of blatant __progname abuse (several more remain) This commit does not touch anything in src/{contrib,crypto,gnu}/. Notes: svn path=/head/; revision=95258
* o Move NTOHL() and associated macros into <sys/param.h>. These areMike Barcroft2002-02-181-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | deprecated in favor of the POSIX-defined lowercase variants. o Change all occurrences of NTOHL() and associated marcros in the source tree to use the lowercase function variants. o Add missing license bits to sparc64's <machine/endian.h>. Approved by: jake o Clean up <machine/endian.h> files. o Remove unused __uint16_swap_uint32() from i386's <machine/endian.h>. o Remove prototypes for non-existent bswapXX() functions. o Include <machine/endian.h> in <arpa/inet.h> to define the POSIX-required ntohl() family of functions. o Do similar things to expose the ntohl() family in libstand, <netinet/in.h>, and <sys/param.h>. o Prepend underscores to the ntohl() family to help deal with complexities associated with having MD (asm and inline) versions, and having to prevent exposure of these functions in other headers that happen to make use of endian-specific defines. o Create weak aliases to the canonical function name to help deal with third-party software forgetting to include an appropriate header. o Remove some now unneeded pollution from <sys/types.h>. o Add missing <arpa/inet.h> includes in userland. Tested on: alpha, i386 Reviewed by: bde, jake, tmm Notes: svn path=/head/; revision=90868
* Initialize fp in main()Peter Wemm2001-08-131-1/+2
| | | | Notes: svn path=/head/; revision=81606
* Remove whitespace at EOL.Dima Dorfman2001-07-151-2/+2
| | | | Notes: svn path=/head/; revision=79755
* MAN[1-9] -> MAN.Ruslan Ermilov2001-03-271-1/+0
| | | | Notes: svn path=/head/; revision=74848
* mdoc(7) police: split punctuation characters + misc fixes.Ruslan Ermilov2001-02-011-3/+3
| | | | Notes: svn path=/head/; revision=71895
* Change the spelling of `.' to `.' from .OBJDIR since `.' really is whereDavid E. O'Brien2000-12-051-1/+1
| | | | | | | generated files land. Also give precedence to generated files. Notes: svn path=/head/; revision=69640
* Grrr... GCC 2.95.2 and 2.96 just will not agree what the default includeDavid E. O'Brien2000-12-011-1/+1
| | | | | | | search paths are. So add the requirements of both. :-( Notes: svn path=/head/; revision=69489
* The GCC 2.96 snapshots have slightly different rules for finding includeDavid E. O'Brien2000-12-011-1/+1
| | | | | | | | | | files. Mostly -I${.CURDIR} was needed -- especially for YACC generated files as the new cpp does not look in the ultimate source file (ie, the .y file)'s directory as told by the "#line" directive. Some were misspellings of "-I${.CURDIR}" as "-I.". Notes: svn path=/head/; revision=69453
* mdoc(7) police: use the new features of the Nm macro.Ruslan Ermilov2000-11-201-11/+9
| | | | Notes: svn path=/head/; revision=68963
* Avoid use of direct troff requests in mdoc(7) manual pages.Ruslan Ermilov2000-11-101-9/+5
| | | | Notes: svn path=/head/; revision=68575
* There is a problem in that one cannot use ctype.h at the same time as partsDavid E. O'Brien2000-02-082-70/+86
| | | | | | | | | | | | | | | | | of the C++ stdlib. Our ctype.h uses symbols of the form _<X> to denote the various character classes. Our ctype.h also extends the usual ctype.h offering by adding the "_T" (special) class. Problem is parts of the STL also use the symbol "_T" as its parameterized type. These two uses are incompatible. Thus change the form of the symbols used in ctype to something that fixes the current problem and is less likely to cause conflicts in the future. Requested by: Tomoaki NISHIYAMA <tomoaki@biol.s.u-tokyo.ac.jp> Ok'ed by: JKH Notes: svn path=/head/; revision=57035
* Document -d and -o flagsAlexey Zelkin1999-12-171-1/+15
| | | | | | | | Remove selfreference item from SEE ALSO section Add reference to colldef(1) to SEE ALSO section Notes: svn path=/head/; revision=54740
* moved to shareAndrey A. Chernov1999-10-181-7/+0
| | | | Notes: svn path=/head/; revision=52380
* Move data to shareAndrey A. Chernov1999-10-1714-1433/+0
| | | | Notes: svn path=/head/; revision=52332
* sync with earlier change removing broken locale.Jordan K. Hubbard1999-10-161-1/+0
| | | | Notes: svn path=/head/; revision=52311
* ISO8859-5 localeAndrey A. Chernov1999-10-032-0/+187
| | | | | | | Submitted by: Nikolai Saoukh <nms@ethereal.ru> Notes: svn path=/head/; revision=51889
* Correct spelling : ascii -> ASCIIAlexey Zelkin1999-09-201-2/+2
| | | | | | | | | PR: docs/13702 Submitted by: Stephen J. Roznowski <sjr@home.com> Reviewed by: mpp Notes: svn path=/head/; revision=51457
* $Id$ -> $FreeBSD$Peter Wemm1999-08-285-5/+5
| | | | Notes: svn path=/head/; revision=50477
* Add $Id$, to make it simpler for members of the translation teams toNik Clayton1999-07-121-0/+1
| | | | | | | | | | | | | | | | | | | | track. The $Id$ line is normally at the bottom of the main comment block in the man page, separated from the rest of the manpage by an empty comment, like so; .\" $Id$ .\" If the immediately preceding comment is a @(#) format ID marker than the the $Id$ will line up underneath it with no intervening blank lines. Otherwise, an additional blank line is inserted. Approved by: bde Notes: svn path=/head/; revision=48792
* Change locale name of Traditional Chinese : zh_TW.BIG5 -> zh_TW.Big5.Foxfair Hu1999-06-082-2/+2
| | | | | | | | | | It makes compatible with IANA charset defination, and let existent I18N app happier. Ref: <http://www.isi.edu/in-notes/iana/assignments/character-sets> Notes: svn path=/head/; revision=47831
* Support the IANA definition of Shift Jis nameley ja_JP.Shift_JISJulian Elischer1999-06-051-1/+3
| | | | | | | as well as the X11 version ja_JP.SJIS Notes: svn path=/head/; revision=47746
* fix sign extension bugAndrey A. Chernov1999-04-011-1/+1
| | | | | | | Submitted by: Nikolai Saoukh <nms@ethereal.ru> Notes: svn path=/head/; revision=45219
* Added support for DIS 8859-15 based locales using patchMatthew Dillon1998-12-142-1/+53
| | | | | | | | | from Kaleb. Obtained from: Kaleb Keithley <kaleb@ics.com> Notes: svn path=/head/; revision=41760
* I have added the support for BIG5 encoding into libc/libxpg4/mklocale.Poul-Henning Kamp1998-08-152-2/+198
| | | | | | | | | | | | | | the diff is attached below. This is done on the 3.0 source-tree. I have test this on 2.2-stable before, but I don't have a 3.0 machine right now. This patch is mainly to make libc support BIG5 encoding, thus add zh_TW.BIG5 locale to 3.0. Submitted by: Chen Hsiung Chan <frankch@waru.life.nthu.edu.tw> Notes: svn path=/head/; revision=38333
* Remove half the file, somehow it got doubled...Poul-Henning Kamp1998-08-151-168/+1
| | | | Notes: svn path=/head/; revision=38332
* I have been running with these locale data for a while now andPoul-Henning Kamp1998-08-102-2/+337
| | | | | | | | | | | | I hope some other people might find them useful. They are for zh_CN.EUC (GB) only. I'm not familiar with the BIG5 encoding, so I could only hope someone else would fill the gap. PR: 7310 Submitted by: Luoqi Chen <luoqi@chen.ml.org> Notes: svn path=/head/; revision=38221
* add Hungarian ctypeAndrey A. Chernov1998-08-071-2/+2
| | | | Notes: svn path=/head/; revision=38168
* Fixed printf format errors.Bruce Evans1998-08-021-10/+12
| | | | Notes: svn path=/head/; revision=38022
* Use the installed version of mklocale for `make all'. It is nowBruce Evans1998-07-071-8/+6
| | | | | | | | | | | | | bootstrapped by `make world'. The version just built in ".." normally won't work if the target system is not binary compatible. Don't build or install anything if _BUILD_TOOLS is defined. Then we only want to build and install the mklocale binary, but the layout of the mklocale tree forces recursing to mklocale/data for at least the obj target even when _BUILD_TOOLS is defined. Notes: svn path=/head/; revision=37481
* Added y.tab.h to SRCS. This should have been used to get dependenciesBruce Evans1998-05-051-2/+2
| | | | | | | | on y.tab.h generated. It will soon be used to tell bsd.dep.mk that y.tab.h itself needs to be generated. Notes: svn path=/head/; revision=35745
* Fixed races in `make -jN' using new yacc rules.Bruce Evans1998-05-041-2/+2
| | | | Notes: svn path=/head/; revision=35708
* Add #include <string.h> to get prototypes.John Birrell1998-02-201-0/+1
| | | | Notes: svn path=/head/; revision=33648
* Add Slovene linkAndrey A. Chernov1997-11-071-2/+2
| | | | Notes: svn path=/head/; revision=31026
* Add link to Polish localeAndrey A. Chernov1997-11-071-2/+2
| | | | Notes: svn path=/head/; revision=31024