Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--configure.ac2
2 files changed, 8 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 89b63c5..beb01bf 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,13 @@
2006-08-05 Carlos Garcia Campos <carlosgc@gnome.org>
* configure.ac:
+
+ Use [] in AC_DEFINE for GtkRecent. Probably build was failing because
+ of this.
+
+2006-08-05 Carlos Garcia Campos <carlosgc@gnome.org>
+
+ * configure.ac:
* cut-n-paste/Makefile.am:
* data/evince-ui.xml:
* shell/Makefile.am:
diff --git a/configure.ac b/configure.ac
index 462891a..8de5b63 100644
--- a/configure.ac
+++ b/configure.ac
@@ -171,7 +171,7 @@ dnl Check for GtkRecent
PKG_CHECK_MODULES(GTK_RECENT, gtk+-2.0 >= 2.10.0,
[HAVE_GTK_RECENT=yes], [HAVE_GTK_RECENT=no])
if test x$HAVE_GTK_RECENT = xyes; then
- AC_DEFINE(HAVE_GTK_RECENT, 1, [defined if GtkRecent is available])
+ AC_DEFINE([HAVE_GTK_RECENT], [1], [defined if GtkRecent is available])
fi
AM_CONDITIONAL(HAVE_GTK_RECENT, test x$HAVE_GTK_RECENT = "xyes")