Cannot import ft2font on Mac OSX

Using the svn build from 2-25:
matplotlib.version = 1.0.svn
Python from Enthought:
Python 2.6.4 – EPD 6.0.0 (64-bit)

I get the following errors when I try to import ft2font:
Traceback (most recent call last):
File “./testme.py”, line 3, in
from matplotlib import ft2font
ImportError:
dlopen(/Library/Frameworks/EPD64.framework/Versions/6.0.0/lib/python2.6/sit
e-packages/matplotlib/ft2font.so, 2): Symbol not found: _FT_Attach_File
Referenced from:
/Library/Frameworks/EPD64.framework/Versions/6.0.0/lib/python2.6/site-packa
ges/matplotlib/ft2font.so
Expected in: flat namespace
in
/Library/Frameworks/EPD64.framework/Versions/6.0.0/lib/python2.6/site-packa
ges/matplotlib/ft2font.so

My code looks like this:
#!/usr/bin/env python

from matplotlib import ft2font

print ‘Hello world’