README.git 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. The git archive doesn't contain pre-built configuration scripts for
  2. UNIXish platforms. To generate them say
  3. sh autogen.sh
  4. which in turn depends on the following packages:
  5. automake (1.10.1)
  6. libtool (2.2.4)
  7. autoconf (2.62)
  8. The versions given in parentheses are known to work. Newer versions
  9. should work too, of course. Note that autogen.sh also sets up proper
  10. file permissions for the `configure' and auxiliary scripts.
  11. The autogen.sh script now checks the version of above three packages
  12. whether they match the numbers above. Otherwise it will complain and
  13. suggest either upgrading or using an environment variable to point to
  14. a more recent version of the required tool(s).
  15. Note that `aclocal' is provided by the `automake' package on Linux,
  16. and that `libtoolize' is called `glibtoolize' on Darwin (OS X).
  17. For static builds which don't use platform specific optimizations, no
  18. configure script is necessary at all; saying
  19. make setup ansi
  20. make
  21. should work on all platforms which have GNU make (or makepp).
  22. Similarly, a build with `cmake' can be done directly from the git
  23. repository.
  24. ----------------------------------------------------------------------
  25. Copyright (C) 2005-2019 by
  26. David Turner, Robert Wilhelm, and Werner Lemberg.
  27. This file is part of the FreeType project, and may only be used,
  28. modified, and distributed under the terms of the FreeType project
  29. license, LICENSE.TXT. By continuing to use, modify, or distribute
  30. this file you indicate that you have read the license and understand
  31. and accept it fully.
  32. --- end of README.git ---