diff options
author | Martin Jansa <martin.jansa@gmail.com> | 2023-05-24 09:52:38 +0200 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2023-05-24 07:23:54 -0700 |
commit | b67942fbe2bb128bb96be46121811b9852772bd7 (patch) | |
tree | 97d3ac81f281a1b5965bcecc20a42173e684acfb /meta-webserver | |
parent | 1b8166a397a96e4dad89865ecdb532b49cbfd421 (diff) | |
download | meta-openembedded-b67942fbe2bb128bb96be46121811b9852772bd7.tar.gz |
monkey: remove unused patch file
* it was removed from SRC_URI in:
https://git.openembedded.org/meta-openembedded/commit/?id=45b327ba1620febf3dd8a8b415d601c9c9e78bc5
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-webserver')
-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 3eb306739..000000000 --- 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 | |||