最近在64位系統上編譯5.4.5版的PHP時,遇到報以下錯:
- checking for DSA_get_default_method in -lssl... yes
- checking for X509_free in -lcrypto... yes
- checking for pkg-config... /usr/bin/pkg-config
- configure: error: Cannot find OpenSSL's libraries
指定的編譯參數:
- ./configure \
- --prefix=/usr/local/services/php-5.4.5 \
- --with-config-file-path=/usr/local/services/php-5.4.5/etc \
- --enable-fpm \
- --enable-mbstring \
- --enable-soap \
- --enable-sockets \
- --enable-zip \
- --with-curl=/usr \
- --with-mysql=mysqlnd \
- --with-mysqli=mysqlnd \
- --with-pdo-mysql=mysqlnd \
- --with-gd \
- --with-jpeg-dir=/usr \
- --with-png-dir=/usr \
- --with-zlib-dir=/usr \
- --with-freetype-dir=/usr \
- --with-openssl=/usr
找不到openssl的庫文件,但我明明有安裝openssl-devel的,很奇怪,網上搜了一下,發現有很多朋友,遇到了同樣的問題,有些人說--with-openssl不指定路徑可解決,嘗試了一下,的確編譯通過了,但想不通,Why?後來,又搜了一些文章來看,終於找出問題的根源:安裝的系統是64位的,而64位的用戶庫文件默認是在/usr/lib64,而我編譯的時候,沒有指定--with-libdir=lib64,而編譯腳本默認是lib,這當然是找不到的。
將編譯參數更改為:
- ./configure \
- --prefix=/usr/local/services/php-5.4.5 \
- --with-config-file-path=/usr/local/services/php-5.4.5/etc \
- --enable-fpm \
- --enable-mbstring \
- --enable-soap \
- --enable-sockets \
- --enable-zip \
- --with-curl=/usr \
- --with-mysql=mysqlnd \
- --with-mysqli=mysqlnd \
- --with-pdo-mysql=mysqlnd \
- --with-gd \
- --with-jpeg-dir=/usr \
- --with-png-dir=/usr \
- --with-zlib-dir=/usr \
- --with-freetype-dir=/usr \
- --with-openssl=/usr \
- --with-libdir=lib64
問題解決。