mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-05-21 12:17:42 +00:00
04 Jan 2017, PHP 5.6.33 - GD: . Fixed bug #75571 (Potential infinite loop in gdImageCreateFromGifCtx). (cmb) - Phar: . Fixed bug #74782 (Reflected XSS in .phar 404 page). (Stas) 26 Sep 2017, PHP 5.6.32 - Date: . Fixed bug #75055 (Out-Of-Bounds Read in timelib_meridian()). (Derick) - mcrypt: . Fixed bug #72535 (arcfour encryption stream filter crashes php). (Leigh) - PCRE: . Fixed bug #75207 (applied upstream patch for CVE-2016-1283). (Anatol) Signed-off-by: Andre McCurdy <armccurdy@gmail.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
39 lines
1023 B
Diff
39 lines
1023 B
Diff
From ed0a954983d50267c2fc0bc13aba929ea0cad971 Mon Sep 17 00:00:00 2001
|
|
From: Dengke Du <dengke.du@windriver.com>
|
|
Date: Tue, 2 May 2017 06:34:40 +0000
|
|
Subject: [PATCH] Add -lpthread to link
|
|
|
|
When building the php-5.6.26, the following errors occured:
|
|
|
|
ld: TSRM/.libs/TSRM.o: undefined reference to symbol
|
|
'pthread_sigmask@@GLIBC_2.2.5'
|
|
|
|
error adding symbols: DSO missing from command line
|
|
|
|
This is because no pthread to link, so we should add it.
|
|
|
|
Upstream-Status: Pending
|
|
|
|
Signed-off-by: Dengke Du <dengke.du@windriver.com>
|
|
---
|
|
configure.in | 3 ++-
|
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/configure.in b/configure.in
|
|
index a467dff1..9afef652 100644
|
|
--- a/configure.in
|
|
+++ b/configure.in
|
|
@@ -1058,7 +1058,8 @@ case $php_sapi_module in
|
|
;;
|
|
esac
|
|
|
|
-EXTRA_LIBS="$EXTRA_LIBS $DLIBS $LIBS"
|
|
+PTHREAD_LIBS="-lpthread"
|
|
+EXTRA_LIBS="$EXTRA_LIBS $DLIBS $LIBS $PTHREAD_LIBS"
|
|
|
|
dnl this has to be here to prevent the openssl crypt() from
|
|
dnl overriding the system provided crypt().
|
|
--
|
|
2.11.0
|
|
|