diff options
author | Iain Holmes <iain@src.gnome.org> | 2002-01-17 01:55:48 +0800 |
---|---|---|
committer | Iain Holmes <iain@src.gnome.org> | 2002-01-17 01:55:48 +0800 |
commit | 95de7c6dc800504a12b6fc7557e282e646250422 (patch) | |
tree | 081018f155d3bbdafcb5e39f0e0ae2e174a58950 | |
parent | ac62bd148595f30859871925e8c41d827c560485 (diff) | |
download | gsoc2013-evolution-95de7c6dc800504a12b6fc7557e282e646250422.tar gsoc2013-evolution-95de7c6dc800504a12b6fc7557e282e646250422.tar.gz gsoc2013-evolution-95de7c6dc800504a12b6fc7557e282e646250422.tar.bz2 gsoc2013-evolution-95de7c6dc800504a12b6fc7557e282e646250422.tar.lz gsoc2013-evolution-95de7c6dc800504a12b6fc7557e282e646250422.tar.xz gsoc2013-evolution-95de7c6dc800504a12b6fc7557e282e646250422.tar.zst gsoc2013-evolution-95de7c6dc800504a12b6fc7557e282e646250422.zip |
SOUP stuff
svn path=/trunk/; revision=15343
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | README | 2 | ||||
-rw-r--r-- | configure.in | 6 |
3 files changed, 15 insertions, 0 deletions
@@ -1,3 +1,10 @@ +2002-01-15 Iain Holmes <iain@ximian.com> + + * configure.in: Add a check for libsoup. Define SOUP_CFLAGS and + SOUP_LIBS + + * README: Update to include the SOUP dependancy. + 2002-01-04 Pablo Saratxaga <pablo@mandrakesoft.com> * configure.in: Added "eu" to ALL_LINGUAS @@ -143,6 +143,8 @@ and -devel packages for each library. - gtkhtml - later than 0.16.1 + - SOUP: later than 0.6.99 + Other non-GNOME Dependencies: - Berkeley's libdb - 3.1.17 diff --git a/configure.in b/configure.in index 4be1355026..1c07b471b1 100644 --- a/configure.in +++ b/configure.in @@ -581,6 +581,7 @@ EVO_CHECK_LIB(bonobo-conf, bonobo_conf, 0.11) EVO_CHECK_LIB(GAL, gal, 0.18.1) EVO_CHECK_LIB(GtkHTML, gtkhtml, 1.0) +EVO_CHECK_LIB(Libsoup, soup, 0.6) dnl ************************* dnl CFLAGS and LIBS and stuff @@ -656,6 +657,11 @@ MAILER_LIBS="`gnome-config --libs gtkhtml libglade gdk_pixbuf gnomecanvaspixbuf AC_SUBST(MAILER_CFLAGS) AC_SUBST(MAILER_LIBS) +SOUP_CFLAGS="`gnome-config --cflags soup`" +SOUP_LIBS="`gnome-config --libs soup`" +AC_SUBST(SOUP_CFLAGS) +AC_SUBST(SOUP_LIBS) + dnl ****************************** dnl Pilot checking dnl ****************************** |