diff options
author | Tor Lillqvist <tml@novell.com> | 2005-08-10 06:56:42 +0800 |
---|---|---|
committer | Tor Lillqvist <tml@src.gnome.org> | 2005-08-10 06:56:42 +0800 |
commit | a43c128c4bfe96ea35225cf1fb551c0cb8c5ac4a (patch) | |
tree | b2bb3cf32cb8e82e3b08aa9e8af6b023c3838a71 | |
parent | d2d726ba6eef71e869ad7dec3d0918fea04809db (diff) | |
download | gsoc2013-evolution-a43c128c4bfe96ea35225cf1fb551c0cb8c5ac4a.tar.gz gsoc2013-evolution-a43c128c4bfe96ea35225cf1fb551c0cb8c5ac4a.tar.zst gsoc2013-evolution-a43c128c4bfe96ea35225cf1fb551c0cb8c5ac4a.zip |
Handle also EVOLUTION_LIBEXECDIR, EVOLUTION_SOUNDDIR and
2005-08-10 Tor Lillqvist <tml@novell.com>
* e-util-private.h: Handle also EVOLUTION_LIBEXECDIR,
EVOLUTION_SOUNDDIR and EVOLUTION_ETSPECDIR.
svn path=/trunk/; revision=30062
-rw-r--r-- | e-util/ChangeLog | 2 | ||||
-rw-r--r-- | e-util/e-util-private.h | 9 |
2 files changed, 11 insertions, 0 deletions
diff --git a/e-util/ChangeLog b/e-util/ChangeLog index 36a2f2f172..c0ee1fac27 100644 --- a/e-util/ChangeLog +++ b/e-util/ChangeLog @@ -8,6 +8,8 @@ * e-win32-reloc.c: Handle also the above two paths. + * e-util-private.h: Ditto here. Also EVOLUTION_ETSPECDIR. + 2005-07-11 Vivek Jain <jvivek@novell.com> * e-config.c: (e_config_target_changed): diff --git a/e-util/e-util-private.h b/e-util/e-util-private.h index 407e9d181d..16447a1117 100644 --- a/e-util/e-util-private.h +++ b/e-util/e-util-private.h @@ -31,6 +31,7 @@ const char *_e_get_localedir (void) G_GNUC_CONST; const char *_e_get_gladedir (void) G_GNUC_CONST; const char *_e_get_helpdir (void) G_GNUC_CONST; +const char *_e_get_etspecdir (void) G_GNUC_CONST; const char *_e_get_imagesdir (void) G_GNUC_CONST; const char *_e_get_iconsdir (void) G_GNUC_CONST; const char *_e_get_category_icons (void) G_GNUC_CONST; @@ -38,6 +39,8 @@ const char *_e_get_plugindir (void) G_GNUC_CONST; const char *_e_get_privdatadir (void) G_GNUC_CONST; const char *_e_get_search_rule_dir (void) G_GNUC_CONST; const char *_e_get_galviewsdir (void) G_GNUC_CONST; +const char *_e_get_libexecdir (void) G_GNUC_CONST; +const char *_e_get_sounddir (void) G_GNUC_CONST; #undef EVOLUTION_LOCALEDIR #define EVOLUTION_LOCALEDIR _e_get_localedir () @@ -75,6 +78,12 @@ const char *_e_get_galviewsdir (void) G_GNUC_CONST; #undef EVOLUTION_GALVIEWSDIR #define EVOLUTION_GALVIEWSDIR _e_get_galviewsdir () +#undef EVOLUTION_LIBEXECDIR +#define EVOLUTION_LIBEXECDIR _e_get_libexecdir () + +#undef EVOLUTION_SOUNDDIR +#define EVOLUTION_SOUNDDIR _e_get_sounddir () + #endif /* G_OS_WIN32 */ #endif /* _E_UTIL_PRIVATE_H_ */ |