You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
76 lines
2.1 KiB
76 lines
2.1 KiB
Index: Makefile.in |
|
--- Makefile.in.orig 2013-10-05 21:52:00.000000000 +0200 |
|
+++ Makefile.in 2013-10-06 09:30:10.887808604 +0200 |
|
@@ -1213,7 +1213,7 @@ |
|
top_srcdir = @top_srcdir@ |
|
ACLOCAL_AMFLAGS = -I m4 |
|
EXTRA_DIST = ChangeLog.1 Make.rules |
|
-SUBDIRS = doc gnu lib rmt src scripts po tests |
|
+SUBDIRS = doc gnu lib src |
|
gen_start_date = 2009-03-06 |
|
prev_change_log = ChangeLog.CVS |
|
changelog_dir = . |
|
Index: gnu/argp-help.c |
|
--- gnu/argp-help.c.orig 2013-06-29 07:54:23.000000000 +0200 |
|
+++ gnu/argp-help.c 2013-10-06 09:30:10.887808604 +0200 |
|
@@ -572,10 +572,7 @@ |
|
return val; |
|
} |
|
|
|
-static inline int |
|
-#if __GNUC__ >= 3 |
|
-__attribute__ ((always_inline)) |
|
-#endif |
|
+static int |
|
hol_entry_long_iterate (const struct hol_entry *entry, |
|
int (*func)(const struct argp_option *opt, |
|
const struct argp_option *real, |
|
Index: gnu/strerror.c |
|
--- gnu/strerror.c.orig 2013-06-29 07:54:26.000000000 +0200 |
|
+++ gnu/strerror.c 2013-10-06 12:24:08.817964601 +0200 |
|
@@ -26,6 +26,7 @@ |
|
#include <stdio.h> |
|
#include <stdlib.h> |
|
#include <string.h> |
|
+#include <limits.h> |
|
|
|
#include "intprops.h" |
|
#include "strerror-override.h" |
|
Index: src/tar.c |
|
--- src/tar.c.orig 2013-10-03 21:28:03.000000000 +0200 |
|
+++ src/tar.c 2013-10-06 09:30:10.897886770 +0200 |
|
@@ -19,6 +19,7 @@ |
|
with this program. If not, see <http://www.gnu.org/licenses/>. */ |
|
|
|
#include <system.h> |
|
+#include <locale.h> |
|
|
|
#include <fnmatch.h> |
|
#include <argp.h> |
|
Index: src/utf8.c |
|
--- src/utf8.c.orig 2013-03-14 21:18:10.000000000 +0100 |
|
+++ src/utf8.c 2013-10-06 09:30:10.897886770 +0200 |
|
@@ -23,6 +23,9 @@ |
|
#include "common.h" |
|
#ifdef HAVE_ICONV_H |
|
# include <iconv.h> |
|
+#else |
|
+# define iconv_t void * |
|
+# define ICONV_CONST const |
|
#endif |
|
|
|
#ifndef ICONV_CONST |
|
Index: src/xheader.c |
|
--- src/xheader.c.orig 2013-03-14 21:18:10.000000000 +0100 |
|
+++ src/xheader.c 2013-10-06 09:30:10.897886770 +0200 |
|
@@ -26,6 +26,10 @@ |
|
|
|
#include "common.h" |
|
|
|
+#ifndef SIZE_MAX |
|
+# define SIZE_MAX ((size_t) -1) |
|
+#endif |
|
+ |
|
static void xheader_init (struct xheader *xhdr); |
|
static bool xheader_protected_pattern_p (char const *pattern); |
|
static bool xheader_protected_keyword_p (char const *keyword);
|
|
|