diff options
author | Tor Lillqvist <tml@novell.com> | 2005-08-10 17:18:27 +0800 |
---|---|---|
committer | Tor Lillqvist <tml@src.gnome.org> | 2005-08-10 17:18:27 +0800 |
commit | 99bb93cb5a7fcc73b3b527337705c862cd11d17d (patch) | |
tree | 9aa1252aa45befaa5289c45af186753ffba2dbdc /e-util/e-util-private.h | |
parent | 16f84e35048c2bb63e417be590108bd95d83c113 (diff) | |
download | gsoc2013-evolution-99bb93cb5a7fcc73b3b527337705c862cd11d17d.tar gsoc2013-evolution-99bb93cb5a7fcc73b3b527337705c862cd11d17d.tar.gz gsoc2013-evolution-99bb93cb5a7fcc73b3b527337705c862cd11d17d.tar.bz2 gsoc2013-evolution-99bb93cb5a7fcc73b3b527337705c862cd11d17d.tar.lz gsoc2013-evolution-99bb93cb5a7fcc73b3b527337705c862cd11d17d.tar.xz gsoc2013-evolution-99bb93cb5a7fcc73b3b527337705c862cd11d17d.tar.zst gsoc2013-evolution-99bb93cb5a7fcc73b3b527337705c862cd11d17d.zip |
Pass also EVOLUTION_SYSCONFDIR, EVOLUTION_DATADIR and EVOLUTION_LIBDIR.
2005-08-10 Tor Lillqvist <tml@novell.com>
* Makefile.am: (INCLUDES): Pass also EVOLUTION_SYSCONFDIR,
EVOLUTION_DATADIR and EVOLUTION_LIBDIR.
* e-win32-reloc.c: Handle also the above, and the bare PREFIX.
* e-util-private.h: Ditto here. (PREFIX, SYSCONFDIR, DATADIR and
LIBDIR without the EVOLUTION_ prefix, as that is how they are to
be used, cf. gnome-program.h.)
svn path=/trunk/; revision=30073
Diffstat (limited to 'e-util/e-util-private.h')
-rw-r--r-- | e-util/e-util-private.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/e-util/e-util-private.h b/e-util/e-util-private.h index 16447a1117..5f68341d4a 100644 --- a/e-util/e-util-private.h +++ b/e-util/e-util-private.h @@ -29,6 +29,10 @@ #ifdef G_OS_WIN32 const char *_e_get_localedir (void) G_GNUC_CONST; +const char *_e_get_prefix (void) G_GNUC_CONST; +const char *_e_get_sysconfdir (void) G_GNUC_CONST; +const char *_e_get_datadir (void) G_GNUC_CONST; +const char *_e_get_libdir (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; @@ -45,6 +49,21 @@ const char *_e_get_sounddir (void) G_GNUC_CONST; #undef EVOLUTION_LOCALEDIR #define EVOLUTION_LOCALEDIR _e_get_localedir () +#undef PREFIX +#define PREFIX _e_get_prefix () + +#undef SYSCONFDIR +#define SYSCONFDIR _e_get_sysconfdir () + +#undef DATADIR +#define DATADIR _e_get_datadir () + +#undef EVOLUTION_DATADIR +#define EVOLUTION_DATADIR _e_get_datadir () + +#undef LIBDIR +#define LIBDIR _e_get_libdir () + #undef EVOLUTION_GLADEDIR #define EVOLUTION_GLADEDIR _e_get_gladedir () |