解決debian7下安裝GD擴充套件失敗的問題

錚亮不鏽發表於2016-10-09

失敗的提示為configure GD failed



./configure \

--prefix=/usr/local/php \
--with-config-file-path=/usr/local/php/etc \
--enable-inline-optimization \
--disable-debug \
--disable-rpath \
--enable-shared \
--enable-opcache \
--enable-fpm \
--with-fpm-user=www \
--with-fpm-group=www \
--with-mysql=mysqlnd \
--with-mysqli=mysqlnd \
--with-pdo-mysql=mysqlnd \
--with-gettext \
--enable-mbstring \
--with-iconv \
--with-mcrypt \
--with-mhash \
--enable-bcmath \
--enable-soap \
--with-libxml-dir \
--enable-pcntl \
--enable-shmop \
--enable-sysvmsg \
--enable-sysvsem \
--enable-sysvshm \
--enable-sockets \
--with-curl=/usr/local/curl \
--with-zlib=/usr/local/zlib \
--enable-zip \
--with-bz2 \
--with-readline \
--with-unixODBC=/usr/local/unixODBC \
--with-mysql-sock \
--enable-xml \
--with-libxml-dir=/usr/local/libxml2 \
--enable-session \
--enable-dom \
--with-libdir=/lib \
--with-gd  \
--with-jpeg-dir=/usr \
--with-png-dir=/usr \
--with-freetype-dir=/usr/lib/ \

--enable-gd-native-ttf





編譯選項中,原來

--with-gd  \
--with-jpeg-dir=/usr/local/jpeg6 \
--with-png-dir=/usr/local/libpng \
--with-freetype-dir=/usr/lib/freetype \

這幾個都是我重新下載並安裝的,是有問題的,所以用系統的比較好,主要用apt-get來安裝

apt-get install libjpeg-dev
apt-get install libpng12-dev
apt-get install libfreetype6-dev


然後改成

--with-gd  \
--with-jpeg-dir=/usr \
--with-png-dir=/usr \
--with-freetype-dir=/usr/lib/ \

--enable-gd-native-ttf


這樣既可以configure通過

相關文章