summaryrefslogtreecommitdiff
path: root/app-arch/lha/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
commitd87262dd706fec50cd150aab3e93883b6337466d (patch)
tree246b44c33ad7a57550430b0a60fa0df86a3c9e68 /app-arch/lha/files
parent71bc00c87bba1ce31de0dac6c3b7fd1aee6917fc (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'app-arch/lha/files')
-rw-r--r--app-arch/lha/files/lha-114i-file-list-from-stdin.patch29
-rw-r--r--app-arch/lha/files/lha-114i-fix-getopt_long-declaration.patch11
2 files changed, 0 insertions, 40 deletions
diff --git a/app-arch/lha/files/lha-114i-file-list-from-stdin.patch b/app-arch/lha/files/lha-114i-file-list-from-stdin.patch
deleted file mode 100644
index 4bd0d17d7527..000000000000
--- a/app-arch/lha/files/lha-114i-file-list-from-stdin.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-Index: src/lharc.c
-===================================================================
---- src/lharc.c (revision 773)
-+++ src/lharc.c (working copy)
-@@ -561,7 +561,7 @@
- if (!isatty(1) && cmd == CMD_ADD)
- quiet = TRUE;
- }
--#if 0 /* Comment out; IMHO, this feature is useless. by Koji Arai */
-+#ifndef MINGW32
- else {
- if (argc == 3 && !isatty(0)) { /* 1999.7.18 */
- /* Bug(?) on MinGW, isatty() return 0 on Cygwin console.
-Index: configure.ac
-===================================================================
---- configure.ac (revision 773)
-+++ configure.ac (working copy)
-@@ -289,6 +289,11 @@
- [Define to 1 if you want to ignore dot files with -X command line switch])
- fi
-
-+AC_MINGW32
-+if test "x$MINGW32" = xyes; then
-+ AC_DEFINE(MINGW32, 1, [Define to 1 if we're being compiled with MinGW.])
-+fi
-+
- AC_CONFIG_FILES([Makefile src/Makefile man/Makefile olddoc/Makefile])
- AC_CONFIG_FILES([tests/Makefile tests/lha-test])
- AC_OUTPUT
diff --git a/app-arch/lha/files/lha-114i-fix-getopt_long-declaration.patch b/app-arch/lha/files/lha-114i-fix-getopt_long-declaration.patch
deleted file mode 100644
index b57a1c9c6158..000000000000
--- a/app-arch/lha/files/lha-114i-fix-getopt_long-declaration.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/getopt_long.c.orig 2013-12-18 16:05:59.789413528 -0600
-+++ src/getopt_long.c 2013-12-18 16:06:01.200420472 -0600
-@@ -64,7 +64,7 @@
-
- #ifndef USE_GNU
- #include <stdio.h>
--#include <getopt_long.h>
-+#include "getopt_long.h"
-
- char *optarg;
- int optind;