qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] qemu: Do not include file if not exists
@ 2020-03-24  9:43 Oleksiy Obitotskyy
  2020-03-24 13:03 ` Philippe Mathieu-Daudé
  0 siblings, 1 reply; 4+ messages in thread
From: Oleksiy Obitotskyy @ 2020-03-24  9:43 UTC (permalink / raw)
  To: qemu-devel; +Cc: Oleksiy Obitotskyy

Script configure checks for if_alg.h and check failed but
if_alg.h still included.

Upstream-Status: Submitted [<oobitots@cisco.com>]
Signed-off-by: Oleksiy Obitotskyy <oobitots@cisco.com>
---
 linux-user/syscall.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/linux-user/syscall.c b/linux-user/syscall.c
index 35f4146662..819774af0d 100644
--- a/linux-user/syscall.c
+++ b/linux-user/syscall.c
@@ -109,7 +109,9 @@
 #include <linux/blkpg.h>
 #include <netpacket/packet.h>
 #include <linux/netlink.h>
+#if defined(CONFIG_AF_ALG)
 #include <linux/if_alg.h>
+#endif
 #include <linux/rtc.h>
 #include <sound/asound.h>
 #include "linux_loop.h"
-- 
2.19.1



^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-03-30  7:48 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-03-24  9:43 [PATCH] qemu: Do not include file if not exists Oleksiy Obitotskyy
2020-03-24 13:03 ` Philippe Mathieu-Daudé
2020-03-25  8:52   ` Oleksiy Obitotskyy
2020-03-30  7:47     ` Markus Armbruster

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).