Skip to content

Commit ea372e7

Browse files
committed
Fix bug #80402: Don't strip -lpthread
The current behavior has been introduced 20 years ago in f9e375f as part of a larger change. It's not clear to me why special treatement of -lpthread is necessary here.
1 parent 2fb12be commit ea372e7

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

NEWS

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ PHP NEWS
1212
(al at coralnet dot name)
1313
. Fixed bug #80393 (Build of PHP extension fails due to configuration gap
1414
with libtool). (kir dot morozov at gmail dot com)
15+
. Fixed bug #80402 (configure filtering out -lpthread). (Nikita)
1516

1617
- Fileinfo:
1718
. Fixed bug #77961 (finfo_open crafted magic parsing SIGABRT). (cmb)

build/php.m4

+1-1
Original file line numberDiff line numberDiff line change
@@ -498,7 +498,7 @@ dnl Internal, don't use.
498498
dnl
499499
AC_DEFUN([_PHP_ADD_LIBRARY_SKELETON],[
500500
case $1 in
501-
c|c_r|pthread*[)] ;;
501+
c|c_r[)] ;;
502502
*[)] ifelse($3,,[
503503
_PHP_X_ADD_LIBRARY($1,$2,$5)
504504
],[

0 commit comments

Comments
 (0)