diff options
| author | Mitchell Riedstra <mitch@riedstra.dev> | 2026-01-13 17:49:53 -0500 |
|---|---|---|
| committer | Mitchell Riedstra <mitch@riedstra.dev> | 2026-01-13 17:49:53 -0500 |
| commit | 3aad7f9f9f2b72551d359033783cb2d95a691b82 (patch) | |
| tree | f51796fb5fb3f6ad8345efb3a2aec387e8edc746 /configure | |
| parent | 43f321d18256842c9aae29faeafa6815c579a9be (diff) | |
| download | vis-3aad7f9f9f2b72551d359033783cb2d95a691b82.tar.gz vis-3aad7f9f9f2b72551d359033783cb2d95a691b82.tar.xz | |
Diffstat (limited to 'configure')
| -rwxr-xr-x | configure | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -25,6 +25,7 @@ Fine tuning of the installation directories: Optional features: --enable-curses build with Curses terminal output [yes] + --enable-termbox2 build with termbox2 terminal output, disabling curses [no] --enable-lua build with Lua support [auto] --enable-lpeg-static build with LPeg static linking [auto] --enable-tre build with TRE regex support [auto] @@ -141,6 +142,8 @@ case "$arg" in --disable-help|--enable-help=no) help=no ;; --enable-curses|--enable-curses=yes) curses=yes ;; --disable-curses|--enable-curses=no) curses=no ;; +--enable-termbox2|--enable-termbox2=yes) curses=no; export CFLAGS_TERMBOX2='-DCONFIG_TERMBOX2' ;; +--disable-termbox2|--enable-termbox2=no) export CFLAGS_TERMBOX2='' ;; --enable-lua|--enable-lua=yes) lua=yes ;; --disable-lua|--enable-lua=no) lua=no ;; --enable-lpeg-static|--enable-lpeg-static=yes) lpeg=yes ;; @@ -597,6 +600,7 @@ cat << EOF CFLAGS_TERMKEY = $CFLAGS_TERMKEY LDFLAGS_TERMKEY = $LDFLAGS_TERMKEY CFLAGS_CURSES = $CFLAGS_CURSES +CFLAGS_TERMBOX2 = $CFLAGS_TERMBOX2 LDFLAGS_CURSES = $LDFLAGS_CURSES CFLAGS_TRE = $CFLAGS_TRE LDFLAGS_TRE = $LDFLAGS_TRE |
