qemu-devel
[Top][All Lists]
Advanced

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

[Qemu-devel] [5270] Fix building with 2.6.27 kernel headers (Kirill Shut


From: Andrzej Zaborowski
Subject: [Qemu-devel] [5270] Fix building with 2.6.27 kernel headers (Kirill Shutemov).
Date: Sat, 20 Sep 2008 02:29:38 +0000

Revision: 5270
          http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=5270
Author:   balrog
Date:     2008-09-20 02:29:38 +0000 (Sat, 20 Sep 2008)

Log Message:
-----------
Fix building with 2.6.27 kernel headers (Kirill Shutemov).

<linux/dirent.h> unexported since 2.6.27

Signed-off-by: Kirill A. Shutemov <address@hidden>

Modified Paths:
--------------
    trunk/linux-user/syscall.c

Modified: trunk/linux-user/syscall.c
===================================================================
--- trunk/linux-user/syscall.c  2008-09-20 02:25:39 UTC (rev 5269)
+++ trunk/linux-user/syscall.c  2008-09-20 02:29:38 UTC (rev 5270)
@@ -28,6 +28,7 @@
 #include <fcntl.h>
 #include <time.h>
 #include <limits.h>
+#include <dirent.h>
 #include <sys/types.h>
 #include <sys/ipc.h>
 #include <sys/msg.h>
@@ -68,7 +69,6 @@
 #include <linux/cdrom.h>
 #include <linux/hdreg.h>
 #include <linux/soundcard.h>
-#include <linux/dirent.h>
 #include <linux/kd.h>
 #include "linux_loop.h"
 






reply via email to

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