diff options
author | Giacinto Cifelli <gciofono@gmail.com> | 2020-05-14 09:48:35 +0200 |
---|---|---|
committer | Giacinto Cifelli <gciofono@gmail.com> | 2020-05-14 09:48:35 +0200 |
commit | bbd39a457ce2949dd167f9c2e01eecf6a9e14716 (patch) | |
tree | 54302253862d05363a5984f71326ef12c2207242 | |
parent | d33a883be4b8f0f273b91da7f21912ae2fb434de (diff) |
configure.ac: check for xsltproc
-rw-r--r-- | configure.ac | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 849f2cb8..58f44621 100644 --- a/configure.ac +++ b/configure.ac @@ -46,6 +46,9 @@ AM_PROG_CC_C_O AC_PROG_INSTALL AC_PROG_MKDIR_P +AC_CHECK_PROG(XSLTPROC_CHECK,xsltproc,yes) +AS_IF([test x"$XSLTPROC_CHECK" != x"yes"], [AC_MSG_ERROR([Please install xsltproc before configuring.])]) + dnl Initialize libtool LT_PREREQ([2.2]) LT_INIT([disable-static]) |