raised dependencies to >=gtkmm-2.6 and >=parted-1.6.25

* configure.in: raised dependencies to >=gtkmm-2.6 and >=parted-1.6.25
This commit is contained in:
Bart Hakvoort 2005-11-27 14:25:16 +00:00
parent cc18d11ad5
commit f3f13d2082
2 changed files with 6 additions and 3 deletions

View File

@ -1,3 +1,6 @@
2005-11-27 Bart Hakvoort <hakvoort@cvs.gnome.org>
* configure.in: raised dependencies to >=gtkmm-2.6 and >=parted-1.6.25
2005-11-27 Bart Hakvoort <hakvoort@cvs.gnome.org>
* hmmz, lots of shimmery internals..
Instead of using a boolean to indicate support for certain

View File

@ -33,12 +33,12 @@ AC_CHECK_LIB(uuid, uuid_generate, [], AC_MSG_ERROR([*** uuid library (libuuid) n
AC_CHECK_LIB(dl, dlopen, [], AC_MSG_ERROR([*** dl library (libdl) not found]))
AC_PATH_PROG(PARTED_PATH, parted, [], /sbin /usr/sbin /usr/local/sbin)
if ! (( ($( $PARTED_PATH --version | cut -d. -f3 | cut -d' ' -f1 )) > 12 )) 2>/dev/null
if ! (( ($( $PARTED_PATH --version | cut -d. -f3 | cut -d' ' -f1 )) >= 25 )) 2>/dev/null
then
AC_MSG_ERROR([*** libparted >= 1.6.13 not installed - get it from http://www.gnu.org/software/parted/ ***])
AC_MSG_ERROR([*** libparted >= 1.6.25 not installed - get it from http://www.gnu.org/software/parted/ ***])
fi
PKG_CHECK_MODULES(GTKMM, gtkmm-2.4 )
PKG_CHECK_MODULES(GTKMM, gtkmm-2.4 > 2.6 )
AC_SUBST(GTKMM_LIBS)
AC_SUBST(GTKMM_CFLAGS)