在将sources.list中的版本设置为7.0之后,我在Debian 6.0上安装了以下软件包:
的libssl-dev的
OpenSSL的
OpenSSL的常见
我已经验证了/usr/include/openssl/evp.h
存在777的权限,然后我运行了这样的./configure:
./configure --with-zlib-dir --with-freetype-dir --enable-mbstring --with-libxml-dir=/usr --enable-soap --enable-calendar --with-mcrypt --disable-rpath --enable-inline-optimization --with-zlib --enable-sockets --enable-sysvsem --enable-sysvshm --enable-pcntl --enable-mbregex --enable-exif --enable-bcmath --with-mhash --enable-zip --with-pcre-regex --with-mysql --with-pdo-mysql --with-mysqli --enable-gd-native-ttf --with-fpm-user=www-data --with-fpm-group=www-data --enable-ftp --with-kerberos --with-gettext --with-xmlrpc --enable-opcache --with-apxs2=/usr/bin/apxs2 --with-config-file-path=/etc/php5/apache2 --with-config-file-scan-dir=/etc/php5/conf.d --with-openssl-dir=/usr/include/openssl
但是,我仍然从configure中得到错误,找不到evp.h.
我很长一段时间都在努力解决这个问题,最终为我工作了:
而--with-openssl-dir=/usr/include/openssl
不仅仅是使用--with-openssl
如果./configure ...
找不到/usr/include/openssl/evp.h
它很可能你没有安装openssl,即标题.因此,如果您使用的是CentOs,首先应该:
yum install openssl-devel