17 lines
465 B
Tcsh
Executable File
17 lines
465 B
Tcsh
Executable File
# When/if using prelinking, avoids (some) use of kdeinit
|
|
if ( -f /etc/sysconfig/prelink ) then
|
|
set PRELINKING = `cat /etc/sysconfig/prelink | grep "^PRELINKING=" | cut -d"=" -f2`
|
|
if ( "$PRELINKING" == "yes" ) then
|
|
if ( ! $?KDE_IS_PRELINKED ) setenv KDE_IS_PRELINKED 1
|
|
endif
|
|
endif
|
|
|
|
# if not using IP6, speeds DNS operations
|
|
# if ( ! $?KDE_NO_IPV6 ) setenv KDE_NO_IPV6 1
|
|
|
|
# Make sure KDEDIR is set
|
|
if ( $?KDEDIR ) then
|
|
exit
|
|
endif
|
|
setenv KDEDIR /usr
|