aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--configure.in5
2 files changed, 11 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index e0c76946ca..431e69a97c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2001-05-15 Jeffrey Stedfast <fejj@ximian.com>
+
+ * configure.in: Create CAMEL_CFLAGS and CAMEL_LIBS so that we
+ don't have to link in all sorts of unnecessary garbage from GNOME
+ that we don't need.
+
2001-05-15 Chris Toshok <toshok@ximian.com>
* tools/killev: add the importers.
diff --git a/configure.in b/configure.in
index 3e82309a08..d460b4bedb 100644
--- a/configure.in
+++ b/configure.in
@@ -403,6 +403,11 @@ BONOBO_VFS_GNOME_CFLAGS="`gnome-config --cflags bonobox libglade gdk_pixbuf gnom
AC_SUBST(BONOBO_VFS_GNOME_LIBS)
AC_SUBST(BONOBO_VFS_GNOME_CFLAGS)
+CAMEL_CFLAGS="`gnome-config --cflags gal xml` $THREADS_CFLAGS"
+CAMEL_LIBS="`gnome-config --libs gal xml` $THREADS_LIBS"
+AC_SUBST(CAMEL_CFLAGS)
+AC_SUBST(CAMEL_LIBS)
+
dnl ******************************
dnl Pilot checking
dnl ******************************