summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorMukund Sivaraman <muks@banu.com>2010-01-18 17:35:51 +0530
committerMukund Sivaraman <muks@banu.com>2010-01-18 17:35:51 +0530
commit8631a9d531d72b69b22879fe05d01a5e9b73e097 (patch)
tree0b8a178164a615d18b657068638f4e685bf77129 /config
parentd396e5592b9caabff12f5d460a771469eef18eba (diff)
downloadtinyproxy-8631a9d531d72b69b22879fe05d01a5e9b73e097.tar.gz
tinyproxy-8631a9d531d72b69b22879fe05d01a5e9b73e097.zip
Update the AUTHORS file
This uses an XML based system now to store author names. We also keep a pre-generated AUTHORS file checked in.
Diffstat (limited to '')
-rw-r--r--configure.ac6
1 files changed, 6 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 2542849..2e3d15e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -282,6 +282,12 @@ AC_SUBST(CPPFLAGS)
AC_SUBST(LIBS)
AC_SUBST(ADDITIONAL_OBJECTS)
+# Check for xml tools
+AC_PATH_PROG(XMLLINT, xmllint, no)
+AM_CONDITIONAL(HAVE_XMLLINT, test "x$XMLLINT" != "xno")
+AC_PATH_PROG(XSLTPROC, xsltproc, no)
+AM_CONDITIONAL(HAVE_XSLTPROC, test "x$XSLTPROC" != "xno")
+
# Check for asciidoc
AC_PATH_PROG(A2X, a2x, no)
AM_CONDITIONAL(HAVE_A2X, test "x$A2X" != "xno")