From: Marko Kreen Date: Thu, 19 Jan 2012 09:57:41 +0000 (+0200) Subject: configure: bump asciidoc req to >= 8.4 X-Git-Tag: pgbouncer_1_5_1_rc1~13 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5395e9f0c5de9119630e9d62c9741066a4965a4c;p=pgbouncer configure: bump asciidoc req to >= 8.4 Seems older ones do not parse current docs anymore. --- diff --git a/configure.ac b/configure.ac index 5703b01..c430ec6 100644 --- a/configure.ac +++ b/configure.ac @@ -11,15 +11,15 @@ AC_USUAL_INIT dnl Checks for programs. AC_USUAL_PROGRAM_CHECK -dnl asciidoc >= 8.2 +dnl asciidoc >= 8.4 AC_CHECK_PROGS(ASCIIDOC, asciidoc) if test -n "$ASCIIDOC"; then - AC_MSG_CHECKING([for asciidoc version >= 8.2]) + AC_MSG_CHECKING([for asciidoc version >= 8.4]) ver=`$ASCIIDOC --version 2>&1 | sed -e 's/asciidoc //'` case "$ver" in dnl hack to make possible to use [, ] in regex changequote({, })dnl - [0-7].*|8.[01]|8.[01].*) + [0-7].*|8.[0-3]|8.[0-3].*) changequote([, ])dnl AC_MSG_RESULT([$ver, too old]) ASCIIDOC=""