diff options
author | marino <marino@FreeBSD.org> | 2016-10-17 13:13:35 +0800 |
---|---|---|
committer | marino <marino@FreeBSD.org> | 2016-10-17 13:13:35 +0800 |
commit | bffef91b2e1601de9eb6770aa5c1e05455df6135 (patch) | |
tree | c1850f235fe523bb776ea9ed6d3af9cbe872d22d /editors | |
parent | cf89db96d74f899a87ee4b28d8fbcc3fc0fa837d (diff) | |
download | freebsd-ports-gnome-bffef91b2e1601de9eb6770aa5c1e05455df6135.tar.gz freebsd-ports-gnome-bffef91b2e1601de9eb6770aa5c1e05455df6135.tar.zst freebsd-ports-gnome-bffef91b2e1601de9eb6770aa5c1e05455df6135.zip |
editors/neovim: Return pty process patch to restore build on DF
The pty process file was relocated and renamed, so the previous patch
no longer applied and was removed with the last update. Regenerate the
patch to restore build on DragonFly.
Approved by: DragonFly blanket
Diffstat (limited to 'editors')
-rw-r--r-- | editors/neovim/files/patch-src_nvim_os_pty__process__unix.c | 11 |
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> |