🛠️🐜 Antkeeper superbuild with dependencies included https://antkeeper.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
1.4 KiB

  1. Please follow the instructions in INSTALL.UNIX to install FreeType on
  2. Mac OS X.
  3. Currently FreeType2 functions based on some deprecated Carbon APIs
  4. return `FT_Err_Unimplemented_Feature' always, even if FreeType2 is
  5. configured and built on the system that deprecated Carbon APIs are
  6. available. To enable deprecated FreeType2 functions as far as
  7. possible, replace `src/base/ftmac.c' by `builds/mac/ftmac.c'.
  8. Starting with Mac OS X 10.5, gcc defaults the deployment target to
  9. 10.5. In previous versions of Mac OS X, this defaulted to 10.1. If
  10. you want your built binaries to run only on 10.5, this change does not
  11. concern you. If you want them to also run on older versions of Mac
  12. OS X, then you must either set the MACOSX_DEPLOYMENT_TARGET
  13. environment variable or pass `-mmacosx-version-min' to gcc. You
  14. should specify the oldest version of Mac OS you want the code to run
  15. on. For example, if you use Bourne shell:
  16. export MACOSX_DEPLOYMENT_TARGET=10.2
  17. or, if you use C shell:
  18. setenv MACOSX_DEPLOYMENT_TARGET 10.2
  19. Alternatively, you could pass `-mmacosx-version-min=10.2' to gcc.
  20. Here the number 10.2 is the lowest version that the built binaries can
  21. run on. In the above cases, the built binaries will run on Mac OS X
  22. 10.2 and later, but _not_ earlier. If you want to run on earlier, you
  23. have to set lower version, e.g., 10.0.
  24. For classic Mac OS (Mac OS 7, 8, 9) please refer to builds/mac/README.