This commit is contained in:
parent
eb98c224fa
commit
cbb2852a38
@ -1,3 +1,9 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Mar 27 16:35:44 CET 2009 - werner@suse.de
|
||||
|
||||
- Speed up adding user environment for the case of having a bash
|
||||
as login shell, requested by Michael Meeks <meeks@suse.de>
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Mar 6 20:17:41 CET 2009 - sndirsch@suse.de
|
||||
|
||||
|
@ -26,7 +26,7 @@ Provides: xf86tools 3ddiag
|
||||
Obsoletes: xf86tools 3ddiag
|
||||
AutoReqProv: on
|
||||
Version: 0.1
|
||||
Release: 169
|
||||
Release: 170
|
||||
Summary: Tools for the X Window System
|
||||
Source2: xf86debug
|
||||
Source3: switch2nv
|
||||
@ -86,6 +86,9 @@ install -m 755 $RPM_SOURCE_DIR/switch2nvidia $RPM_BUILD_ROOT/usr/bin
|
||||
/var/adm/fillup-templates/sysconfig.language-%{name}
|
||||
|
||||
%changelog
|
||||
* Fri Mar 27 2009 werner@suse.de
|
||||
- Speed up adding user environment for the case of having a bash
|
||||
as login shell, requested by Michael Meeks <meeks@suse.de>
|
||||
* Fri Mar 06 2009 sndirsch@suse.de
|
||||
- wmlist: icewm --> icewm-session (bnc #473511)
|
||||
* Tue Feb 24 2009 sndirsch@suse.de
|
||||
|
38
xim
38
xim
@ -59,24 +59,30 @@ echo "/etc/X11/xim: Checking whether an input method should be started."
|
||||
# Get variables from the user environment which might influence the start
|
||||
# of an input method (see bug #235044, written by Werner Fink <werner@suse.de>):
|
||||
#
|
||||
if shopt -q extglob ; then
|
||||
extglob=1
|
||||
else
|
||||
extglob=0
|
||||
shopt -s extglob
|
||||
fi
|
||||
|
||||
adduserenv () {
|
||||
local cur var=${1+"$@"}
|
||||
|
||||
var=${var// /|}
|
||||
while read cur; do
|
||||
case "$cur" in
|
||||
@($var)=*)
|
||||
echo "/etc/X11/xim: user environment variable $cur"
|
||||
eval $cur
|
||||
esac
|
||||
done < <(exec -l -a ${SHELL##*/} $SHELL -c printenv)
|
||||
case "$SHELL" in
|
||||
*/sh|*/ash|*/bash|*/ksh|*/pdksh|*/zsh)
|
||||
if test -s "$HOME/.profile" ; then
|
||||
eval $((echo . "'$HOME/.profile'"
|
||||
echo "set +u +e"
|
||||
for cur in $var; do
|
||||
echo echo \${$cur+"export $cur=\$$cur;"}
|
||||
done) | $SHELL)
|
||||
fi
|
||||
;;
|
||||
*/csh|*/tcsh)
|
||||
if test -s "$HOME/.login" ; then
|
||||
eval $((echo onintr -
|
||||
echo source "'$HOME/.login'"
|
||||
echo unset verbose
|
||||
for cur in $var; do
|
||||
echo if \( \${?$cur} \) echo export $cur=\`printenv $cur\`
|
||||
done) | $SHELL)
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
}
|
||||
|
||||
# if gdm passes the language to Xsession, we should not override this
|
||||
@ -90,8 +96,6 @@ else
|
||||
adduserenv LANG LC_CTYPE LC_ALL INPUT_METHOD
|
||||
fi
|
||||
|
||||
test $extglob -eq 0 && shopt -u extglob
|
||||
|
||||
# if INPUT_METHOD is already set to something non-empty here,
|
||||
# the user must have set it in ~/.profile or ~/.login or on the
|
||||
# command line before using startx. In that case, don't
|
||||
|
Loading…
Reference in New Issue
Block a user