From e11756b494411b848058889bdb782dae935cb3f5 Mon Sep 17 00:00:00 2001 From: Andrew Solomon Date: Mon, 3 Apr 2017 17:04:21 +0000 Subject: [PATCH] build: src/arch/ppc.c FreeBSD build break The #include file is present on linux but not FreeBSD. Move it under the #if __linux__ directive. Signed-off-by: Andrew Solomon --- src/arch/ppc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/arch/ppc.c b/src/arch/ppc.c index eea5968bc1eb..f21e2fe17001 100644 --- a/src/arch/ppc.c +++ b/src/arch/ppc.c @@ -13,9 +13,9 @@ int ceph_arch_ppc_crc32 = 0; #include -#include #if __linux__ && __powerpc64__ +#include #include #endif /* __linux__ && __powerpc64__ */ -- 2.47.3