aboutsummaryrefslogtreecommitdiffstats
path: root/editors
diff options
context:
space:
mode:
Diffstat (limited to 'editors')
-rw-r--r--editors/neovim/files/patch-src_nvim_os_pty__process__unix.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/editors/neovim/files/patch-src_nvim_os_pty__process__unix.c b/editors/neovim/files/patch-src_nvim_os_pty__process__unix.c
new file mode 100644
index 000000000000..7dedc08e1500
--- /dev/null
+++ b/editors/neovim/files/patch-src_nvim_os_pty__process__unix.c
@@ -0,0 +1,11 @@
+--- src/nvim/os/pty_process_unix.c.orig 2016-08-22 02:14:28 UTC
++++ src/nvim/os/pty_process_unix.c
+@@ -9,7 +9,7 @@
+ #include <sys/ioctl.h>
+
+ // forkpty is not in POSIX, so headers are platform-specific
+-#if defined(__FreeBSD__)
++#if defined(__FreeBSD__) || defined __DragonFly__
+ # include <libutil.h>
+ #elif defined(__OpenBSD__) || defined(__NetBSD__) || defined(__APPLE__)
+ # include <util.h>