diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2001-05-23 02:43:48 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-05-23 02:43:48 +0800 |
commit | 4c2d071302d73e50d1a549959eeba7e5acf295d2 (patch) | |
tree | 8e78b8410cecb0dade39da264924e9afb2558b34 | |
parent | 6ae1dd504509573df5a310a73ba83825d311845b (diff) | |
download | gsoc2013-evolution-4c2d071302d73e50d1a549959eeba7e5acf295d2.tar gsoc2013-evolution-4c2d071302d73e50d1a549959eeba7e5acf295d2.tar.gz gsoc2013-evolution-4c2d071302d73e50d1a549959eeba7e5acf295d2.tar.bz2 gsoc2013-evolution-4c2d071302d73e50d1a549959eeba7e5acf295d2.tar.lz gsoc2013-evolution-4c2d071302d73e50d1a549959eeba7e5acf295d2.tar.xz gsoc2013-evolution-4c2d071302d73e50d1a549959eeba7e5acf295d2.tar.zst gsoc2013-evolution-4c2d071302d73e50d1a549959eeba7e5acf295d2.zip |
Create MAILER_CFLAGS and MAILER_LIBS so that we don't have the same libs
2001-05-22 Jeffrey Stedfast <fejj@ximian.com>
* configure.in: Create MAILER_CFLAGS and MAILER_LIBS so that we
don't have the same libs multiple times in the libtool
command-line.
svn path=/trunk/; revision=9926
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | configure.in | 5 |
2 files changed, 11 insertions, 0 deletions
@@ -1,3 +1,9 @@ +2001-05-22 Jeffrey Stedfast <fejj@ximian.com> + + * configure.in: Create MAILER_CFLAGS and MAILER_LIBS so that we + don't have the same libs multiple times in the libtool + command-line. + 2001-05-20 Duncan Mak <duncan@ximian.com> * tools/killev (sysname): Add in evolution-vcard-importer as part diff --git a/configure.in b/configure.in index d460b4bedb..dcf504bba4 100644 --- a/configure.in +++ b/configure.in @@ -408,6 +408,11 @@ CAMEL_LIBS="`gnome-config --libs gal xml` $THREADS_LIBS" AC_SUBST(CAMEL_CFLAGS) AC_SUBST(CAMEL_LIBS) +MAILER_CFLAGS="`gnome-config --cflags gtkhtml libglade gdk_pixbuf gnomecanvaspixbuf gnomeui gal bonobox bonobox_print vfs` $THREADS_CFLAGS" +MAILER_LIBS="`gnome-config --libs gtkhtml libglade gdk_pixbuf gnomecanvaspixbuf gnomeui gal bonobox bonobox_print vfs` $THREADS_LIBS" +AC_SUBST(MAILER_CFLAGS) +AC_SUBST(MAILER_LIBS) + dnl ****************************** dnl Pilot checking dnl ****************************** |