kdelibs/kde4.csh
Kevin Kofler ef77584645 - actually install kde4.sh and kde4.csh
- sync KDE_IS_PRELINKED setting in kde4.sh and kde4.csh with kdelibs 3 (workaround for #244065 no longer needed, fixed in 3.93.0)
2007-09-13 08:04:47 +00:00

26 lines
909 B
Tcsh
Executable File

## http://kde.ground.cz/tiki-index.php?page=Environment+Variables
## for possible entries here
## Make sure KDEDIRS is set
if ( ! $?KDEDIRS ) setenv KDEDIRS /usr
## When/if using prelinking, avoids use of kdeinit
if ( -f /etc/sysconfig/prelink ) then
set PRELINKING = `grep "^PRELINKING=" /etc/sysconfig/prelink | 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
## fork io slaves from prog, not kdeinit. may help selinux. (experimental)
# don't enable until http://bugs.kde.org/88557 is fixed
# if ( ! $?KDE_FORK_SLAVES ) setenv KDE_FORK_SLAVES 1
if ( ! $?QT_PLUGIN_PATH ) then
set KDE4_LIBDIR = `/bin/rpm --eval %\{\?_kde4_libdir\}%\{\!\?_kde4_libdir:%\{_libdir\}\}`
setenv QT_PLUGIN_PATH ${KDE4_LIBDIR}/kde4/plugins
endif