python-dataproperty: bump version to 0.17.0
[buildroot-gz.git] / package / nginx / 0008-src-os-unix-ngx_linux_config.h-only-include-dlfcn.h-.patch
blobc10fcd11c947fc50495c38877cdc98df7fecb80d
1 From 8dc9dffc1f99ac951865f3135dfb5061a08d1f85 Mon Sep 17 00:00:00 2001
2 From: Martin Bark <martin@barkynet.com>
3 Date: Fri, 6 May 2016 16:29:17 +0100
4 Subject: [PATCH] src/os/unix/ngx_linux_config.h: only include dlfcn.h if
5 available
7 Signed-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(-)
12 diff --git a/src/os/unix/ngx_linux_config.h b/src/os/unix/ngx_linux_config.h
13 index 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() */
20 -#include <dlfcn.h>
21 +#include <ngx_auto_config.h>
24 -#include <ngx_auto_config.h>
25 +#if (NGX_HAVE_DLOPEN)
26 +#include <dlfcn.h>
27 +#endif
30 #if (NGX_HAVE_POSIX_SEM)
31 --
32 2.8.2