diff options
author | Timur Bakeyev <mc@bat.ru> | 1999-02-22 08:55:21 +0800 |
---|---|---|
committer | Timur I. Bakeyev <timur@src.gnome.org> | 1999-02-22 08:55:21 +0800 |
commit | 06231f4f07c3fa20ab8e62b469eb1311e07bd3a5 (patch) | |
tree | 762eed991ae8d6eb190f6fc4d3e8871cde0b5c92 /calendar/gui/prop.c | |
parent | b779411ecc5714bc27ce5082ca40512851c5e876 (diff) | |
download | gsoc2013-evolution-06231f4f07c3fa20ab8e62b469eb1311e07bd3a5.tar gsoc2013-evolution-06231f4f07c3fa20ab8e62b469eb1311e07bd3a5.tar.gz gsoc2013-evolution-06231f4f07c3fa20ab8e62b469eb1311e07bd3a5.tar.bz2 gsoc2013-evolution-06231f4f07c3fa20ab8e62b469eb1311e07bd3a5.tar.lz gsoc2013-evolution-06231f4f07c3fa20ab8e62b469eb1311e07bd3a5.tar.xz gsoc2013-evolution-06231f4f07c3fa20ab8e62b469eb1311e07bd3a5.tar.zst gsoc2013-evolution-06231f4f07c3fa20ab8e62b469eb1311e07bd3a5.zip |
tzname issues
1999-02-22 Timur Bakeyev <mc@bat.ru>
* configure.in: Added check for langinfo.h and for representation of
timezone info - tzname or tm.tm_zone.
svn path=/trunk/; revision=682
Diffstat (limited to 'calendar/gui/prop.c')
-rw-r--r-- | calendar/gui/prop.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/calendar/gui/prop.c b/calendar/gui/prop.c index 345c07fe96..2f24f4551e 100644 --- a/calendar/gui/prop.c +++ b/calendar/gui/prop.c @@ -6,7 +6,11 @@ * Federico Mena <federico@nuclecu.unam.mx> */ #include <config.h> +#ifdef HAVE_LANGINGO_H #include <langinfo.h> +#else +#include <locale.h> +#endif #include <gnome.h> #include "gnome-cal.h" #include "gnome-month-item.h" |