diff options
author | Tor Lillqvist <tml@novell.com> | 2005-06-18 21:11:15 +0800 |
---|---|---|
committer | Tor Lillqvist <tml@src.gnome.org> | 2005-06-18 21:11:15 +0800 |
commit | 6342de451e5b7b5b7f09b5fc4a2cc26710eedb5e (patch) | |
tree | 58b7c7b2ed3870bef83e4ad79283b6195b609e25 /e-util/e-win32-reloc.c | |
parent | 7fe7d3226c88feb35a9a5d39fc1f76506862f526 (diff) | |
download | gsoc2013-evolution-6342de451e5b7b5b7f09b5fc4a2cc26710eedb5e.tar.gz gsoc2013-evolution-6342de451e5b7b5b7f09b5fc4a2cc26710eedb5e.tar.zst gsoc2013-evolution-6342de451e5b7b5b7f09b5fc4a2cc26710eedb5e.zip |
Makefile.am (INCLUDES) Add EVOLUTION_ETSPECDIR.
2005-06-18 Tor Lillqvist <tml@novell.com>
* Makefile.am (INCLUDES) Add EVOLUTION_ETSPECDIR.
* e-util-private.h
* e-win32-reloc.c: Corresponding changes.
svn path=/trunk/; revision=29541
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 00759783cf..c85d695fa6 100644 --- a/e-util/e-win32-reloc.c +++ b/e-util/e-win32-reloc.c @@ -37,6 +37,7 @@ static const char *localedir = NULL; /* The others are in UTF-8 */ static const char *gladedir; static const char *helpdir; +static const char *etspecdir; static const char *images; static const char *iconsdir; static const char *category_icons; @@ -98,6 +99,7 @@ setup (void) gladedir = replace_prefix (full_prefix, EVOLUTION_GLADEDIR); helpdir = replace_prefix (full_prefix, EVOLUTION_HELPDIR); + etspecdir = replace_prefix (full_prefix, EVOLUTION_ETSPECDIR); images = replace_prefix (full_prefix, EVOLUTION_IMAGES); category_icons = replace_prefix (full_prefix, EVOLUTION_CATEGORY_ICONS); plugindir = replace_prefix (full_prefix, EVOLUTION_PLUGINDIR); @@ -120,6 +122,7 @@ _e_get_##varbl (void) \ GETTER(localedir) GETTER(gladedir) GETTER(helpdir) +GETTER(etspecdir) GETTER(images) GETTER(iconsdir) GETTER(category_icons) |