diff options
author | Kurt Jaeger <pi@FreeBSD.org> | 2016-08-29 18:37:40 +0000 |
---|---|---|
committer | Kurt Jaeger <pi@FreeBSD.org> | 2016-08-29 18:37:40 +0000 |
commit | f1e794db90ee2873a3aebd4dec19e104401fe8ec (patch) | |
tree | 8fd463b0cc0d533c931e5e0aaf68fb8a32370b08 /lang/rexx-regina/files/patch-regutil_regscreenux.c | |
parent | www/nextcloud: Fix USE_PHP=openssl snafu (diff) |
lang/rexx-regina: 3.8.2 -> 3.9.1
- submitter becomes maintainer
- Makefile tidied, and passes portlint -C
- rc.d file corrected; now passes rclint
- port now installs documentation (PDF), not previously included
- added DOCS option, controlling installation of above
- files in /usr/local/share now in directories that actually match the
name of the port
PR: 212242
Submitted by: bob@eager.cx
Notes
Notes:
svn path=/head/; revision=421087
Diffstat (limited to 'lang/rexx-regina/files/patch-regutil_regscreenux.c')
-rw-r--r-- | lang/rexx-regina/files/patch-regutil_regscreenux.c | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/lang/rexx-regina/files/patch-regutil_regscreenux.c b/lang/rexx-regina/files/patch-regutil_regscreenux.c new file mode 100644 index 000000000000..583d619759bb --- /dev/null +++ b/lang/rexx-regina/files/patch-regutil_regscreenux.c @@ -0,0 +1,40 @@ +--- regutil/regscreenux.c.orig 2012-08-08 01:23:45 UTC ++++ regutil/regscreenux.c +@@ -21,6 +21,8 @@ + * $Header: /opt/cvs/Regina/regutil/regscreenux.c,v 1.9 2012/08/08 01:23:45 mark Exp $ + */ + #include "regutil.h" ++#include </usr/include/strings.h> ++ + #ifdef USE_TERMCAP_DB + # ifdef HAVE_NCURSES_H + # include <ncurses.h> +@@ -91,7 +93,7 @@ rxfunc(syscls) + + if (!*clr) { + sethandles(); +- clr = tgetstr("cl", &clrbuf); ++ clr = tgetstr("cl", (char **) &clrbuf); + } + #else + /* ansi terminal control for clearing the screen should work with any +@@ -128,7 +130,7 @@ rxfunc(syscurpos) + #ifdef USE_TERMCAP_DB + if (!*cpos) { + sethandles(); +- cpos = tgetstr("cm", &cposbuf); ++ cpos = tgetstr("cm", (char **) &cposbuf); + } + #endif + +@@ -179,8 +181,8 @@ rxfunc(syscurstate) + if (!*css) { + char *pcss = css; + sethandles(); +- pcsson = tgetstr("ve", &css); +- pcssoff = tgetstr("vi", &css); ++ pcsson = tgetstr("ve", (char **) &css); ++ pcssoff = tgetstr("vi", (char **) &css); + } + #endif + |