1From 8dc9dffc1f99ac951865f3135dfb5061a08d1f85 Mon Sep 17 00:00:00 2001 2From: Martin Bark <martin@barkynet.com> 3Date: Fri, 6 May 2016 16:29:17 +0100 4Subject: [PATCH] src/os/unix/ngx_linux_config.h: only include dlfcn.h if 5 available 6 7Signed-off-by: Martin Bark <martin@barkynet.com> 8--- 9 src/os/unix/ngx_linux_config.h | 6 ++++-- 10 1 file changed, 4 insertions(+), 2 deletions(-) 11 12diff --git a/src/os/unix/ngx_linux_config.h b/src/os/unix/ngx_linux_config.h 13index 2f6129d..4244086 100644 14--- a/src/os/unix/ngx_linux_config.h 15+++ b/src/os/unix/ngx_linux_config.h 16@@ -55,10 +55,12 @@ 17 #include <crypt.h> 18 #include <sys/utsname.h> /* uname() */ 19 20-#include <dlfcn.h> 21+#include <ngx_auto_config.h> 22 23 24-#include <ngx_auto_config.h> 25+#if (NGX_HAVE_DLOPEN) 26+#include <dlfcn.h> 27+#endif 28 29 30 #if (NGX_HAVE_POSIX_SEM) 31-- 322.8.2 33 34