From ef6152c0efb19e638cdaced945d830fdfc7cf7eb Mon Sep 17 00:00:00 2001 From: Jason Volk Date: Fri, 22 Dec 2017 17:48:15 -0700 Subject: [PATCH] ircd: Move openssl.h way down here so it can use json. --- include/ircd/stdinc.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/include/ircd/stdinc.h b/include/ircd/stdinc.h index 13358d59a..be87d1d1b 100644 --- a/include/ircd/stdinc.h +++ b/include/ircd/stdinc.h @@ -142,6 +142,10 @@ namespace std } #endif +// OpenSSL +// Additional forward declarations in the extern namespace are introduced +// by ircd/openssl.h + /////////////////////////////////////////////////////////////////////////////// // // libircd API @@ -193,7 +197,6 @@ namespace ircd #include "date.h" #include "timer.h" #include "logger.h" -#include "openssl.h" #include "nacl.h" #include "rand.h" #include "hash.h" @@ -211,6 +214,7 @@ namespace ircd #include "parse.h" #include "rfc1459.h" #include "json/json.h" +#include "openssl.h" #include "http.h" #include "fmt.h" #include "fs.h"