From a7ed7cd4e92b9f9e4a88244086d21cc18e37e088 Mon Sep 17 00:00:00 2001 From: Cem Keylan Date: Sun, 23 Aug 2020 00:27:53 +0300 Subject: nvi: add new package at 1.81.6 --- editors/nvi/patches/nvi-20-glibc_has_grantpt.patch | 29 ++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 editors/nvi/patches/nvi-20-glibc_has_grantpt.patch (limited to 'editors/nvi/patches/nvi-20-glibc_has_grantpt.patch') diff --git a/editors/nvi/patches/nvi-20-glibc_has_grantpt.patch b/editors/nvi/patches/nvi-20-glibc_has_grantpt.patch new file mode 100644 index 0000000..967951e --- /dev/null +++ b/editors/nvi/patches/nvi-20-glibc_has_grantpt.patch @@ -0,0 +1,29 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## 20glibc_has_grantpt.dpatch by +## +## DP: glibc has grantpt(), so only hceck for HAVE_SYS5_PTY +## DP: on non-glibc installations. + +@DPATCH@ +diff -Naur nvi-1.81.6.orig/ex/ex_script.c nvi-1.81.6/ex/ex_script.c +--- nvi-1.81.6.orig/ex/ex_script.c 2007-11-18 17:41:42.000000000 +0100 ++++ nvi-1.81.6/ex/ex_script.c 2008-05-01 18:24:06.000000000 +0200 +@@ -23,7 +23,8 @@ + #include + #endif + #include +-#ifdef HAVE_SYS5_PTY ++/* glibc2.1 defines grantpt but there is no stropts.h */ ++#if defined(HAVE_SYS5_PTY) && !defined(__GLIBC__) + #include + #endif + #include +@@ -664,7 +665,7 @@ + F_CLR(gp, G_SCRWIN); + } + +-#ifdef HAVE_SYS5_PTY ++#if defined(HAVE_SYS5_PTY) && !defined(__GLIBC__) + static int ptys_open __P((int, char *)); + static int ptym_open __P((char *)); + -- cgit v1.2.3