From 70678b82274309e9df98b8ce359118f36697cadb Mon Sep 17 00:00:00 2001 From: Anthony Liguori Date: Fri, 3 Aug 2012 18:28:37 -0500 Subject: fips: fix build on !Linux Commit 0f66998 makes -enable-fips conditional on Linux hosts but then uses it unconditionally in vl.c. Fix this by moving the fips handling to os-posix.c and adding a condition. Cc: Paul Moore Signed-off-by: Anthony Liguori --- os-posix.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'os-posix.c') diff --git a/os-posix.c b/os-posix.c index daf3d6f6f3..79fa2288e4 100644 --- a/os-posix.c +++ b/os-posix.c @@ -188,6 +188,11 @@ void os_parse_cmd_args(int index, const char *optarg) case QEMU_OPTION_daemonize: daemonize = 1; break; +#if defined(CONFIG_LINUX) + case QEMU_OPTION_enablefips: + fips_set_state(true); + break; +#endif } return; } -- cgit v1.2.3