summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Seifert <soap@gentoo.org>2021-05-15 00:12:04 +0200
committerDavid Seifert <soap@gentoo.org>2021-05-15 00:12:04 +0200
commitd6f5624d344f8d50aa7ca7a852fb0f935938e09a (patch)
tree1687907b0790ca655a736b5df0711852ad690255 /app-editors/hexcurse/files
parentapp-doc/linuxfromscratch: drop 8.0 (diff)
downloadgentoo-d6f5624d344f8d50aa7ca7a852fb0f935938e09a.tar.gz
gentoo-d6f5624d344f8d50aa7ca7a852fb0f935938e09a.tar.bz2
gentoo-d6f5624d344f8d50aa7ca7a852fb0f935938e09a.zip
app-editors/hexcurse: drop 1.55
Signed-off-by: David Seifert <soap@gentoo.org>
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