bug-coreutils
[Top][All Lists]
Advanced

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

Re: coreutils 5.1.0 compile failure on Tru64 5.1b


From: Paul Eggert
Subject: Re: coreutils 5.1.0 compile failure on Tru64 5.1b
Date: 21 Jan 2004 22:42:20 -0800
User-agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3

Tim Mooney <address@hidden> writes:

> cc: Error: fts.c, line 196: Missing ";". (nosemi)
>   return (uintmax_t) ax->ino % table_size;

Thanks for reporting that.  Does this patch fix things for you?

2004-01-21  Paul Eggert  <address@hidden>

        * lib/fts.c [! HAVE_INTTYPES_H && HAVE_STDINT_H]: Include <stdint.h>.
        Tim Mooney reported that this is needed with Compaq C V6.5-207 (dtk)
        on Compaq Tru64 UNIX V5.1B (Rev. 2650).

--- fts.c       Sat Dec 20 10:05:23 2003
+++ /tmp/fts.c  Wed Jan 21 22:39:08 2004
@@ -53,6 +53,10 @@ static char sccsid[] = "@(#)fts.c    8.6 (B
 #include <unistd.h>
 #if HAVE_INTTYPES_H
 # include <inttypes.h>
+#else
+# if HAVE_STDINT_H
+#  include <stdint.h>
+# endif
 #endif
 
 #if defined _LIBC




reply via email to

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