]> www.fi.muni.cz Git - evince.git/commitdiff
Use [] in AC_DEFINE for GtkRecent. Probably build was failing because of
authorCarlos Garcia Campos <carlosgc@gnome.org>
Sat, 5 Aug 2006 12:45:17 +0000 (12:45 +0000)
committerCarlos Garcia Campos <carlosgc@src.gnome.org>
Sat, 5 Aug 2006 12:45:17 +0000 (12:45 +0000)
2006-08-05  Carlos Garcia Campos  <carlosgc@gnome.org>
* configure.ac:
Use [] in AC_DEFINE for GtkRecent. Probably build was failing because
of this.

ChangeLog
configure.ac

index 89b63c5bbb1ce6b7c14b25bae8974173c89cc3ff..beb01bf4b28a24176ad78c079f940662fd0f0064 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+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:
index 462891a627d182c4fc2fb6efd0211561ff541ece..8de5b63e278b1a256fe433f4c8eaaf315560b770 100644 (file)
@@ -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")