From: John Darrington Date: Sat, 6 Oct 2007 06:58:13 +0000 (+0000) Subject: Update libglade version dependency X-Git-Tag: v0.6.0~233 X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?p=pspp-builds.git;a=commitdiff_plain;h=b7ed8e443a19d63b8bd444fa805cfc9eda1bc3f0 Update libglade version dependency --- diff --git a/ChangeLog b/ChangeLog index 665efcfa..8fa39f6a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-10-06 John Darrington + + * configure.ac INSTALL: Change libglade version requirement. + Thanks to Paul Brown for reporting this issue. + 2007-09-30 Ben Pfaff * configure.ac: Print a message indicating success at the end of diff --git a/INSTALL b/INSTALL index 822fe77d..f5a826e6 100644 --- a/INSTALL +++ b/INSTALL @@ -50,7 +50,7 @@ use the GUI, you must run `configure' with --without-gui. recommend version 2.10.2 or later. * libglade (http://www.jamesh.id.au/software/libglade/), version - 2.0 or later. + 2.6 or later. The following packages are optional. diff --git a/configure.ac b/configure.ac index 0f10bccc..f0895ce2 100644 --- a/configure.ac +++ b/configure.ac @@ -39,7 +39,7 @@ AC_ARG_WITH(gui, [ --without-gui don't build the PSPPIRE gui]) if test x"$with_gui" != x"no" ; then PKG_CHECK_MODULES(GTK, gtk+-2.0 >= 2.8.0,, [PSPP_REQUIRED_PREREQ([gtk+ 2.0 v2.8.0 or later (or use --without-gui)])]) - PKG_CHECK_MODULES(GLADE, libglade-2.0,, + PKG_CHECK_MODULES(GLADE, libglade-2.0 >= 2.6.0,, [PSPP_REQUIRED_PREREQ([libglade 2.0 (or use --without-gui)])]) fi AM_CONDITIONAL(WITHGUI, test x"$with_gui" != x"no")