vis
a vi-like editor based on Plan 9's structural regular expressions
git clone https://9o.is/git/vis.git
commit a5a936d91170235653596bdfdf5a4a7df281472a parent 7747bb1a6c548c3a549fad28bd3acf87d69ede6c Author: Quentin Rameau <quinq@fifth.space> Date: Sat, 3 Feb 2018 17:29:24 +0100 configure: fix static lpeg detection messages Diffstat:
| M | configure | | | 9 | +++++---- |
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/configure b/configure @@ -26,7 +26,7 @@ Fine tuning of the installation directories: Optional features: --enable-curses build with Curses terminal output [yes] --enable-lua build with Lua support [auto] - --enable-lpeg-static build with support for statically linked LPeg [auto] + --enable-lpeg-static build with LPeg static linking [auto] --enable-tre build with TRE regex support [auto] --enable-selinux build with SELinux support [auto] --enable-acl build with POSIX ACL support [auto] @@ -482,7 +482,7 @@ CONFIG_LPEG=0 if test $CONFIG_LUA -eq 1 -a "$lpeg" != "no" ; then - printf "checking for statically linked liblpeg ... " + printf "checking for Lua statically linked liblpeg... " cat > "$tmpc" <<EOF #include <lua.h> @@ -511,8 +511,9 @@ EOF CONFIG_LPEG=1 printf "yes\n" else + printf "no\n" for liblpeg in lua5.3-lpeg lua5.2-lpeg; do - printf "\n checking for %s... " "$liblpeg" + printf " checking for static %s... " "$liblpeg" if test "$have_pkgconfig" = "yes" ; then CFLAGS_LPEG=$(pkg-config --cflags $liblpeg 2>/dev/null) LDFLAGS_LPEG=$(pkg-config --libs $liblpeg 2>/dev/null) @@ -524,7 +525,7 @@ EOF printf "yes\n" break else - printf "no" + printf "no\n" CFLAGS_LPEG="" LDFLAGS_LPEG="" fi