Я собрал libmcrypt
от источника до /home/mybin/...
с последующим подтверждением в качестве местоположения необходимых файлов.
/home/mybin/include/mcrypt.h
/home/mybin/include/mutils/mcrypt.h
/home/mybin/lib/libmcrypt.so ...> 4.4.8
/home/mybin/bin/libmcrypt-config
Когда я пытаюсь ./configure для php7, используя следующие параметры, я получаю сообщение об ошибке configure: error: mcrypt.h not found. Please reinstall libmcrypt.
Какие флаги я неправильно использую, чтобы указать gcc посмотреть в ../include
каталог для mcrypt.h
./configure \
CC=/home/mybin/bin/gcc \
CPPFLAGS="-I/home/mybin/include" \
LDFLAGS="-L/home/mybin/lib" \
LIBS="-lmcrypt" \
--prefix=/home/_cgi/php7 \
--bindir=/home/mybin/bin \
--libdir=/home/mybin/lib \
--includedir=/home/mybin/include \
--with-mcrypt=/home/mybin/lib
от configure --help
я получил
Some influential environment variables:
CC C compiler command
CFLAGS C compiler flags
LDFLAGS linker flags, e.g. -L<lib dir> if you have libraries in a
nonstandard directory <lib dir>
LIBS libraries to pass to the linker, e.g. -l<library>
CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I<include dir> if
you have headers in a nonstandard directory <include dir>
CPP C preprocessor
YACC The `Yet Another Compiler Compiler' implementation to use.
Defaults to the first program found out of: `bison -y', `byacc',
`yacc'.
YFLAGS The list of arguments that will be passed by default to $YACC.
This script will default YFLAGS to the empty string to avoid a
default value of `-d' given by some make applications.
CXX C++ compiler command
CXXFLAGS C++ compiler flags
CXXCPP C++ preprocessor
Fine tuning of the installation directories:
--bindir=DIR user executables [EPREFIX/bin]
--sbindir=DIR system admin executables [EPREFIX/sbin]
--libexecdir=DIR program executables [EPREFIX/libexec]
--sysconfdir=DIR read-only single-machine data [PREFIX/etc]
--sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com]
--localstatedir=DIR modifiable single-machine data [PREFIX/var]
--libdir=DIR object code libraries [EPREFIX/lib]
--includedir=DIR C header files [PREFIX/include]
--oldincludedir=DIR C header files for non-gcc [/usr/include]
--datarootdir=DIR read-only arch.-independent data root [PREFIX/share]
--datadir=DIR read-only architecture-independent data [DATAROOTDIR]
--infodir=DIR info documentation [DATAROOTDIR/info]
--localedir=DIR locale-dependent data [DATAROOTDIR/locale]
--mandir=DIR man documentation [DATAROOTDIR/man]
--docdir=DIR documentation root [DATAROOTDIR/doc/PACKAGE]
--htmldir=DIR html documentation [DOCDIR]
--dvidir=DIR dvi documentation [DOCDIR]
--pdfdir=DIR pdf documentation [DOCDIR]
--psdir=DIR ps documentation [DOCDIR]
--with-mcrypt=DIR Include mcrypt support
Давайте посмотрим, откуда появилась эта ошибка в дереве исходников php7:
php-7.0.4$ grep -r 'mcrypt.h not found. Please reinstall libmcrypt'
ext/mcrypt/config.m4: AC_MSG_ERROR(mcrypt.h not found. Please reinstall libmcrypt.)
configure: as_fn_error $? "mcrypt.h not found. Please reinstall libmcrypt." "$LINENO" 5
Мы можем игнорировать configure
так как это сгенерированный файл, так что из этого m4
макрос ext/mcrypt/config.m4
, Давайте посмотрим на контекст:
...
if test "$PHP_MCRYPT" != "no"; then
for i in $PHP_MCRYPT /usr/local /usr; do
test -f $i/include/mcrypt.h && MCRYPT_DIR=$i && break
done
if test -z "$MCRYPT_DIR"; then
AC_MSG_ERROR(mcrypt.h not found. Please reinstall libmcrypt.)
fi
...
Теперь все становится ясно. Если $PHP_MCRYPT
не «нет», то его
ценность DIR
согласно --with-mcrypt[=DIR]
то есть каталог
путь или ничего.
Если ничего mcrypt.h
ищется в:
/usr/local/include
(libmcrypt
был установлен по умолчанию make install
)/usr/include
(libmcrypt
был установлен менеджером пакетов дистрибутива)Если это не ничего, то mcrypt.h
дополнительно (и для предпочтения) посмотрел
для в:
$PHP_MCRYPT/include
(libmcrypt
был установлен не по умолчанию make install
в $PHP_MCRYPT
)Так что, если вы укажете --with-mcrypt=DIR
, затем DIR
должен быть вашим монтаж
префикс для libmcrypt
, не каталог, содержащий libmcrypt.so
,
Итак, ваше решение, изменить:
--with-mcrypt=/home/mybin/lib
чтобы:
--with-mcrypt=/home/mybin
Других решений пока нет …