michael@13: Index: Makefile.in michael@428: --- Makefile.in.orig 2011-03-12 10:50:13.000000000 +0100 michael@428: +++ Makefile.in 2011-07-31 17:41:03.000000000 +0200 michael@428: @@ -1028,7 +1028,7 @@ michael@250: top_srcdir = @top_srcdir@ michael@13: ACLOCAL_AMFLAGS = -I m4 michael@250: EXTRA_DIST = ChangeLog.1 Make.rules michael@250: -SUBDIRS = doc gnu lib rmt src scripts po tests michael@250: +SUBDIRS = doc gnu lib src michael@250: gen_start_date = 2009-03-06 michael@250: prev_change_log = ChangeLog.CVS michael@250: changelog_dir = . michael@250: Index: gnu/argp-help.c michael@428: --- gnu/argp-help.c.orig 2011-03-12 10:14:26.000000000 +0100 michael@428: +++ gnu/argp-help.c 2011-07-31 17:44:24.000000000 +0200 michael@428: @@ -571,10 +571,7 @@ michael@13: return val; michael@13: } michael@13: michael@13: -static inline int michael@428: -#if __GNUC__ >= 3 michael@13: -__attribute__ ((always_inline)) michael@428: -#endif michael@13: +static int michael@13: hol_entry_long_iterate (const struct hol_entry *entry, michael@250: int (*func)(const struct argp_option *opt, michael@250: const struct argp_option *real, michael@250: Index: gnu/strerror.c michael@428: --- gnu/strerror.c.orig 2011-03-12 10:14:33.000000000 +0100 michael@428: +++ gnu/strerror.c 2011-07-31 17:41:03.000000000 +0200 michael@250: @@ -25,6 +25,7 @@ michael@250: michael@250: # include michael@250: # include michael@250: +# include michael@250: michael@250: # if GNULIB_defined_ESOCK /* native Windows platforms */ michael@250: # if HAVE_WINSOCK2_H michael@13: Index: src/tar.c michael@428: --- src/tar.c.orig 2010-10-24 20:07:55.000000000 +0200 michael@428: +++ src/tar.c 2011-07-31 17:41:03.000000000 +0200 michael@13: @@ -20,6 +20,7 @@ michael@13: 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ michael@13: michael@13: #include michael@13: +#include michael@13: michael@13: #include michael@13: #include michael@13: Index: src/utf8.c michael@428: --- src/utf8.c.orig 2010-01-22 18:18:15.000000000 +0100 michael@428: +++ src/utf8.c 2011-07-31 17:41:03.000000000 +0200 michael@13: @@ -22,6 +22,9 @@ michael@13: #include "common.h" michael@13: #ifdef HAVE_ICONV_H michael@13: # include michael@13: +#else michael@13: +# define iconv_t void * michael@13: +# define ICONV_CONST const michael@13: #endif michael@13: michael@13: #ifndef ICONV_CONST michael@13: Index: src/xheader.c michael@428: --- src/xheader.c.orig 2010-11-27 12:18:49.000000000 +0100 michael@428: +++ src/xheader.c 2011-07-31 17:41:03.000000000 +0200 michael@250: @@ -26,6 +26,10 @@ michael@13: michael@250: #include "common.h" michael@13: michael@13: +#ifndef SIZE_MAX michael@13: +# define SIZE_MAX ((size_t) -1) michael@13: +#endif michael@13: + michael@428: static void xheader_init (struct xheader *xhdr); michael@13: static bool xheader_protected_pattern_p (char const *pattern); michael@13: static bool xheader_protected_keyword_p (char const *keyword);