From b3280b8bca86dedfe4018584a4d83d7bff2dfd7c Mon Sep 17 00:00:00 2001
From: Lukas Fleischer <calcurse@cryptocrack.de>
Date: Tue, 5 Feb 2013 21:36:22 +0100
Subject: Do not ignore "--datarootdir" in "po/Makefile.in.in"

This fixes the "--datarootdir" warning seen with autotools >=2.59c. Note
that this is a workaround for a bug in autopoint(1).

Inspired by util-linux commit cc3c3fdd29719883605687fc0d11391386ab46c6.

Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
---
 autogen.sh | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/autogen.sh b/autogen.sh
index 4323159..321876d 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -30,6 +30,11 @@
 #
 
 autopoint --force
+if ! grep -F -q datarootdir po/Makefile.in.in
+then
+  sed -i '/^datadir =/i\
+datarootdir = @datarootdir@\' po/Makefile.in.in
+fi
 aclocal -I m4
 autoheader
 automake --foreign --copy --add-missing
-- 
cgit v1.2.3-70-g09d2


From 6d6f76e76d7eea3f3798d72ab0722c41eb80830c Mon Sep 17 00:00:00 2001
From: Lukas Fleischer <calcurse@cryptocrack.de>
Date: Sat, 9 Feb 2013 13:41:16 +0100
Subject: Release 3.1.4

Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
---
 NEWS           | 12 ++++++++++++
 doc/manual.txt |  2 +-
 2 files changed, 13 insertions(+), 1 deletion(-)

diff --git a/NEWS b/NEWS
index 2a28742..4aff4bf 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,15 @@
+[09 Feb 2013]
+Version 3.1.4:
+- Bug fixes:
+  * Do not prompt for a todo after adding an appointment.
+
+  * Close key binding window when reassigning the same key (thanks to Michael
+    Smith for submitting a patch).
+
+  * Update copyright ranges.
+
+  * Do not ignore "--datarootdir" in the i18n Makefile.
+
 [02 Feb 2013]
 Version 3.1.3:
 - Bug fixes:
diff --git a/doc/manual.txt b/doc/manual.txt
index 6863850..09dc035 100644
--- a/doc/manual.txt
+++ b/doc/manual.txt
@@ -149,7 +149,7 @@ Install process
 First you need to gunzip and untar the source archive:
 
 ----
-$ tar zxvf calcurse-3.1.3.tar.gz
+$ tar zxvf calcurse-3.1.4.tar.gz
 ----
 
 Once you meet the requirements and have extracted the archive, the install
-- 
cgit v1.2.3-70-g09d2