aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2001-05-16 03:27:46 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2001-05-16 03:27:46 +0800
commit65e03ad7ca98b643d46a5ab5ceb1351ce8df3d60 (patch)
tree7da2db9b07a59533b37c989b9c3fb882fc74abac
parent81a88289972301425801f711fb7fba275c62bafc (diff)
downloadgsoc2013-evolution-65e03ad7ca98b643d46a5ab5ceb1351ce8df3d60.tar
gsoc2013-evolution-65e03ad7ca98b643d46a5ab5ceb1351ce8df3d60.tar.gz
gsoc2013-evolution-65e03ad7ca98b643d46a5ab5ceb1351ce8df3d60.tar.bz2
gsoc2013-evolution-65e03ad7ca98b643d46a5ab5ceb1351ce8df3d60.tar.lz
gsoc2013-evolution-65e03ad7ca98b643d46a5ab5ceb1351ce8df3d60.tar.xz
gsoc2013-evolution-65e03ad7ca98b643d46a5ab5ceb1351ce8df3d60.tar.zst
gsoc2013-evolution-65e03ad7ca98b643d46a5ab5ceb1351ce8df3d60.zip
Create CAMEL_CFLAGS and CAMEL_LIBS so that we don't have to link in all
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. svn path=/trunk/; revision=9824
-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 ******************************