Actions
Bug #4477
closedphp-fpm linked against obsolete libpcre version
Status:
Rejected
Priority:
Normal
Assignee:
-
Category:
Operating System
Target version:
-
Start date:
02/26/2015
Due date:
% Done:
0%
Estimated time:
Plus Target Version:
Release Notes:
Affected Version:
2.2.1
Affected Architecture:
All
Description
This regressed somewhere after 2.2 release and been going for ever since the 2.2.1 snapshots have been made available.
$ cat /etc/version.buildtime
Thu Feb 26 04:18:34 CST 2015
$ ldd `which php-fpm`
/usr/local/sbin/php-fpm:
libcrypt.so.5 => /lib/libcrypt.so.5 (0x28380000)
libpcre.so.1 => /usr/local/lib/libpcre.so.1 (0x283a4000)
libm.so.5 => /lib/libm.so.5 (0x28419000)
libxml2.so.2 => /usr/local/lib/libxml2.so.2 (0x2843f000)
libz.so.6 => /lib/libz.so.6 (0x285af000)
libthr.so.3 => /lib/libthr.so.3 (0x285c3000)
libc.so.7 => /lib/libc.so.7 (0x285e5000)
liblzma.so.5 => /usr/lib/liblzma.so.5 (0x28744000)
On 2.2 release:
$ ldd `which php-fpm`
/usr/local/sbin/php-fpm:
libcrypt.so.5 => /lib/libcrypt.so.5 (0x28380000)
libpcre.so.3 => /usr/local/lib/libpcre.so.3 (0x283a4000)
libm.so.5 => /lib/libm.so.5 (0x28419000)
libxml2.so.2 => /usr/local/lib/libxml2.so.2 (0x2843f000)
libz.so.6 => /lib/libz.so.6 (0x285af000)
libthr.so.3 => /lib/libthr.so.3 (0x285c3000)
libc.so.7 => /lib/libc.so.7 (0x285e5000)
liblzma.so.5 => /usr/lib/liblzma.so.5 (0x28744000)
Updated by Renato Botelho almost 11 years ago
- Status changed from New to Rejected
It's not obsolete, a change was made on pcre on FreeBSD port and a hack was removed, because of that the version has changed. on FreeBSD tree libpcre.so.3 is a symlink to libpcre.so.1. Here you can see details:
https://svnweb.freebsd.org/ports?view=revision&revision=374303
Actions