bug-gnu-utils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: tar 1.13, -C and -T don't work together


From: Paul Eggert
Subject: Re: tar 1.13, -C and -T don't work together
Date: Tue, 3 Sep 2002 10:19:11 -0700 (PDT)

> From: Greg Wooledge <address@hidden>
> Date: Tue, 3 Sep 2002 12:30:46 -0400
> 
> > ftp://alpha.gnu.org/gnu/tar/
> 
> This fails to compile on HP-UX 10.20:
> gcc -DHAVE_CONFIG_H -I. -I. -I.. -I../intl    -g -O2 -c `test -f xstrtoimax.c 
> || echo './'`xstrtoimax.c
> In file included from xstrtoimax.c:31:
> xstrtol.c:90: macro `strtoimax' used without args

Try changing that section of xstrtol.c as follows:

#if !HAVE_DECL_STRTOIMAX && !defined strtoimax
intmax_t strtoimax ();
#endif

#if !HAVE_DECL_STRTOUMAX && !defined strtoumax
uintmax_t strtoumax ();
#endif




reply via email to

[Prev in Thread] Current Thread [Next in Thread]