summaryrefslogtreecommitdiff
path: root/app-editors/hexcurse/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2021-05-22 07:31:18 +0100
committerV3n3RiX <venerix@redcorelinux.org>2021-05-22 07:31:18 +0100
commit908778078736bd36f7a60a2d576d415cb8e000fa (patch)
treec6a4796c48b608c14dc7e9674cdbd38f905e3c15 /app-editors/hexcurse/files
parent185fa19bbf68a4d4dca534d2b46729207a177f16 (diff)
gentoo resync : 22.05.2021
Diffstat (limited to 'app-editors/hexcurse/files')
-rw-r--r--app-editors/hexcurse/files/1.55-gcc.patch11
-rw-r--r--app-editors/hexcurse/files/1.55-tinfo.patch13
2 files changed, 0 insertions, 24 deletions
diff --git a/app-editors/hexcurse/files/1.55-gcc.patch b/app-editors/hexcurse/files/1.55-gcc.patch
deleted file mode 100644
index 22b996b3437d..000000000000
--- a/app-editors/hexcurse/files/1.55-gcc.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/src/getopt.c
-+++ b/src/getopt.c
-@@ -36,8 +36,6 @@
- * enables hexcurse to be compiled with SGI's proprietary compiler */
- #ifdef _SGIAPI
- #include <alloca.h>
--#else
--char *alloca ();
- #endif
- #define __alloca alloca
- /* end of modification */
diff --git a/app-editors/hexcurse/files/1.55-tinfo.patch b/app-editors/hexcurse/files/1.55-tinfo.patch
deleted file mode 100644
index f258c06f1cf7..000000000000
--- a/app-editors/hexcurse/files/1.55-tinfo.patch
+++ /dev/null
@@ -1,13 +0,0 @@
---- a/configure.in
-+++ b/configure.in
-@@ -13,7 +13,9 @@
-
- dnl Checks for libraries.
- dnl Replace `main' with a function in -lncurses:
--AC_CHECK_LIB(ncurses, initscr,,AC_CHECK_LIB(curses, initscr))
-+AC_CHECK_LIB(ncurses, initscr)
-+AC_SEARCH_LIBS(initscr,curses)
-+AC_SEARCH_LIBS(LINES,tinfo)
-
- dnl Checks for header files.
- AC_HEADER_STDC