Failing to build PHP 7.4

ChiefZigZag

Verified User
Joined
Feb 17, 2020
Messages
47
Attempted to build PHP 7.4 on FreeBSD 12.1 64-bit stopped with the following error:


#./build set php1_release 7.3
#./build set php2_release 7.4
#./build php d
...
Configuring extensions
checking io.h usability... no
checking io.h presence... no
checking for io.h... no
checking for strtoll... yes
checking for atoll... yes
checking whether to build with LIBXML support... yes
checking for libxml-2.0 >= 2.7.6... no
configure: error: in `/usr/local/directadmin/custombuild/php-7.4.2':
configure: error: The pkg-config script could not be found or is too old. Make sure it
is in your PATH or set the PKG_CONFIG environment variable to the full
path to pkg-config.

Alternatively, you may set the environment variables LIBXML_CFLAGS
and LIBXML_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.

To get pkg-config, see <http://pkg-config.freedesktop.org/>.
See `config.log' for more details

*** There was an error while trying to configure php. Check the configure file
 
I guess this will help:

Code:
cd /usr/ports/devel/pkgconf
make install
Works now.. Instead of using the ports tree, I used the package manager and I found I needed a few more packages:
Code:
pkg install pkgconf krb5 openssl
 
After further testing it didnt work.
Code:
root@admin:/bin # /usr/local/php74/bin/php74 -v
ld-elf.so.1: /usr/local/php74/bin/php74: Undefined symbol "ubrk_next_65"
 
Back
Top