We need to include uio.h to avoid: [CC] pread.o pread.c: In function ‘do_pread’: pread.c:198: warning: implicit declaration of function ‘preadv’ [CC] pwrite.o pwrite.c: In function ‘do_pwrite’: pwrite.c:85: warning: implicit declaration of function ‘pwritev’ Signed-off-by: Eric Sandeen <sandeen@xxxxxxxxxx> --- V2: Move _BSD_SOURCE to PCFLAGS intead of in source files per Dave's suggestion. diff --git a/include/builddefs.in b/include/builddefs.in index 81ebfcd..04590d2 100644 --- a/include/builddefs.in +++ b/include/builddefs.in @@ -106,7 +106,7 @@ GCCFLAGS = -funsigned-char -fno-strict-aliasing -Wall # -Wbitwise -Wno-transparent-union -Wno-old-initializer -Wno-decl ifeq ($(PKG_PLATFORM),linux) -PCFLAGS = -D_GNU_SOURCE -D_XOPEN_SOURCE=500 -D_FILE_OFFSET_BITS=64 $(GCCFLAGS) +PCFLAGS = -D_GNU_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=500 -D_FILE_OFFSET_BITS=64 $(GCCFLAGS) DEPENDFLAGS = -D__linux__ endif ifeq ($(PKG_PLATFORM),gnukfreebsd) diff --git a/io/pread.c b/io/pread.c index 0b9454b..7e2ed7d 100644 --- a/io/pread.c +++ b/io/pread.c @@ -16,6 +16,7 @@ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ +#include <sys/uio.h> #include <xfs/xfs.h> #include <xfs/command.h> #include <xfs/input.h> diff --git a/io/pwrite.c b/io/pwrite.c index 3689960..73acbac 100644 --- a/io/pwrite.c +++ b/io/pwrite.c @@ -16,6 +16,7 @@ * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ +#include <sys/uio.h> #include <xfs/xfs.h> #include <xfs/command.h> #include <xfs/input.h> _______________________________________________ xfs mailing list xfs@xxxxxxxxxxx http://oss.sgi.com/mailman/listinfo/xfs