From 8b7432b9e914c47bbce74bf999e4c7aef57561e2 Mon Sep 17 00:00:00 2001 From: Lucian Petrut Date: Mon, 7 Mar 2022 08:12:23 +0000 Subject: [PATCH] include: Define dlfcn.h on Windows "dlfcn.h" is not available on Windows, so Ceph provides a drop-in replacement through "dlfcn_compat.h". The issue is that directly importing "dlfcn.h" fails at the moment, for which reason we'll simply add a file called "dlfcn.h" that includes "dlfcn_compat.h". Signed-off-by: Lucian Petrut --- src/include/win32/dlfcn.h | 1 + 1 file changed, 1 insertion(+) create mode 100644 src/include/win32/dlfcn.h diff --git a/src/include/win32/dlfcn.h b/src/include/win32/dlfcn.h new file mode 100644 index 0000000000000..32e51f16f9a21 --- /dev/null +++ b/src/include/win32/dlfcn.h @@ -0,0 +1 @@ +#include "../dlfcn_compat.h" -- 2.39.5