aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2017-03-15 21:04:39 +0100
committerMarc André Tanner <mat@brain-dump.org>2017-03-15 22:42:05 +0100
commite3226dc0f5bbb20011ff955de3255d9205a395df (patch)
tree991e2ea3199eb673bc252ec1cd93eb72a2fa6392
parent6a5e29689cf726bfc1291a437e9ccfe8c22d50a3 (diff)
downloadvis-e3226dc0f5bbb20011ff955de3255d9205a395df.tar.gz
vis-e3226dc0f5bbb20011ff955de3255d9205a395df.tar.xz
build: clarify lpeg related configure option
-rwxr-xr-xconfigure8
1 files changed, 4 insertions, 4 deletions
diff --git a/configure b/configure
index 29bb5c5..a8d670f 100755
--- a/configure
+++ b/configure
@@ -25,7 +25,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 build with support for statically linking to LPeg [auto]
+ --enable-lpeg-static build with support for statically linked LPeg [auto]
--enable-tre build with TRE regex support [auto]
--enable-selinux build with SELinux support [auto]
--enable-acl build with POSIX ACL support [auto]
@@ -141,8 +141,8 @@ case "$arg" in
--disable-curses|--enable-curses=no) curses=no ;;
--enable-lua|--enable-lua=yes) lua=yes ;;
--disable-lua|--enable-lua=no) lua=no ;;
---enable-lpeg|--enable-lpeg=yes) lpeg=yes ;;
---disable-lpeg|--enable-lpeg=no) lpeg=no ;;
+--enable-lpeg-static|--enable-lpeg-static=yes) lpeg=yes ;;
+--disable-lpeg-static|--enable-lpeg-static=no) lpeg=no ;;
--enable-tre|--enable-tre=yes) tre=yes ;;
--disable-tre|--enable-tre=no) tre=no ;;
--enable-selinux|--enable-selinux=yes) selinux=yes ;;
@@ -485,7 +485,7 @@ CONFIG_LPEG=0
if test $CONFIG_LUA -eq 1 -a "$lpeg" != "no" ; then
- printf "checking for liblpeg ... "
+ printf "checking for statically linked liblpeg ... "
cat > "$tmpc" <<EOF
#include <lua.h>