Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Build fails with autoconf 2.70
  • Loading branch information
bfabiszewski committed Oct 14, 2021
1 parent 40c2171 commit 542600d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions configure.ac
Expand Up @@ -324,9 +324,9 @@ AC_SUBST(MINIZ_CFLAGS)

# Check for md5 or md5sum program, needed for tests
AC_ARG_VAR([MD5PROG], [md5 hashing program executable])
AS_IF([test "x$MD5PROG" = "x"], AC_CHECK_PROG([MD5PROG], [md5sum], [md5sum -t]), [])
AS_IF([test "x$MD5PROG" = "x"], AC_CHECK_PROG([MD5PROG], [md5], [md5 -r]), [])
AS_IF([test "x$MD5PROG" = "x"], AC_MSG_WARN([md5 hashing program not found, some tests will be skipped]), [])
AS_IF([test "x$MD5PROG" = "x"], [AC_CHECK_PROG([MD5PROG], [md5sum], [md5sum -t])], [])
AS_IF([test "x$MD5PROG" = "x"], [AC_CHECK_PROG([MD5PROG], [md5], [md5 -r])], [])
AS_IF([test "x$MD5PROG" = "x"], [AC_MSG_WARN([md5 hashing program not found, some tests will be skipped])], [])

# List test files
CR=$'\n'
Expand Down

0 comments on commit 542600d

Please sign in to comment.