Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
michael@0 | 1 | The git archive doesn't contain pre-built configuration scripts for |
michael@0 | 2 | UNIXish platforms. To generate them say |
michael@0 | 3 | |
michael@0 | 4 | sh autogen.sh |
michael@0 | 5 | |
michael@0 | 6 | which in turn depends on the following packages: |
michael@0 | 7 | |
michael@0 | 8 | automake (1.10.1) |
michael@0 | 9 | libtool (2.2.4) |
michael@0 | 10 | autoconf (2.62) |
michael@0 | 11 | |
michael@0 | 12 | The versions given in parentheses are known to work. Newer versions |
michael@0 | 13 | should work too, of course. Note that autogen.sh also sets up proper |
michael@0 | 14 | file permissions for the `configure' and auxiliary scripts. |
michael@0 | 15 | |
michael@0 | 16 | The autogen.sh script now checks the version of above three packages |
michael@0 | 17 | whether they match the numbers above. Otherwise it will complain and |
michael@0 | 18 | suggest either upgrading or using an environment variable to point to |
michael@0 | 19 | a more recent version of the required tool(s). |
michael@0 | 20 | |
michael@0 | 21 | Note that `aclocal' is provided by the `automake' package on Linux, |
michael@0 | 22 | and that `libtoolize' is called `glibtoolize' on Darwin (OS X). |
michael@0 | 23 | |
michael@0 | 24 | |
michael@0 | 25 | For static builds which don't use platform specific optimizations, no |
michael@0 | 26 | configure script is necessary at all; saying |
michael@0 | 27 | |
michael@0 | 28 | make setup ansi |
michael@0 | 29 | make |
michael@0 | 30 | |
michael@0 | 31 | should work on all platforms which have GNU make (or makepp). |
michael@0 | 32 | |
michael@0 | 33 | |
michael@0 | 34 | Similarly, a build with `cmake' can be done directly from the git |
michael@0 | 35 | repository. |
michael@0 | 36 | |
michael@0 | 37 | |
michael@0 | 38 | ---------------------------------------------------------------------- |
michael@0 | 39 | |
michael@0 | 40 | Copyright 2005-2010, 2013 by |
michael@0 | 41 | David Turner, Robert Wilhelm, and Werner Lemberg. |
michael@0 | 42 | |
michael@0 | 43 | This file is part of the FreeType project, and may only be used, |
michael@0 | 44 | modified, and distributed under the terms of the FreeType project |
michael@0 | 45 | license, LICENSE.TXT. By continuing to use, modify, or distribute |
michael@0 | 46 | this file you indicate that you have read the license and understand |
michael@0 | 47 | and accept it fully. |
michael@0 | 48 | |
michael@0 | 49 | |
michael@0 | 50 | --- end of README.git --- |