diff options
author | Tor Lillqvist <tml@novell.com> | 2005-06-18 20:41:11 +0800 |
---|---|---|
committer | Tor Lillqvist <tml@src.gnome.org> | 2005-06-18 20:41:11 +0800 |
commit | 7fe7d3226c88feb35a9a5d39fc1f76506862f526 (patch) | |
tree | 05cbe5b81ea7016d7187ce499ea94c76be850454 /e-util/e-win32-reloc.c | |
parent | c35bdba605ff37ac6cb3f25ed81d5850d1a24e31 (diff) | |
download | gsoc2013-evolution-7fe7d3226c88feb35a9a5d39fc1f76506862f526.tar.gz gsoc2013-evolution-7fe7d3226c88feb35a9a5d39fc1f76506862f526.tar.zst gsoc2013-evolution-7fe7d3226c88feb35a9a5d39fc1f76506862f526.zip |
Makefile.am (INCLUDES) Add EVOLUTION_HELPDIR. Remove undefined
2005-06-18 Tor Lillqvist <tml@novell.com>
* Makefile.am (INCLUDES) Add EVOLUTION_HELPDIR. Remove undefined
GNOME_INCLUDEDIR.
* e-win32-reloc.c: Add getter for helpdir.
* e-util-private.h: Corresponding change.
svn path=/trunk/; revision=29540
Diffstat (limited to 'e-util/e-win32-reloc.c')
-rw-r--r-- | e-util/e-win32-reloc.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/e-util/e-win32-reloc.c b/e-util/e-win32-reloc.c index 2fd9496cfd..00759783cf 100644 --- a/e-util/e-win32-reloc.c +++ b/e-util/e-win32-reloc.c @@ -36,6 +36,7 @@ static const char *localedir = NULL; /* The others are in UTF-8 */ static const char *gladedir; +static const char *helpdir; static const char *images; static const char *iconsdir; static const char *category_icons; @@ -96,6 +97,7 @@ setup (void) g_free (cp_prefix); gladedir = replace_prefix (full_prefix, EVOLUTION_GLADEDIR); + helpdir = replace_prefix (full_prefix, EVOLUTION_HELPDIR); images = replace_prefix (full_prefix, EVOLUTION_IMAGES); category_icons = replace_prefix (full_prefix, EVOLUTION_CATEGORY_ICONS); plugindir = replace_prefix (full_prefix, EVOLUTION_PLUGINDIR); @@ -117,6 +119,7 @@ _e_get_##varbl (void) \ GETTER(localedir) GETTER(gladedir) +GETTER(helpdir) GETTER(images) GETTER(iconsdir) GETTER(category_icons) |