diff options
author | Hongxu Jia <hongxu.jia@windriver.com> | 2017-08-16 04:31:19 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-08-18 10:40:27 +0100 |
commit | 80cecb6cc9a3765aeb8dd4060a4a994c2625a952 (patch) | |
tree | 687b97211403f043b288d3376e50e97737f9e051 /meta/recipes-support/libgcrypt/files/fix-undefined-reference-to-pthread.patch | |
parent | 70de26076f36205b914be1b1911e5fc0afd65edb (diff) | |
download | poky-80cecb6cc9a3765aeb8dd4060a4a994c2625a952.tar.gz |
libgcrypt: 1.7.8 -> 1.8.0
Rebase patches:
- add-pkgconfig-support.patch -> 0001
- libgcrypt-fix-building-error-with-O2-in-sysroot-path.patch -> 0002
- fix-ICE-failure-on-mips-with-option-O-and-g.patch -> 0003
- fix-undefined-reference-to-pthread.patch -> 0004
(From OE-Core rev: b90037da8754009ca7cf2ab996b46b3dae1eb204)
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/libgcrypt/files/fix-undefined-reference-to-pthread.patch')
-rw-r--r-- | meta/recipes-support/libgcrypt/files/fix-undefined-reference-to-pthread.patch | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/meta/recipes-support/libgcrypt/files/fix-undefined-reference-to-pthread.patch b/meta/recipes-support/libgcrypt/files/fix-undefined-reference-to-pthread.patch deleted file mode 100644 index e7de8badf8..0000000000 --- a/meta/recipes-support/libgcrypt/files/fix-undefined-reference-to-pthread.patch +++ /dev/null | |||
@@ -1,27 +0,0 @@ | |||
1 | From cc0e2b403d33892963513a3ba98e4ae5a05a4d3c Mon Sep 17 00:00:00 2001 | ||
2 | From: Hongxu Jia <hongxu.jia@windriver.com> | ||
3 | Date: Sun, 12 Jun 2016 04:44:29 -0400 | ||
4 | Subject: [PATCH] tests/Makefile.am: fix undefined reference to `pthread_create' | ||
5 | |||
6 | Add missing '-lpthread' to CFLAGS | ||
7 | |||
8 | Upstream-Status: Pending | ||
9 | |||
10 | Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> | ||
11 | --- | ||
12 | tests/Makefile.am | 2 +- | ||
13 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
14 | |||
15 | diff --git a/tests/Makefile.am b/tests/Makefile.am | ||
16 | index d462f30..bef6dd7 100644 | ||
17 | --- a/tests/Makefile.am | ||
18 | +++ b/tests/Makefile.am | ||
19 | @@ -62,4 +62,4 @@ EXTRA_DIST = README rsa-16k.key cavs_tests.sh cavs_driver.pl \ | ||
20 | |||
21 | LDADD = $(standard_ldadd) $(GPG_ERROR_LIBS) | ||
22 | t_lock_LDADD = $(standard_ldadd) $(GPG_ERROR_MT_LIBS) | ||
23 | -t_lock_CFLAGS = $(GPG_ERROR_MT_CFLAGS) | ||
24 | +t_lock_CFLAGS = $(GPG_ERROR_MT_CFLAGS) -lpthread | ||
25 | -- | ||
26 | 2.8.1 | ||
27 | |||