diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2005-08-08 05:53:02 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2005-08-08 05:53:02 +0000 |
commit | b83058fd179b6de492fa3ed6292d2821ca253806 (patch) | |
tree | 2baae503ebb022ad1d8ff55383cedcf18b319815 /share | |
parent | 9912e93b5b9dbc80863c5b26ff459f0587f40cbe (diff) |
activate LC_CTYPE for 8 bits locale.
Make sure tolower/toupper use the whole 8 bits.
okay deraadt@
thanks to everyone who tested
Diffstat (limited to 'share')
-rw-r--r-- | share/Makefile | 4 | ||||
-rw-r--r-- | share/mk/bsd.own.mk | 7 |
2 files changed, 8 insertions, 3 deletions
diff --git a/share/Makefile b/share/Makefile index 05b41e92e97..29f415a0cb0 100644 --- a/share/Makefile +++ b/share/Makefile @@ -1,6 +1,6 @@ -# $OpenBSD: Makefile,v 1.11 2002/11/22 22:06:46 henning Exp $ +# $OpenBSD: Makefile,v 1.12 2005/08/08 05:53:01 espie Exp $ -SUBDIR= dict doc ipsec lkm man misc mk tabset termtypes \ +SUBDIR= dict doc ipsec lkm locale man misc mk tabset termtypes \ tmac zoneinfo pf .include <bsd.subdir.mk> diff --git a/share/mk/bsd.own.mk b/share/mk/bsd.own.mk index d2f3031fded..63097f6f5b8 100644 --- a/share/mk/bsd.own.mk +++ b/share/mk/bsd.own.mk @@ -1,4 +1,4 @@ -# $OpenBSD: bsd.own.mk,v 1.92 2005/01/18 00:28:42 mickey Exp $ +# $OpenBSD: bsd.own.mk,v 1.93 2005/08/08 05:53:01 espie Exp $ # $NetBSD: bsd.own.mk,v 1.24 1996/04/13 02:08:09 thorpej Exp $ # Host-specific overrides @@ -93,6 +93,11 @@ NLSGRP?= bin NLSOWN?= root NLSMODE?= ${NONBINMODE} +LOCALEDIR?= /usr/share/locale +LOCALEGRP?= wheel +LOCALEOWN?= root +LOCALEMODE?= ${NONBINMODE} + # Shared files for system gnu configure, not used yet GNUSYSTEM_AUX_DIR?=${BSDSRCDIR}/share/gnu |