diff options
author | Frederic Culot <calcurse@culot.org> | 2008-12-08 19:40:22 +0000 |
---|---|---|
committer | Frederic Culot <calcurse@culot.org> | 2008-12-08 19:40:22 +0000 |
commit | 722441e05414f6436e7a5b617456e04f3cdbae0f (patch) | |
tree | b86c0ee4f2b43b254adf4b94efb45fe6cb2d5a50 /src | |
parent | 7ff22e9b3f906b6f775e199d6cde73d8ee18d1d5 (diff) | |
download | calcurse-722441e05414f6436e7a5b617456e04f3cdbae0f.tar.gz calcurse-722441e05414f6436e7a5b617456e04f3cdbae0f.zip |
Switched to calcurse-2.4_beta. Fixed compiler flags overwriting and added locale.h include (thanks Cedric for your patch)
Diffstat (limited to 'src')
-rwxr-xr-x | src/i18n.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,4 +1,4 @@ -/* $calcurse: i18n.h,v 1.2 2008/04/12 21:14:03 culot Exp $ */ +/* $calcurse: i18n.h,v 1.3 2008/12/08 19:40:23 culot Exp $ */ /* * Calcurse - text-based organizer @@ -32,6 +32,7 @@ #endif /* HAVE_CONFIG_H */ #if ENABLE_NLS +#include <locale.h> #include <libintl.h> #undef _ #define _(String) gettext(String) |