diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2004-01-29 09:36:35 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2004-01-29 09:36:35 +0800 |
commit | 267c0f583519f74c50670072ea931c897b1fcb48 (patch) | |
tree | a414e3951f0994bc76b4338116eb61fe480d155e | |
parent | a2f5f6e0f6e930ea17c3f5491c3a7a882ab78250 (diff) | |
download | gsoc2013-evolution-267c0f583519f74c50670072ea931c897b1fcb48.tar gsoc2013-evolution-267c0f583519f74c50670072ea931c897b1fcb48.tar.gz gsoc2013-evolution-267c0f583519f74c50670072ea931c897b1fcb48.tar.bz2 gsoc2013-evolution-267c0f583519f74c50670072ea931c897b1fcb48.tar.lz gsoc2013-evolution-267c0f583519f74c50670072ea931c897b1fcb48.tar.xz gsoc2013-evolution-267c0f583519f74c50670072ea931c897b1fcb48.tar.zst gsoc2013-evolution-267c0f583519f74c50670072ea931c897b1fcb48.zip |
Update to require glib-2.0 >= 2.3.2 (needed for some GValue usage).
2004-01-28 Jeffrey Stedfast <fejj@ximian.com>
* configure.in: Update to require glib-2.0 >= 2.3.2 (needed for
some GValue usage).
svn path=/trunk/; revision=24506
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | configure.in | 3 |
2 files changed, 7 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2004-01-28 Jeffrey Stedfast <fejj@ximian.com> + + * configure.in: Update to require glib-2.0 >= 2.3.2 (needed for + some GValue usage). + 2004-01-28 Rodney Dawes <dobey@ximian.com> * configure.in: Disable the possibility of using OpenSSL until someone diff --git a/configure.in b/configure.in index 860905eaaa..9ea792397a 100644 --- a/configure.in +++ b/configure.in @@ -976,6 +976,7 @@ AC_DEFUN(EVO_SET_COMPILE_FLAGS, [ dnl --- Required version numbers +GLIB_REQUIRED=2.3.2 GAL_REQUIRED=2.1.4 GTKHTML_REQUIRED=3.1.7 EDS_REQUIRED=0.0.6 @@ -988,7 +989,7 @@ AC_SUBST(BONOBOUI_REQUIRED) dnl --- Flags to get all the GNOME stuff -FULL_GNOME_DEPS="libbonoboui-2.0 >= $BONOBOUI_REQUIRED gnome-vfs-2.0 libgnomeui-2.0 libglade-2.0 libgnomecanvas-2.0 libxml-2.0 gconf-2.0 gal-2.2 >= $GAL_REQUIRED" +FULL_GNOME_DEPS="glib-2.0 >= $GLIB_REQUIRED libbonoboui-2.0 >= $BONOBOUI_REQUIRED gnome-vfs-2.0 libgnomeui-2.0 libglade-2.0 libgnomecanvas-2.0 libxml-2.0 gconf-2.0 gal-2.2 >= $GAL_REQUIRED" EVO_SET_COMPILE_FLAGS(GNOME_FULL, $FULL_GNOME_DEPS) AC_SUBST(GNOME_FULL_CFLAGS) |