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:
parent
7ff22e9b3f
commit
722441e054
@ -1,6 +1,13 @@
|
||||
2008-12-08 Frederic Culot <frederic@culot.org>
|
||||
|
||||
* 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>
|
||||
|
||||
|
2
TODO
2
TODO
@ -17,12 +17,12 @@ High
|
||||
|
||||
Average
|
||||
-------
|
||||
o Make keys user configurable
|
||||
o Add searching capabilities with support for regex
|
||||
o Implement a daemon to notify user of upcoming appointments even when
|
||||
calcurse is not running
|
||||
o Add an auto-save function
|
||||
o Add support for CalDAV protocol (rfc4791)
|
||||
o Implement categories to classify appointments and tasks
|
||||
|
||||
|
||||
Low
|
||||
|
@ -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
|
||||
#-------------------------------------------------------------------------------
|
||||
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_GNU_GETTEXT([external])
|
||||
AC_CONFIG_SRCDIR([src/calcurse.c])
|
||||
@ -56,7 +56,7 @@ AC_CHECK_HEADERS([math.h], [
|
||||
#-------------------------------------------------------------------------------
|
||||
# Compilation options
|
||||
#-------------------------------------------------------------------------------
|
||||
CFLAGS="-O2 -Wall -g"
|
||||
CFLAGS+="-Wall -g"
|
||||
#-------------------------------------------------------------------------------
|
||||
# Create Makefiles
|
||||
#-------------------------------------------------------------------------------
|
||||
|
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user