Я настраивал libpuzzle(https://github.com/jedisct1/libpuzzle) на моем VPS digitalocean (Ubuntu-17.04,4GB RAM, x64). Я прошел через README-PHP (https://github.com/jedisct1/libpuzzle/blob/master/README-PHP), в котором есть шаги для установки расширения:

  • cd php/libpuzzle (готово)
  • phpize (Готово ОК)
  • ./configure --with-libpuzzle (Ошибка)

Я получаю ошибку на третьем этапе. Вот ошибка:

root@ubuntu-s-1vcpu-1gb-blr1-01:/var/www/html/libpuzzle-

master/php/libpuzzle# ./configure --with-libconfigure: WARNING: unrecognized options: --with-lib
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for a sed that does not truncate output... /bin/sed
checking for cc... cc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether cc accepts -g... yes
checking for cc option to accept ISO C89... none needed
checking how to run the C preprocessor... cc -E
checking for icc... no
checking for suncc... no
checking whether cc understands -c and -o together... yes
checking for system library directory... lib
checking if compiler supports -R... no
checking if compiler supports -Wl,-rpath,... yes
checking build system type... x86_64-pc-linux-gnu
checking host system type... x86_64-pc-linux-gnu
checking target system type... x86_64-pc-linux-gnu
checking for PHP prefix... /usr
checking for PHP includes... -I/usr/include/php/20151012 -I/usr/include/php/20151012/main -I/usr/include/php/20151012/TSRM -I/usr/include/php/20151012/Zend -I/usr/include/php/20151012/ext -I/usr/include/php/20151012/ext/date/lib
checking for PHP extension directory... /usr/lib/php/20151012
checking for PHP installed headers prefix... /usr/include/php/20151012
checking if debug is enabled... no
checking if zts is enabled... no
checking for re2c... no
configure: WARNING: You will need re2c 0.13.4 or later if you want to regenerate PHP parsers.
checking for gawk... gawk
checking for libpuzzle support... yes, shared
./configure: line 3926: --ldflags: command not found
./configure: line 3927: --cflags: command not found
checking for libpuzzle files in default path... not found
configure: error: Please reinstall the libpuzzle distribution

Может кто-нибудь, пожалуйста, помогите? Я могу предоставить более подробную информацию, если это необходимо.

0