From 00863472d6583ffedbfa92badf743abe7fc642f2 Mon Sep 17 00:00:00 2001 From: dmiller Date: Mon, 11 Mar 2024 15:51:49 +0000 Subject: [PATCH] Properly guard an openssl header inclusion --- nse_openssl.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nse_openssl.h b/nse_openssl.h index 09956622d..84e13584d 100644 --- a/nse_openssl.h +++ b/nse_openssl.h @@ -5,7 +5,9 @@ LUALIB_API int luaopen_openssl(lua_State *L); +#if HAVE_OPENSSL #include int nse_pushbn( lua_State *L, BIGNUM *num, bool should_free); #endif +#endif