qemu-devel
[Top][All Lists]
Advanced

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

[Qemu-devel] [PATCH 43/47] define ENOTSUP the same that the other errors


From: Juan Quintela
Subject: [Qemu-devel] [PATCH 43/47] define ENOTSUP the same that the other errors
Date: Mon, 27 Jul 2009 16:13:22 +0200

Signed-off-by: Juan Quintela <address@hidden>
---
 configure     |    5 -----
 qemu-common.h |    5 +++--
 2 files changed, 3 insertions(+), 7 deletions(-)

diff --git a/configure b/configure
index fdcbc83..366b336 100755
--- a/configure
+++ b/configure
@@ -265,7 +265,6 @@ oss_lib="-lossaudio"
 ;;
 OpenBSD)
 bsd="yes"
-openbsd="yes"
 audio_drv_list="oss"
 audio_possible_drivers="oss sdl esd"
 oss_lib="-lossaudio"
@@ -1544,10 +1543,6 @@ EOF
   fi
 fi

-if [ "$openbsd" = "yes" ] ; then
-  echo "#define ENOTSUP 4096" >> $config_host_h
-fi
-
 if test "$darwin" = "yes" ; then
   echo "CONFIG_DARWIN=y" >> $config_host_mak
   echo "#define CONFIG_DARWIN 1" >> $config_host_h
diff --git a/qemu-common.h b/qemu-common.h
index 3cf7f4e..eb905b7 100644
--- a/qemu-common.h
+++ b/qemu-common.h
@@ -38,6 +38,9 @@
 #ifndef ENOMEDIUM
 #define ENOMEDIUM ENODEV
 #endif
+#ifndef ENOTSUP
+#define ENOTSUP 4096
+#endif

 #ifndef CONFIG_IOVEC
 #define CONFIG_IOVEC
@@ -52,11 +55,9 @@ struct iovec {
 #ifdef _WIN32
 #define fsync _commit
 #define lseek _lseeki64
-#define ENOTSUP 4096
 extern int qemu_ftruncate64(int, int64_t);
 #define ftruncate qemu_ftruncate64

-
 static inline char *realpath(const char *path, char *resolved_path)
 {
     _fullpath(resolved_path, path, _MAX_PATH);
-- 
1.6.2.5





reply via email to

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