aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFederico Mena Quintero <federico@helixcode.com>2000-01-17 15:46:09 +0800
committerArturo Espinosa <unammx@src.gnome.org>2000-01-17 15:46:09 +0800
commit8c55e9f58b86483aa64c75a9324cd04e3ae79b2b (patch)
treed32e014fd43df03bd83bea3870a94c5382aff73c
parent41342256b0630e710eab054bcf404bf855dc68f1 (diff)
downloadgsoc2013-evolution-8c55e9f58b86483aa64c75a9324cd04e3ae79b2b.tar
gsoc2013-evolution-8c55e9f58b86483aa64c75a9324cd04e3ae79b2b.tar.gz
gsoc2013-evolution-8c55e9f58b86483aa64c75a9324cd04e3ae79b2b.tar.bz2
gsoc2013-evolution-8c55e9f58b86483aa64c75a9324cd04e3ae79b2b.tar.lz
gsoc2013-evolution-8c55e9f58b86483aa64c75a9324cd04e3ae79b2b.tar.xz
gsoc2013-evolution-8c55e9f58b86483aa64c75a9324cd04e3ae79b2b.tar.zst
gsoc2013-evolution-8c55e9f58b86483aa64c75a9324cd04e3ae79b2b.zip
Add the gnomecanvaspixbuf argument to gnome-config invocations.
2000-01-17 Federico Mena Quintero <federico@helixcode.com> * configure.in: Add the gnomecanvaspixbuf argument to gnome-config invocations. svn path=/trunk/; revision=1578
-rw-r--r--ChangeLog5
-rw-r--r--configure.in14
2 files changed, 12 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog
index 6ed9138a0b..7744d78ff0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2000-01-17 Federico Mena Quintero <federico@helixcode.com>
+
+ * configure.in: Add the gnomecanvaspixbuf argument to gnome-config
+ invocations.
+
2000-01-17 bertrand <bertrand@helixcode.com>
* camel/providers/mbox/camel-mbox-utils.c (camel_mbox_write_xev):
diff --git a/configure.in b/configure.in
index 7d261cc7ce..4ef3f68804 100644
--- a/configure.in
+++ b/configure.in
@@ -96,24 +96,24 @@ dnl ******************************
dnl GdkPixbuf checking
dnl ******************************
AC_MSG_CHECKING(For Gdkpixbuf libraries)
-if gnome-config --libs gdk_pixbuf > /dev/null 2>&1; then
+if gnome-config --libs gdk_pixbuf gnomecanvaspixbuf > /dev/null 2>&1; then
AC_MSG_RESULT(found)
else
AC_MSG_ERROR(Did not find gdkpixbuf installed)
fi
-EXTRA_GNOME_LIBS="`gnome-config --libs gnomeui libglade gdk_pixbuf `"
-EXTRA_GNOME_CFLAGS="`gnome-config --cflags gnomeui libglade gdk_pixbuf `"
+EXTRA_GNOME_LIBS="`gnome-config --libs gnomeui libglade gdk_pixbuf gnomecanvaspixbuf `"
+EXTRA_GNOME_CFLAGS="`gnome-config --cflags gnomeui libglade gdk_pixbuf gnomecanvaspixbuf `"
AC_SUBST(EXTRA_GNOME_LIBS)
AC_SUBST(EXTRA_GNOME_CFLAGS)
-BONOBO_GNOME_LIBS="`gnome-config --libs gnomeui bonobo libglade gdk_pixbuf `"
-BONOBO_GNOME_CFLAGS="`gnome-config --cflags gnomeui bonobo libglade gdk_pixbuf `"
+BONOBO_GNOME_LIBS="`gnome-config --libs gnomeui bonobo libglade gdk_pixbuf gnomecanvaspixbuf `"
+BONOBO_GNOME_CFLAGS="`gnome-config --cflags gnomeui bonobo libglade gdk_pixbuf gnomecanvaspixbuf `"
AC_SUBST(BONOBO_GNOME_LIBS)
AC_SUBST(BONOBO_GNOME_CFLAGS)
-EXTRA_GNOME_LIBS_THREADS="`gnome-config --libs gnomeui libglade gdk_pixbuf ` `glib-config --libs gthread`"
-EXTRA_GNOME_CFLAGS_THREADS="`gnome-config --cflags gnomeui libglade gdk_pixbuf ` `glib-config --cflags gthread`"
+EXTRA_GNOME_LIBS_THREADS="`gnome-config --libs gnomeui libglade gdk_pixbuf gnomecanvaspixbuf ` `glib-config --libs gthread`"
+EXTRA_GNOME_CFLAGS_THREADS="`gnome-config --cflags gnomeui libglade gdk_pixbuf gnomecanvaspixbuf ` `glib-config --cflags gthread`"
AC_SUBST(EXTRA_GNOME_LIBS_THREADS)
AC_SUBST(EXTRA_GNOME_CFLAGS_THREADS)