Chris Muench
Chris Muench

Reputation: 18318

Mac OS X 10.10 php 5.5.14 free type support

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

Answers (2)

s-hunter
s-hunter

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

max
max

Reputation: 102134

I would install homebrew and then use:

brew install freetype

Upvotes: 3

Related Questions