bug-coreutils
[Top][All Lists]
Advanced

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

coreutils CVS on NetBSD 3.0


From: Bruno Haible
Subject: coreutils CVS on NetBSD 3.0
Date: Mon, 9 Oct 2006 13:37:05 +0200
User-agent: KMail/1.9.1

Hi,

The testing results of coreutils CVS as of Saturday, on NetBSD 3.0:

if gcc -std=gnu99  -I. -I. -I.    -Wall -I/home/bruno/gnu/include   -g -O2 -MT 
filemode.o -MD -MP -MF ".deps/filemode.Tpo" -c -o filemode.o filemode.c;  then 
mv -f ".deps/filemode.Tpo" ".deps/filemode.Po"; else rm -f 
".deps/filemode.Tpo"; exit 1; fi
filemode.c: In function `filemodestring':
filemode.c:171: warning: implicit declaration of function `strmode'

Since strmode() is declared in <unistd.h>, the following fixes it:

*** coreutils-6.3a/lib/filemode.c.bak   2006-09-19 00:51:16.000000000 +0200
--- coreutils-6.3a/lib/filemode.c       2006-10-08 16:35:12.000000000 +0200
***************
*** 21,26 ****
--- 21,27 ----
  
  #include "filemode.h"
  
+ #include <unistd.h>
  #include "stat-macros.h"
  
  /* The following is for Cray DMF (Data Migration Facility), which is a

All tests pass.

Bruno




reply via email to

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