vis
a vi-like editor based on Plan 9's structural regular expressions
git clone https://9o.is/git/vis.git
commit 6ee32d4c4a6477669cfdba399ea99cdd898a191f parent 1c10ea68036c5fde92ecc3ea664b6e4662bd3925 Author: Michael Neumann <mneumann@ntecs.de> Date: Sat, 17 Nov 2018 16:44:39 +0100 Fix configure on DragonFly BSD Diffstat:
| M | configure | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configure b/configure @@ -226,7 +226,7 @@ LDFLAGS_STD="-lc" OS=$(uname) case "$OS" in -FreeBSD) CFLAGS_STD="$CFLAGS_STD -D_BSD_SOURCE -D__BSD_VISIBLE=1" ;; +FreeBSD|DragonFly) CFLAGS_STD="$CFLAGS_STD -D_BSD_SOURCE -D__BSD_VISIBLE=1" ;; *BSD) CFLAGS_STD="$CFLAGS_STD -D_BSD_SOURCE" ;; Darwin) CFLAGS_STD="$CFLAGS_STD -D_DARWIN_C_SOURCE" ;; AIX) CFLAGS_STD="$CFLAGS_STD -D_ALL_SOURCE" ;;