summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--NEWS4
-rw-r--r--configure.ac2
3 files changed, 9 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 87b6a979..234aa87a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
+=== 2.14.1 ===
+
2008-01-03 Johan Dahlin <johan@gnome.org>
+ * NEWS: Update
+
Backport from trunk:
* configure.ac:
diff --git a/NEWS b/NEWS
index 524bd7de..fdcef07d 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,7 @@
+2.14.1 03-jan-2007
+ - Avoid wakeups when using Python trunk (Johan Dahlin, #481569)
+ - Add an uninstalled.pc (Damien Carbery, #486876)
+
2.14.0 16-sep-2007
- Fix a Python 2.6 deprecation warning (Johannes Hölzl, #342948)
- Wrap g_timeout_add_seconds, when compiling with glib 2.14 (Gustavo)
diff --git a/configure.ac b/configure.ac
index 349edfad..b4a412be 100644
--- a/configure.ac
+++ b/configure.ac
@@ -73,7 +73,7 @@ AC_MSG_CHECKING([for PySignal_SetWakeupFd in Python.h])
py_prefix=`$PYTHON -c "import sys; print sys.prefix"`
PYTHON_INCLUDES="-I${py_prefix}/include/python${PYTHON_VERSION}"
old_CPPFLAGS=$CPPFLAGS
-CPPFLAGS="$PYTHON_INCLUDES"
+CPPFLAGS="-Wall -Werror $PYTHON_INCLUDES"
AC_TRY_COMPILE([#include <Python.h>],
[PySignal_SetWakeupFd(0);],
setwakeupfd_ok=yes,