diff options
author | Tor Lillqvist <tml@novell.com> | 2005-06-18 07:35:00 +0800 |
---|---|---|
committer | Tor Lillqvist <tml@src.gnome.org> | 2005-06-18 07:35:00 +0800 |
commit | 889c16f34d71338cc8fa9c3f7a11d57b27b21994 (patch) | |
tree | 078210897a6ae5257c85a68cfb5157aa88849416 /e-util/e-util-private.h | |
parent | 5b611b051cb2f3b8ebc44ace3de5e8e0edeab6b7 (diff) | |
download | gsoc2013-evolution-889c16f34d71338cc8fa9c3f7a11d57b27b21994.tar.gz gsoc2013-evolution-889c16f34d71338cc8fa9c3f7a11d57b27b21994.tar.zst gsoc2013-evolution-889c16f34d71338cc8fa9c3f7a11d57b27b21994.zip |
Use bootstrap library for libemisdwidgets. Code here uses
2005-06-18 Tor Lillqvist <tml@novell.com>
* Makefile.am (WIN32_BOOTSTRAP_LIBS): Use bootstrap library for
libemisdwidgets. Code here uses e_utf8_to_locale_string() from
libemiscwidgets which hasn't been built yet if building from
scratch.
(GAL_IMAGESDIR): Remove, unused leftover.
(EVOLUTION_GLADEDIR): Add.
(libeutil_la_LDFLAGS, libeconduit_la_LDFLAGS): Use NO_UNDEFINED.
(libeutil_la_LIBADD, libeconduit_la_LIBADD): Link with necessary
libs.
* e-win32-reloc.c: Update now that it is here in evolution. Use _e
prefix instead of _gal. Add getters for more run-time paths.
* e-util-private.h: Corresponding changes.
svn path=/trunk/; revision=29526
Diffstat (limited to 'e-util/e-util-private.h')
-rw-r--r-- | e-util/e-util-private.h | 30 |
1 files changed, 23 insertions, 7 deletions
diff --git a/e-util/e-util-private.h b/e-util/e-util-private.h index 13066d9f36..5e160fb657 100644 --- a/e-util/e-util-private.h +++ b/e-util/e-util-private.h @@ -28,18 +28,34 @@ #ifdef G_OS_WIN32 -const char *_gal_get_localedir (void) G_GNUC_CONST; -const char *_gal_get_gladedir (void) G_GNUC_CONST; -const char *_gal_get_imagesdir (void) G_GNUC_CONST; +const char *_e_get_localedir (void) G_GNUC_CONST; +const char *_e_get_gladedir (void) G_GNUC_CONST; +const char *_e_get_images (void) G_GNUC_CONST; +const char *_e_get_iconsdir (void) G_GNUC_CONST; +const char *_e_get_category_icons (void) G_GNUC_CONST; +const char *_e_get_plugindir (void) G_GNUC_CONST; +const char *_e_get_privdatadir (void) G_GNUC_CONST; #undef EVOLUTION_LOCALEDIR -#define EVOLUTION_LOCALEDIR _gal_get_localedir () +#define EVOLUTION_LOCALEDIR _e_get_localedir () #undef EVOLUTION_GLADEDIR -#define EVOLUTION_GLADEDIR _gal_get_gladedir () +#define EVOLUTION_GLADEDIR _e_get_gladedir () -#undef GAL_IMAGESDIR -#define GAL_IMAGESDIR _gal_get_imagesdir () +#undef EVOLUTION_IMAGES +#define EVOLUTION_IMAGES _e_get_images () + +#undef EVOLUTION_ICONSDIR +#define EVOLUTION_ICONSDIR _e_get_iconsdir () + +#undef EVOLUTION_CATEGORY_ICONS +#define EVOLUTION_CATEGORY_ICONS _e_get_category_icons () + +#undef EVOLUTION_PLUGINDIR +#define EVOLUTION_PLUGINDIR _e_get_plugindir () + +#undef EVOLUTION_PRIVDATADIR +#define EVOLUTION_PRIVDATADIR _e_get_privdatadir () #endif /* G_OS_WIN32 */ |