Switched to calcurse-2.4_beta. Fixed compiler flags overwriting and added locale.h include (thanks Cedric for your patch)

This commit is contained in:
Frederic Culot 2008-12-08 19:40:22 +00:00
parent 7ff22e9b3f
commit 722441e054
4 changed files with 13 additions and 5 deletions

View File

@ -1,6 +1,13 @@
2008-12-08 Frederic Culot <frederic@culot.org> 2008-12-08 Frederic Culot <frederic@culot.org>
* src/custom.c (custom_color_config_bar): new function * src/custom.c (custom_color_config_bar): new function
* configure.ac
* TODO: update for 2.4_beta
* configure.ac: do not overwrite CFLAGS
* src/i18n.h: include locale.h in case we have ENABLE_NLS
2008-12-07 Frederic Culot <frederic@culot.org> 2008-12-07 Frederic Culot <frederic@culot.org>

2
TODO
View File

@ -17,12 +17,12 @@ High
Average Average
------- -------
o Make keys user configurable
o Add searching capabilities with support for regex o Add searching capabilities with support for regex
o Implement a daemon to notify user of upcoming appointments even when o Implement a daemon to notify user of upcoming appointments even when
calcurse is not running calcurse is not running
o Add an auto-save function o Add an auto-save function
o Add support for CalDAV protocol (rfc4791) o Add support for CalDAV protocol (rfc4791)
o Implement categories to classify appointments and tasks
Low Low

View File

@ -1,10 +1,10 @@
# $calcurse: configure.ac,v 1.22 2008/10/15 16:15:40 culot Exp $ # $calcurse: configure.ac,v 1.23 2008/12/08 19:40:23 culot Exp $
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
# Init # Init
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
AC_PREREQ(2.59) AC_PREREQ(2.59)
AC_INIT(calcurse, 2.3, frederic@culot.org) AC_INIT(calcurse, 2.4_beta, frederic@culot.org)
AM_INIT_AUTOMAKE AM_INIT_AUTOMAKE
AM_GNU_GETTEXT([external]) AM_GNU_GETTEXT([external])
AC_CONFIG_SRCDIR([src/calcurse.c]) AC_CONFIG_SRCDIR([src/calcurse.c])
@ -56,7 +56,7 @@ AC_CHECK_HEADERS([math.h], [
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
# Compilation options # Compilation options
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
CFLAGS="-O2 -Wall -g" CFLAGS+="-Wall -g"
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
# Create Makefiles # Create Makefiles
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------

View File

@ -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 * Calcurse - text-based organizer
@ -32,6 +32,7 @@
#endif /* HAVE_CONFIG_H */ #endif /* HAVE_CONFIG_H */
#if ENABLE_NLS #if ENABLE_NLS
#include <locale.h>
#include <libintl.h> #include <libintl.h>
#undef _ #undef _
#define _(String) gettext(String) #define _(String) gettext(String)