From: Ben Pfaff Date: Tue, 15 Apr 2008 17:18:30 +0000 (+0000) Subject: Properly report required version of libglade. X-Git-Tag: v0.6.0~34 X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?p=pspp-builds.git;a=commitdiff_plain;h=f7acd4036d1ec78dddfe781656d88ce273474246 Properly report required version of libglade. Thanks to unknown-1 for reporting this bug. --- diff --git a/ChangeLog b/ChangeLog index eb489721..30bc3c95 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-04-15 Ben Pfaff + + * configure.ac: Properly report required version of libglade. + Thanks to unknown-1 for reporting this bug. + 2008-04-15 John Darrington * configure.ac : Replace AC_CHECK_LIB with AC_SEARCH_LIBS as diff --git a/configure.ac b/configure.ac index c5939e26..03a4b399 100644 --- a/configure.ac +++ b/configure.ac @@ -42,7 +42,7 @@ if test x"$with_gui" != x"no" ; then PKG_CHECK_MODULES(GTK, gtk+-2.0 >= 2.12.0,, [PSPP_REQUIRED_PREREQ([gtk+ 2.0 v2.12.0 or later (or use --without-gui)])]) PKG_CHECK_MODULES(GLADE, libglade-2.0 >= 2.6.0,, - [PSPP_REQUIRED_PREREQ([libglade 2.0 (or use --without-gui)])]) + [PSPP_REQUIRED_PREREQ([libglade 2.0 v2.6.0 or later (or use --without-gui)])]) fi AM_CONDITIONAL(WITHGUI, test x"$with_gui" != x"no")