pgeluk said:Same problem...
I saw in your phpinfo that you have it working now.
please let me know how I can fix it
if I do ./configure in the freetype directory:
---
GNU make (>= 3.79.1) or makepp (>= 1.19) is required to build FreeType2.
Please try
`GNUMAKE=<GNU make command name> ./configure'.
or >&2
`GNUMAKE="makepp --norc-substitution" ./configure'.
---
For FreeBSD 6.1
===========
# cd /usr/local/directadmin/customapache/
# wget http://download.savannah.gnu.org/releases/freetype/freetype-2.2.1.tar.gz
# tar zxf freetype-2.2.1.tar.gz
# cd freetype-2.2.1
vi configure
edit change make to gmake
# ./configure
# gmake
# gmake install
# cd ..
# cp build build.orig
# vi build
In function doGD replace:
./configure --with-png=/usr/local --with-jpeg=/usr/local --without-freetype --without-x
by:
./configure --with-png=/usr/local --with-jpeg=/usr/local --without-x --with-freetype=/usr/local/lib
# cp configure.php configure.php.orig
# vi configure.php
replace:
--with-gd \
--with-gd-dir=/usr/local \
by:
--with-gd \
--with-gd-dir=/usr/local/lib \
--with-freetype \
--with-freetype-dir=/usr/local/lib \
# ./build clean
# nice ./build gd
# yes | nice ./build php
# /usr/local/etc/rc.d/httpd restart