diff options
author | robi <robi> | 2010-09-27 22:07:10 +0000 |
---|---|---|
committer | robi <robi> | 2010-09-27 22:07:10 +0000 |
commit | 395ff58103d0bfb373794e382c2d2d701841de47 (patch) | |
tree | c632d6bc0315714e3a2b7384ab300daacd14405f /configure.in | |
parent | a0b8d23015f04caa8b4fb456f9c2a2bf6a64c82f (diff) |
versions stuff for release 0.2.0-pv0
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 84d5571..dfd6c8a 100644 --- a/configure.in +++ b/configure.in @@ -15,9 +15,11 @@ AC_CHECK_HEADER([uuid/uuid.h],[],[fail=1]) test $fail = 1 && AC_MSG_ERROR([You must install the develop packages "ext2fs , blkid , e2p , uuid" to build ext4magic]) -if pkg-config --exists 'ext2fs < 1.41.9' ; then + +fail=0 +AC_SEARCH_LIBS([ext2fs_test_inode_bitmap_range], [ext2fs], [], [fail=1]) +test $fail = 1 && AC_MSG_ERROR([You must have ext2fs version >= 1.41.9 to build ext4magic]) -fi fail=0 AC_SEARCH_LIBS([magic_buffer], [magic], [], [fail=1]) |