From 2741a2d5531bdf75b48b46e4fea0260d25d141b7 Mon Sep 17 00:00:00 2001 From: "Peter J. Holzer" Date: Mon, 15 Jun 2020 00:38:31 +0200 Subject: [PATCH 1/2] Remove HP-UX specific stuff I don't expect to need that again (almost exactly 4 years after the funeral) --- .zlogin | 6 ------ .zshenv | 5 ----- 2 files changed, 11 deletions(-) diff --git a/.zlogin b/.zlogin index 0921d46..5a75948 100644 --- a/.zlogin +++ b/.zlogin @@ -1,13 +1,7 @@ # -# $Id: .zlogin,v 1.9 2003-08-10 17:09:17 hjp Exp $ -# # this is sourced for login shells after .zshrc # mesg y -if [ "`uname`" = "HP-UX" ] -then - ps -fu $LOGNAME -fi date uptime diff --git a/.zshenv b/.zshenv index eab6097..d3d4c77 100644 --- a/.zshenv +++ b/.zshenv @@ -43,11 +43,6 @@ done if [ -n "$preppath" ] then - if [ -r /etc/PATH ] - then - PATH=$($preppath $(cat /etc/PATH) ) - fi - # first prepend important stuff - in order of increasing priority: setopt NULL_GLOB From 14b83d3cfc80d55684bb027bd05f1c4539f98e72 Mon Sep 17 00:00:00 2001 From: "Peter J. Holzer" Date: Wed, 28 Oct 2020 12:27:35 +0100 Subject: [PATCH 2/2] Unset all locale env variables referring to non-existent locales --- .zshenv | 67 +++++++++++++++++++++++++++++++++++---------------------- 1 file changed, 41 insertions(+), 26 deletions(-) diff --git a/.zshenv b/.zshenv index d3d4c77..6758065 100644 --- a/.zshenv +++ b/.zshenv @@ -30,6 +30,47 @@ export DEBEMAIL=hjp@hjp.at export DEB_SIGN_KEYID=4ED25B463C8FC154D8189E64F20E485112FE285D export ACK_COLOR_FILENAME='blue on_white' +# Fix up locale. Must do this early or we get a lot of warnings if a +# locale isn't installed. +# Assume that locale and grep are in the PATH. + +case "`uname -sr`" in +Linux*) + export LC_COLLATE=POSIX + if [ -z "$LANG" ] + then + utf=`locale -a | grep en_US.utf8` + if [ -n "$utf" ] + then + # this is a bit of a hack - + # locale -a advertises the locale as "en_US.utf8", + # but the glibc accepts both "en_US.utf8" and + # "en_US.UTF-8" and xterm recogizes only the latter. + # So we explicitely set the latter, even though that's + # not the canonical name and may break some day. + # + LANG=en_US.UTF-8 + else + # fall back to latin 1. + LANG=en_US.iso88591 + fi + export LANG + fi + for i in LANG LC_CTYPE LC_NUMERIC LC_TIME LC_COLLATE LC_MONETARY LC_MESSAGES LC_PAPER LC_NAME LC_ADDRESS LC_TELEPHONE LC_MEASUREMENT LC_IDENTIFICATION LC_ALL + do + c=$(eval "echo \$$i") + if [ -n "$c" ] + then + r=$(locale -a | grep "${c/UTF-8/utf8}") + if [ -z "$r" ] + then + unset $i + fi + fi + done + ;; +esac + # don't rely on a sane path at this point: for i in /usr/bin/preppath /usr/local/bin/preppath @@ -64,32 +105,6 @@ then unsetopt NULL_GLOB fi -case "`uname -sr`" in -Linux*) - export LC_COLLATE=POSIX - if [ -z "$LANG" ] - then - utf=`locale -a | grep en_US.utf8` - if [ -n "$utf" ] - then - # this is a bit of a hack - - # locale -a advertises the locale as "en_US.utf8", - # but the glibc accepts both "en_US.utf8" and - # "en_US.UTF-8" and xterm recogizes only the latter. - # So we explicitely set the latter, even though that's - # not the canonical name and may break some day. - # - LANG=en_US.UTF-8 - else - # fall back to latin 1. - LANG=en_US.iso88591 - fi - export LANG - fi - # export LC_TIME=de_AT # don't remember what that was for - ;; -esac - case "$LANG" in *.iso88591) export LESSCHARSET=latin1