From: Peter Maydell Date: Thu, 30 Jun 2016 16:33:49 +0000 (+0100) Subject: linux-user: Fix compilation when F_SETPIPE_SZ isn't defined X-Git-Tag: TizenStudio_2.0_p4.0~6^2~12^2~6^2~154 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ddf31aa853a32925f8141dbcb66fdc84f999ece1;p=sdk%2Femulator%2Fqemu.git linux-user: Fix compilation when F_SETPIPE_SZ isn't defined Older kernels don't have F_SETPIPE_SZ and F_GETPIPE_SZ (in particular RHEL6's system headers don't define these). Add ifdefs so that we can gracefully fall back to not supporting those guest ioctls rather than failing to build. Signed-off-by: Peter Maydell Reviewed-by: Laurent Vivier Message-id: 1467304429-21470-1-git-send-email-peter.maydell@linaro.org --- diff --git a/linux-user/syscall.c b/linux-user/syscall.c index 28ee45a..8bf6205 100644 --- a/linux-user/syscall.c +++ b/linux-user/syscall.c @@ -5598,10 +5598,12 @@ static int target_to_host_fcntl_cmd(int cmd) case TARGET_F_SETOWN_EX: return F_SETOWN_EX; #endif +#ifdef F_SETPIPE_SZ case TARGET_F_SETPIPE_SZ: return F_SETPIPE_SZ; case TARGET_F_GETPIPE_SZ: return F_GETPIPE_SZ; +#endif default: return -TARGET_EINVAL; }