diff options
Diffstat (limited to 'meta-webserver/recipes-httpd/monkey/files/0001-configure-Respect-LIBS-variable-from-env.patch')
-rw-r--r-- | meta-webserver/recipes-httpd/monkey/files/0001-configure-Respect-LIBS-variable-from-env.patch | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/meta-webserver/recipes-httpd/monkey/files/0001-configure-Respect-LIBS-variable-from-env.patch b/meta-webserver/recipes-httpd/monkey/files/0001-configure-Respect-LIBS-variable-from-env.patch deleted file mode 100644 index 3eb3067394..0000000000 --- a/meta-webserver/recipes-httpd/monkey/files/0001-configure-Respect-LIBS-variable-from-env.patch +++ /dev/null | |||
@@ -1,30 +0,0 @@ | |||
1 | From b0526a9b5325bd4758dad8d14efd85c98ef2ebff Mon Sep 17 00:00:00 2001 | ||
2 | From: Khem Raj <raj.khem@gmail.com> | ||
3 | Date: Fri, 14 Jul 2017 18:25:23 -0700 | ||
4 | Subject: [PATCH] configure: Respect LIBS variable from env | ||
5 | |||
6 | For musl we need to pass -lexecinfo from env | ||
7 | this change accomodates that | ||
8 | |||
9 | Upstream-Status: Inappropriate [OE-specific] | ||
10 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
11 | --- | ||
12 | configure | 2 +- | ||
13 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
14 | |||
15 | diff --git a/configure b/configure | ||
16 | index 4286c34..f1c65db 100755 | ||
17 | --- a/configure | ||
18 | +++ b/configure | ||
19 | @@ -620,7 +620,7 @@ LIBDEFS = -DSHAREDLIB -fPIC \$(DEFS) | ||
20 | INCDIR = ./include | ||
21 | LDFLAGS = $LDFLAGS | ||
22 | DESTDIR = ../bin/monkey | ||
23 | -LIBS = -ldl $libs | ||
24 | +LIBS = -ldl $libs ${LIBS} | ||
25 | OBJ = monkey.o mk_method.o mk_mimetype.o mk_vhost.o mk_request.o \\ | ||
26 | mk_header.o mk_config.o mk_signals.o \\ | ||
27 | mk_user.o mk_utils.o mk_epoll.o mk_scheduler.o \\ | ||
28 | -- | ||
29 | 2.13.3 | ||
30 | |||