Please follow the instructions in INSTALL.UNIX to install FreeType onMac OS X.Currently FreeType2 functions based on some deprecated Carbon APIsreturn FT_Err_Unimplemented_Feature always, even if FreeType2 isconfigured and built on the system that deprecated Carbon APIs areavailable. To enable deprecated FreeType2 functions as far as possible,replace src/base/ftmac.c by builds/mac/ftmac.c.Starting with Mac OS X 10.5, gcc defaults the deployment targetto 10.5. In previous versions of Mac OS X, this defaulted to 10.1.If you want your built binaries to run only on 10.5, this changedoes not concern you. If you want them to also run on older versionsof Mac OS X, then you must either set the MACOSX_DEPLOYMENT_TARGETenvironment variable or pass -mmacosx-version-min to gcc. You shouldspecify the oldest version of Mac OS you want the code to run on.For example, if you use Bourne shell: export MACOSX_DEPLOYMENT_TARGET=10.2or, if you use C shell: setenv MACOSX_DEPLOYMENT_TARGET 10.2Alternatively, you could pass "-mmacosx-version-min=10.2" to gcc.Here the number 10.2 is the lowest version that the built binariescan run on. In the cases in above, the built binaries will run onMac OS X 10.2 and later, but _not_ earlier. If you want to run onearlier, you have to set lower version, e.g. 10.0.For classic Mac OS (Mac OS 7, 8, 9) please refer to builds/mac/README.