Skip to content
Snippets Groups Projects
Commit d831a641 authored by Olivier Dion's avatar Olivier Dion
Browse files

logger: Only include <fmt/std.h> on Windows

Change-Id: I561e60a14a363bb8a1658eb7f740bd67a85c2d99
parent 200d6345
No related branches found
No related tags found
No related merge requests found
......@@ -584,7 +584,7 @@ PKG_CHECK_MODULES([OPENDHT], [opendht >= 2.3.2],,
PKG_CHECK_MODULES([SECP256K1], [libsecp256k1 >= 0.1],,
AC_MSG_FAILURE([Missing secp256k1]))
PKG_CHECK_MODULES([FMT], [fmt >= 5.3],,
PKG_CHECK_MODULES([FMT], [fmt >= 6.0],,
AC_MSG_FAILURE([Missing {fmt}]))
# LIBUPNP
......
......@@ -29,10 +29,10 @@
#include <fmt/core.h>
#include <fmt/format.h>
#include <fmt/std.h>
#include <fmt/compile.h>
#ifdef _MSC_VER
#include <fmt/std.h>
#include <sys_time.h>
#else
#include <sys/time.h>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment