vis

a vi-like editor based on Plan 9's structural regular expressions

git clone https://9o.is/git/vis.git

commit c191ff1f36a63658affc433878c53f2454b1dfe2
parent 06ea1fe673ae48f859c8d8a3bc1f868f11680c4c
Author: Marc André Tanner <mat@brain-dump.org>
Date:   Thu, 23 Feb 2017 09:03:57 +0100

build: skip configure check for built-in lpeg if lua is not found

 $ ./configure --disable-lua

will no longer look for liblpeg.

Diffstat:
Mconfigure | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configure b/configure @@ -465,7 +465,7 @@ fi CONFIG_LPEG=0 -if test "$lpeg" != "no" ; then +if test $CONFIG_LUA -eq 1 -a "$lpeg" != "no" ; then printf "checking for liblpeg ... "