summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--configure.ac6
1 files changed, 6 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index dfce4330e..70f03f6da 100644
--- a/configure.ac
+++ b/configure.ac
@@ -243,6 +243,12 @@ if test -z "$UNZIP"; then
AC_MSG_ERROR([unzip could not be found, please install])
fi
+dnl Check for xz
+AC_PATH_PROGS(XZ, xz,, $PATH)
+if test -z "$XZ"; then
+ AC_MSG_ERROR([xz could not be found, please install])
+fi
+
dnl Check for wget
AC_PATH_PROGS(WGET, wget,, $PATH)
if test -z "$WGET"; then