Reputation: 18318
It appears the GD library is installed, but free type is not. How can I add this to my php installation in mac os x 10.10 system php install?
Upvotes: 4
Views: 6832
Reputation: 25816
To get this configured with php
brew remove --ignore-dependencies --force php71
brew install php71 --with-freetype
Then make sure to load this brew installed php into your apache httpd.config, and restart your apache server.
LoadModule php7_module /usr/local/opt/[email protected]/lib/httpd/modules/libphp7.so
Upvotes: 2