mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-15 16:07:26 +00:00
php: fix install error for libphp*.so
Changed in V4:
Add the tag: meta-oe
1. Different version php have different libphp*.so, so we need to install its
corresponding libphp*.so, for example:
php-7.1.0 libphp7.so
php-5.6.26 libphp5.so
2. Fix php-5.6.26 compiling errors:
ld: TSRM/.libs/TSRM.o: undefined reference to symbol
'pthread_sigmask@@GLIBC_2.2.5'
error adding symbols: DSO missing from command line
3. Create a configure script like 70_mod_php5, we name it 70_mod_php7, this
file connect the php7 and the apache2, so they work together to let the
LAMP works correctly.
Signed-off-by: Dengke Du <dengke.du@windriver.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
This commit is contained in:
committed by
Armin Kuster
parent
cbe22e7f11
commit
b316598c93
@@ -0,0 +1,38 @@
|
||||
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
|
||||
|
||||
Reference in New Issue
Block a user