From 977b943aa9e3c96ace9b8e5828a48ca3abee5260 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Wed, 7 Dec 2011 18:53:43 -0600 Subject: [PATCH] Rename KDEHOME and KDEDIR --- doc/README | 2 +- mcop/mcoputils.cc | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/README b/doc/README index 1d81e8b..3193d81 100644 --- a/doc/README +++ b/doc/README @@ -1,5 +1,5 @@ All of the aRts documentation is now in "The aRts Handbook" which is in KDE DocBook format, part of tdemultimedia. It should be found on a -KDE system in $KDEDIR/share/doc/HTML/default/artsbuilder/index.html. +KDE system in $TDEDIR/share/doc/HTML/default/artsbuilder/index.html. An on-line version can be found at http://www.arts-project.org/doc/handbook diff --git a/mcop/mcoputils.cc b/mcop/mcoputils.cc index c935d10..6f108b3 100644 --- a/mcop/mcoputils.cc +++ b/mcop/mcoputils.cc @@ -83,7 +83,7 @@ static char *locate_mcop_dir() string user_tmp_dir; int uid = getuid(); const char *home_dir = getenv("HOME"); - const char *kde_home = uid ? getenv("KDEHOME") : getenv("KDEROOTHOME"); + const char *kde_home = uid ? getenv("TDEHOME") : getenv("KDEROOTHOME"); const char *kde_prefix = "/socket-"; const char *tmp; char *tmp_buf; @@ -151,7 +151,7 @@ static char *locate_mcop_dir() result = lstat(kde_tmp_dir.c_str(), &stat_buf); if ((result == 0) && (S_ISDIR(stat_buf.st_mode))) { - /* $KDEHOME/socket-$HOSTNAME is a normal directory. Do nothing. */ + /* $TDEHOME/socket-$HOSTNAME is a normal directory. Do nothing. */ tmp_buf = strdup(kde_tmp_dir.c_str()); return tmp_buf; } @@ -231,7 +231,7 @@ int build_link(string tmp_prefix, const char *kde_prefix) char *tmp_buf; int uid = getuid(); const char *home_dir = getenv("HOME"); - const char *kde_home = uid ? getenv("KDEHOME") : getenv("KDEROOTHOME"); + const char *kde_home = uid ? getenv("TDEHOME") : getenv("KDEROOTHOME"); int result; struct stat stat_buf; @@ -295,7 +295,7 @@ int build_link(string tmp_prefix, const char *kde_prefix) result = lstat(kde_tmp_dir.c_str(), &stat_buf); if ((result == 0) && (S_ISDIR(stat_buf.st_mode))) { - /* $KDEHOME/tmp is a normal directory. Do nothing. */ + /* $TDEHOME/tmp is a normal directory. Do nothing. */ printf("Directory \"%s\" already exists.\n", kde_tmp_dir.c_str()); return 0; }