xfstests: add fssum tool

fssum is a tool to build a recursive checksum for a file system. The home
repository of fssum is

    git://git.kernel.org/pub/scm/linux/kernel/git/arne/far-progs.git

Signed-off-by: Jan Schmidt <list.xfs@jan-o-sch.net>
Reviewed-by: Eric Sandeen <sandeen@redhat.com>
Signed-off-by: Rich Johnston <rjohnston@sgi.com>
This commit is contained in:
Jan Schmidt
2013-08-13 17:24:17 +00:00
committed by Rich Johnston
parent aab6d4e47d
commit df0fd18101
8 changed files with 845 additions and 0 deletions
+1
View File
@@ -16,6 +16,7 @@ LSRCFILES = \
package_libcdev.m4 \
package_ncurses.m4 \
package_pthread.m4 \
package_ssldev.m4 \
package_types.m4 \
package_utilies.m4 \
package_uuiddev.m4 \
+4
View File
@@ -0,0 +1,4 @@
AC_DEFUN([AC_PACKAGE_WANT_SSL],
[ AC_CHECK_HEADERS(openssl/md5.h, [ have_ssl=true ], [ have_ssl=false ])
AC_SUBST(have_ssl)
])