Date: Mon, 17 Oct 2016 05:13:35 +0000 (UTC) From: John Marino <marino@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r424094 - head/editors/neovim/files Message-ID: <201610170513.u9H5DZq9059112@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: marino Date: Mon Oct 17 05:13:35 2016 New Revision: 424094 URL: https://svnweb.freebsd.org/changeset/ports/424094 Log: 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 Added: head/editors/neovim/files/patch-src_nvim_os_pty__process__unix.c (contents, props changed) Added: head/editors/neovim/files/patch-src_nvim_os_pty__process__unix.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/editors/neovim/files/patch-src_nvim_os_pty__process__unix.c Mon Oct 17 05:13:35 2016 (r424094) @@ -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>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201610170513.u9H5DZq9059112>