summaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorJan Schmidt <list.xfs@jan-o-sch.net>2013-08-13 17:24:17 +0000
committerRich Johnston <rjohnston@sgi.com>2013-08-13 17:08:56 -0500
commitdf0fd18101b625aad690d4cd3bb4ba7e7d1d99dc (patch)
treee323317fa64f5d60dcaced74947fb01be8295e86 /m4
parentaab6d4e47d51b5cf4e5fc4a15a5dee80fb72aab4 (diff)
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>
Diffstat (limited to 'm4')
-rw-r--r--m4/Makefile1
-rw-r--r--m4/package_ssldev.m44
2 files changed, 5 insertions, 0 deletions
diff --git a/m4/Makefile b/m4/Makefile
index 6c1d0e45..7fbff822 100644
--- a/m4/Makefile
+++ b/m4/Makefile
@@ -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 \
diff --git a/m4/package_ssldev.m4 b/m4/package_ssldev.m4
new file mode 100644
index 00000000..2eae3c50
--- /dev/null
+++ b/m4/package_ssldev.m4
@@ -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)
+ ])