svn commit: r424094 - head/editors/neovim/files

John Marino marino at FreeBSD.org
Mon Oct 17 05:13:36 UTC 2016


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>


More information about the svn-ports-head mailing list