|
23 | 23 | # questions.
|
24 | 24 | #
|
25 | 25 |
|
| 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 | + |
26 | 31 | ###############################################################################
|
27 | 32 | # Setup the most fundamental tools that relies on not much else to set up,
|
28 | 33 | # but is used by much of the early bootstrap code.
|
@@ -426,22 +431,29 @@ AC_DEFUN_ONCE([BASIC_SETUP_PANDOC],
|
426 | 431 | [
|
427 | 432 | UTIL_LOOKUP_PROGS(PANDOC, pandoc)
|
428 | 433 |
|
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]) |
432 | 445 | if $PANDOC --list-extensions | $GREP -q '\+smart'; then
|
433 | 446 | AC_MSG_RESULT([yes])
|
434 | 447 | PANDOC_MARKDOWN_FLAG="markdown-smart"
|
435 | 448 | else
|
436 | 449 | AC_MSG_RESULT([no])
|
437 | 450 | fi
|
438 |
| - fi |
439 | 451 |
|
440 |
| - if test -n "$PANDOC"; then |
441 | 452 | ENABLE_PANDOC="true"
|
442 | 453 | else
|
443 | 454 | ENABLE_PANDOC="false"
|
444 | 455 | fi
|
| 456 | +
|
445 | 457 | AC_SUBST(ENABLE_PANDOC)
|
446 | 458 | AC_SUBST(PANDOC_MARKDOWN_FLAG)
|
447 | 459 | ])
|
0 commit comments