All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH]libxl: fix fstat implicit declaration build error
@ 2010-07-30  2:29 Zhigang Wang
  0 siblings, 0 replies; only message in thread
From: Zhigang Wang @ 2010-07-30  2:29 UTC (permalink / raw)
  To: xen-devel

[-- Attachment #1: Type: text/plain, Size: 998 bytes --]

Hi all,

This patch fix this:

make -C libxl install
make[3]: Entering directory `/share/tmp/pkg/xen-unstable/tools/libxl'
gcc -O1 -fno-omit-frame-pointer -fno-optimize-sibling-calls -m64 -g
-fno-strict-aliasing -std=gnu99 -Wall -Wstrict-prototypes
-Wno-unused-value -Wdeclaration-after-statement -D__XEN_TOOLS__ -MMD -MF
.libxl.o.d -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -Werror
-Wno-format-zero-length -I. -fPIC -I../../tools/libxc
-I../../tools/include -I../../tools/libxc -I../../tools/include
-I../../tools/xenstore -I../../tools/include
-I../../tools/blktap2/control -I../../tools/blktap2/include
-I../../tools/include -c -o libxl.o libxl.c
cc1: warnings being treated as errors
libxl.c: In function ‘libxl_file_reference_map’:
libxl.c:2968: error: implicit declaration of function ‘fstat’
make[3]: *** [libxl.o] Error 1

description:
libxl: fix fstat implicit declaration build error.

Signed-off-by: Zhigang Wang <zhigang.x.wang@oracle.com>

Thanks,

Zhigang

[-- Attachment #2: xen-unstable-fix-fstat-build-error.patch --]
[-- Type: text/plain, Size: 330 bytes --]

diff -r 2007fd03f53d tools/libxl/libxl.c
--- a/tools/libxl/libxl.c	Wed Jul 28 16:32:33 2010 +0100
+++ b/tools/libxl/libxl.c	Fri Jul 30 10:21:36 2010 +0800
@@ -20,6 +20,7 @@
 #include <string.h>
 #include <stdlib.h>
 #include <sys/types.h>
+#include <sys/stat.h>
 #include <fcntl.h>
 #include <sys/select.h>
 #include <sys/mman.h>

[-- Attachment #3: Type: text/plain, Size: 138 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2010-07-30  2:29 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-07-30  2:29 [PATCH]libxl: fix fstat implicit declaration build error Zhigang Wang

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.