Skip to content

Commit

Permalink
Merge pull request #3330 from citrus-it/screenr46
Browse files Browse the repository at this point in the history
screen - update from 4.9.0 to 4.9.1 (r151046)
  • Loading branch information
hadfl authored Aug 18, 2023
2 parents d9e6ba0 + 31ee136 commit b5ef1d1
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 20 deletions.
4 changes: 2 additions & 2 deletions build/screen/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@
# }}}
#
# Copyright 2017 OmniTI Computer Consulting, Inc. All rights reserved.
# Copyright 2022 OmniOS Community Edition (OmniOSce) Association.
# Copyright 2023 OmniOS Community Edition (OmniOSce) Association.

. ../../lib/build.sh

PROG=screen
VER=4.9.0
VER=4.9.1
PKG=terminal/screen
SUMMARY="GNU Screen terminal multiplexer"
DESC="A full-screen window manager that multiplexes a physical "
Expand Down
2 changes: 1 addition & 1 deletion build/screen/patches/Makefile.in.patch
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
diff -wpruN '--exclude=*.orig' a~/Makefile.in a/Makefile.in
diff -wpruN --no-dereference '--exclude=*.orig' a~/Makefile.in a/Makefile.in
--- a~/Makefile.in 1970-01-01 00:00:00
+++ a/Makefile.in 1970-01-01 00:00:00
@@ -17,7 +17,7 @@ datarootdir = @datarootdir@
Expand Down
24 changes: 12 additions & 12 deletions build/screen/patches/ncurses.patch
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,24 @@ This patch makes configure check for ncurses before curses so that screen
can take advantage of the latest terminal type information from our
ncurses package.

diff -wpruN '--exclude=*.orig' a~/configure.ac a/configure.ac
diff -wpruN --no-dereference '--exclude=*.orig' a~/configure.ac a/configure.ac
--- a~/configure.ac 1970-01-01 00:00:00
+++ a/configure.ac 1970-01-01 00:00:00
@@ -626,7 +626,7 @@ dnl
AC_CHECKING(for tgetent)
AC_TRY_LINK(,tgetent((char *)0, (char *)0);,,
@@ -669,7 +669,7 @@ AC_TRY_LINK([
tgetent((char *)0, (char *)0);
],,
olibs="$LIBS"
-LIBS="-lcurses $olibs"
+LIBS="-lncurses $olibs"
AC_CHECKING(libcurses)
AC_TRY_LINK(,[
#ifdef __hpux
@@ -647,7 +647,7 @@ AC_TRY_LINK(,tgetent((char *)0, (char *)
LIBS="-ltinfow $olibs"
AC_CHECKING(libtinfow)
AC_TRY_LINK(,tgetent((char *)0, (char *)0);,,
AC_TRY_LINK([
#include <curses.h>
@@ -713,7 +713,7 @@ AC_TRY_LINK([
],[
tgetent((char *)0, (char *)0);
],,
-LIBS="-lncurses $olibs"
+LIBS="-lcurses $olibs"
AC_CHECKING(libncurses)
AC_TRY_LINK(,tgetent((char *)0, (char *)0);,,
LIBS="-ltinfo $olibs"
AC_TRY_LINK([
#include <curses.h>
10 changes: 5 additions & 5 deletions build/screen/patches/unneededlibs.patch
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
diff -wpruN '--exclude=*.orig' a~/configure.ac a/configure.ac
diff -wpruN --no-dereference '--exclude=*.orig' a~/configure.ac a/configure.ac
--- a~/configure.ac 1970-01-01 00:00:00
+++ a/configure.ac 1970-01-01 00:00:00
@@ -188,7 +188,7 @@ AC_EGREP_CPP(yes,
@@ -189,7 +189,7 @@ AC_EGREP_CPP(yes,
], AC_NOTE(- you have a SVR4 system) AC_DEFINE(SVR4) svr4=1)
if test -n "$svr4" ; then
oldlibs="$LIBS"
-LIBS="$LIBS -lelf"
+LIBS="$LIBS"
AC_CHECKING(SVR4)
AC_TRY_LINK([#include <utmpx.h>
],,
@@ -204,7 +204,7 @@ AC_EGREP_CPP(YES_IS_DEFINED,
AC_TRY_LINK([
#include <utmpx.h>
@@ -206,7 +206,7 @@ AC_EGREP_CPP(YES_IS_DEFINED,
[#if defined(SVR4) && defined(sun)
YES_IS_DEFINED;
#endif
Expand Down

0 comments on commit b5ef1d1

Please sign in to comment.