mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 17:59:20 -04:00
Update 4.2.1 --> 4.3.1
This commit is contained in:
parent
f8edd1bd9c
commit
6170c01bdd
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=391023
5 changed files with 3 additions and 45 deletions
|
@ -2,8 +2,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
PORTNAME= screen
|
||||
PORTVERSION= 4.2.1
|
||||
PORTREVISION= 5
|
||||
PORTVERSION= 4.3.1
|
||||
CATEGORIES= sysutils
|
||||
MASTER_SITES= http://ftp.gnu.org/gnu/screen/ \
|
||||
ftp://ftp.gnu.org/gnu/screen/ \
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
SHA256 (screen-4.2.1.tar.gz) = 5468545047e301d2b3579f9d9ce00466d14a7eec95ce806e3834a3d6b0b9b080
|
||||
SIZE (screen-4.2.1.tar.gz) = 1062485
|
||||
SHA256 (screen-4.3.1.tar.gz) = fa4049f8aee283de62e283d427f2cfd35d6c369b40f7f45f947dbfd915699d63
|
||||
SIZE (screen-4.3.1.tar.gz) = 845958
|
||||
|
|
|
@ -1,10 +0,0 @@
|
|||
--- ansi.c.orig 2014-04-26 04:32:54.000000000 -0700
|
||||
+++ ansi.c 2014-04-29 19:08:26.631287189 -0700
|
||||
@@ -569,6 +569,7 @@
|
||||
case '0': case '1': case '2': case '3': case '4':
|
||||
case '5': case '6': case '7': case '8': case '9':
|
||||
if (curr->w_NumArgs < MAXARGS)
|
||||
+ if (curr->w_NumArgs >= 0 && curr->w_NumArgs < MAXARGS)
|
||||
{
|
||||
if (curr->w_args[curr->w_NumArgs] < 100000000)
|
||||
curr->w_args[curr->w_NumArgs] =
|
|
@ -1,27 +1,5 @@
|
|||
--- os.h.orig 2014-04-26 03:58:35.000000000 -0700
|
||||
+++ os.h 2014-04-29 19:16:31.730773575 -0700
|
||||
@@ -252,7 +252,11 @@
|
||||
#if defined(UTMPOK) || defined(BUGGYGETLOGIN)
|
||||
# if defined(SVR4) && !defined(DGUX) && !defined(__hpux) && !defined(linux)
|
||||
# include <utmpx.h>
|
||||
-# define UTMPFILE UTMPX_FILE
|
||||
+# ifdef UTMPX_FILE
|
||||
+# define UTMPFILE UTMPX_FILE
|
||||
+# else
|
||||
+# define UTMPFILE "/nonexistent"
|
||||
+# endif
|
||||
# define utmp utmpx
|
||||
# define getutent getutxent
|
||||
# define getutid getutxid
|
||||
@@ -260,7 +264,7 @@
|
||||
# define pututline pututxline
|
||||
# define setutent setutxent
|
||||
# define endutent endutxent
|
||||
-# define ut_time ut_xtime
|
||||
+# define ut_time ut_tv.tv_sec
|
||||
# else /* SVR4 */
|
||||
# include <utmp.h>
|
||||
# endif /* SVR4 */
|
||||
@@ -524,6 +528,6 @@
|
||||
/* Changing those you won't be able to attach to your old sessions
|
||||
* when changing those values in official tree don't forget to bump
|
||||
|
|
|
@ -9,12 +9,3 @@
|
|||
{
|
||||
winmsg_rendpos[--r] = pn - buf;
|
||||
continue;
|
||||
@@ -2271,8 +2271,6 @@
|
||||
while (i-- > 0)
|
||||
*pn-- = ' ';
|
||||
numpad--;
|
||||
- if (r && p - buf == winmsg_rendpos[r - 1])
|
||||
- winmsg_rendpos[--r] = pn - buf;
|
||||
}
|
||||
}
|
||||
return pn2;
|
||||
|
|
Loading…
Add table
Reference in a new issue