We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 193279d commit 17fef6cCopy full SHA for 17fef6c
configure
@@ -298,6 +298,16 @@ then
298
probe CFG_NODE nodejs
299
fi
300
301
+if [ ! -z "$CFG_PANDOC" ]
302
+then
303
+ PV=$(pandoc --version | awk '/^pandoc/ {print $2}')
304
+ if [ "$PV" \< "1.8" ]
305
+ then
306
+ step_msg "pandoc $PV is too old. disabling"
307
+ BAD_PANDOC=1
308
+ fi
309
+fi
310
+
311
if [ -z "$CFG_ENABLE_CLANG" -a -z "$CFG_GCC" ]
312
then
313
err "either clang or gcc is required"
@@ -616,6 +626,13 @@ then
616
626
putvar CFG_DISABLE_MANAGE_SUBMODULES
617
627
618
628
629
+# Ditto for pandoc
630
+if [ ! -z $BAD_PANDOC ]
631
632
+ CFG_PANDOC=
633
+ putvar CFG_PANDOC
634
635
619
636
if head -n 1 ${CFG_SRC_DIR}src/snapshots.txt | grep -q '^T'
620
637
621
638
CFG_IN_TRANSITION=1
0 commit comments