Skip to content

Commit 817e039

Browse files
committedNov 21, 2022
8297352: configure should check pandoc version
Reviewed-by: erikj
1 parent 15e2e28 commit 817e039

File tree

1 file changed

+17
-5
lines changed

1 file changed

+17
-5
lines changed
 

‎make/autoconf/basic_tools.m4

+17-5
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,11 @@
2323
# questions.
2424
#
2525

26+
###############################################################################
27+
# It is recommended to use exactly this version of pandoc, especially for
28+
# re-generating checked in html files
29+
RECOMMENDED_PANDOC_VERSION=2.19.2
30+
2631
###############################################################################
2732
# Setup the most fundamental tools that relies on not much else to set up,
2833
# but is used by much of the early bootstrap code.
@@ -426,22 +431,29 @@ AC_DEFUN_ONCE([BASIC_SETUP_PANDOC],
426431
[
427432
UTIL_LOOKUP_PROGS(PANDOC, pandoc)
428433
429-
PANDOC_MARKDOWN_FLAG="markdown"
430-
if test -n "$PANDOC"; then
431-
AC_MSG_CHECKING(if the pandoc smart extension needs to be disabled for markdown)
434+
if test "x$PANDOC" != x; then
435+
AC_MSG_CHECKING([for pandoc version])
436+
PANDOC_VERSION=`$PANDOC --version 2>&1 | $HEAD -1 | $CUT -d " " -f 2`
437+
AC_MSG_RESULT([$PANDOC_VERSION])
438+
439+
if test "x$PANDOC_VERSION" != x$RECOMMENDED_PANDOC_VERSION; then
440+
AC_MSG_WARN([pandoc is version $PANDOC_VERSION, not the recommended version $RECOMMENDED_PANDOC_VERSION])
441+
fi
442+
443+
PANDOC_MARKDOWN_FLAG="markdown"
444+
AC_MSG_CHECKING([if the pandoc smart extension needs to be disabled for markdown])
432445
if $PANDOC --list-extensions | $GREP -q '\+smart'; then
433446
AC_MSG_RESULT([yes])
434447
PANDOC_MARKDOWN_FLAG="markdown-smart"
435448
else
436449
AC_MSG_RESULT([no])
437450
fi
438-
fi
439451
440-
if test -n "$PANDOC"; then
441452
ENABLE_PANDOC="true"
442453
else
443454
ENABLE_PANDOC="false"
444455
fi
456+
445457
AC_SUBST(ENABLE_PANDOC)
446458
AC_SUBST(PANDOC_MARKDOWN_FLAG)
447459
])

0 commit comments

Comments
 (0)
Please sign in to comment.