SDL_ttf on OS X

Like the subject says, I’m trying to get SDL_ttf (2.0.7) working under
OS X (10.3.9). SDL (1.2.8) is installed and works fine, FreeType
(2.1.9) installed without complaint. ./configure of SDL_ttf rendered
the following:

– snip –
checking for freetype-config… /usr/local/bin/freetype-config
checking for sdl-config… no
checking for SDL - version >= 1.2.4… no
*** The sdl-config script installed by SDL could not be found
*** If SDL was installed in PREFIX, make sure PREFIX/bin is in
*** your path, or set the SDL_CONFIG environment variable to the
*** full path to sdl-config.
configure: error: *** SDL version 1.2.4 not found!------------

I just need it for one project, so I just copied SDL_ttf.c and .h into
the project directory, added them to the list of classes, and added
the Freetype directories to the headers search path. It compiles
(using Xcode), giving only one complaint:

breakout:0: Undefined symbols: _FT_Done_Face _FT_Done_FreeType
_FT_Get_Char_Index _FT_Get_Kerning _FT_Init_FreeType _FT_Load_Glyph
_FT_MulFix _FT_Open_Face _FT_Outline_Transform _FT_Render_Glyph
_FT_Set_Char_Size _FT_Set_Pixel_Sizes

Any ideas?

Seth Warn