summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wendler <polynomial-c@gentoo.org>2017-03-13 14:03:26 +0100
committerLars Wendler <polynomial-c@gentoo.org>2017-03-13 14:03:26 +0100
commit0a73481226e17813598f9bd19388a1108242ab08 (patch)
treef9090a5247378d1a08f6a25ba29791f660e7d39b /app-misc/screen/files
parentdev-games/physfs: Removed old. (diff)
downloadgentoo-0a73481226e17813598f9bd19388a1108242ab08.tar.gz
gentoo-0a73481226e17813598f9bd19388a1108242ab08.tar.bz2
gentoo-0a73481226e17813598f9bd19388a1108242ab08.zip
app-misc/screen: Removed old.
Package-Manager: Portage-2.3.4, Repoman-2.3.2
Diffstat (limited to 'app-misc/screen/files')
-rw-r--r--app-misc/screen/files/screen-4.3.1-ansi.c.patch37
-rw-r--r--app-misc/screen/files/screen-4.5.0-logfile-access-revert.patch17
-rw-r--r--app-misc/screen/files/screen-4.5.0-solaris-PATH_MAX.patch12
3 files changed, 0 insertions, 66 deletions
diff --git a/app-misc/screen/files/screen-4.3.1-ansi.c.patch b/app-misc/screen/files/screen-4.3.1-ansi.c.patch
deleted file mode 100644
index 24a1167b6cf7..000000000000
--- a/app-misc/screen/files/screen-4.3.1-ansi.c.patch
+++ /dev/null
@@ -1,37 +0,0 @@
---- a/ansi.c
-+++ b/ansi.c
-@@ -2502,13 +2502,13 @@
- return;
- if (n > 0)
- {
-+ if (ye - ys + 1 < n)
-+ n = ye - ys + 1;
- if (n > 256)
- {
- MScrollV(p, n - 256, ys, ye, bce);
- n = 256;
- }
-- if (ye - ys + 1 < n)
-- n = ye - ys + 1;
- #ifdef COPY_PASTE
- if (compacthist)
- {
-@@ -2562,15 +2562,14 @@
- }
- else
- {
-+ n = -n;
-+ if (ye - ys + 1 < n)
-+ n = ye - ys + 1;
- if (n < -256)
- {
- MScrollV(p, n + 256, ys, ye, bce);
- n = -256;
- }
-- n = -n;
-- if (ye - ys + 1 < n)
-- n = ye - ys + 1;
--
- ml = p->w_mlines + ye;
- /* Clear lines */
- for (i = ye; i > ye - n; i--, ml--)
diff --git a/app-misc/screen/files/screen-4.5.0-logfile-access-revert.patch b/app-misc/screen/files/screen-4.5.0-logfile-access-revert.patch
deleted file mode 100644
index ec3fb6a4cf5d..000000000000
--- a/app-misc/screen/files/screen-4.5.0-logfile-access-revert.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-Revert commit 5460f5d28c01a9a58e021eb1dffef2965e629d58
-
---- b/screen.c
-+++ a/screen.c
-@@ -670,12 +670,6 @@ int main(int ac, char** av)
- Panic(0, "-L: logfile name can not start with \"-\" symbol");
- if (strlen(screenlogfile) > PATH_MAX)
- Panic(0, "-L: logfile name too long. (max. %d char)", PATH_MAX);
--
-- FILE *w_check;
-- if ((w_check = fopen(screenlogfile, "w")) == NULL)
-- Panic(0, "-L: logfile name access problem");
-- else
-- fclose(w_check);
- }
- nwin_options.Lflag = 1;
- break;
diff --git a/app-misc/screen/files/screen-4.5.0-solaris-PATH_MAX.patch b/app-misc/screen/files/screen-4.5.0-solaris-PATH_MAX.patch
deleted file mode 100644
index 1fafcf9a87c2..000000000000
--- a/app-misc/screen/files/screen-4.5.0-solaris-PATH_MAX.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-On Solaris one needs to include limits.h in order to use PATH_MAX
-
---- screen-4.5.0/screen.c
-+++ screen-4.5.0/screen.c
-@@ -44,6 +44,7 @@
- #endif
- #include <ctype.h>
- #include <fcntl.h>
-+#include <limits.h>
-
- #ifdef sgi
- # include <sys/sysmacros.h>