strtoll() not available on HP-UX

2005-08-11 Thread Albert Chin
None of the following platforms have strtoll(): HP-UX 10.20, 11.00, 11.11 There is a replacement strtoll() in gnulib but it's licensed under the GPL. Would importing it conflict with wget license which contains the OpenSSL exception? -- albert chin ([EMAIL PROTECTED])

Re: strtoll() not available on HP-UX

2005-08-11 Thread Albert Chin
On Thu, Aug 11, 2005 at 01:27:28PM -0500, Steven M. Schweda wrote: I haven't used HP-UX for a while, so I may be wasting your time, but I thought that 11.x was 64-bit-only. If so, does strtoll() actually differ from strtol()? (How big is your long int?) 11.x is 32-bit _and_ 64-bit. 10.20

Re: strtoll() not available on HP-UX

2005-08-11 Thread Hrvoje Niksic
Albert Chin [EMAIL PROTECTED] writes: None of the following platforms have strtoll(): HP-UX 10.20, 11.00, 11.11 Do those platforms have 64-bit off_t, i.e. large file support? If so, do they have another strtoll-like function, such as strtoq? There is a replacement strtoll() in gnulib but

Re: strtoll() not available on HP-UX

2005-08-11 Thread Albert Chin
On Thu, Aug 11, 2005 at 10:17:18PM +0200, Hrvoje Niksic wrote: Albert Chin [EMAIL PROTECTED] writes: None of the following platforms have strtoll(): HP-UX 10.20, 11.00, 11.11 Do those platforms have 64-bit off_t, i.e. large file support? If so, do they have another strtoll-like

Re: strtoll() not available on HP-UX

2005-08-11 Thread Albert Chin
On Thu, Aug 11, 2005 at 03:24:53PM -0500, Albert Chin wrote: On Thu, Aug 11, 2005 at 10:17:18PM +0200, Hrvoje Niksic wrote: Albert Chin [EMAIL PROTECTED] writes: None of the following platforms have strtoll(): HP-UX 10.20, 11.00, 11.11 Do those platforms have 64-bit off_t, i.e.

Re: strtoll() not available on HP-UX

2005-08-11 Thread Hrvoje Niksic
OK, in presence of LFS, Wget will use either strtoll, strtoimax, or its own strtoll implementation if none are available.