small update
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
diff --git a/CHANGES b/CHANGES
index 44bdb3e..d9d5816 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,5 +1,10 @@
LATEST CHANGES
+ - deactivated the trueType bytecode interpreter by default
+
+ - deactivated the "src/type1" font driver. Now "src/type1z" is
+ used by default..
+
- updates to the build system. We now compile the library correctly
under Unix system through "configure" which is automatically called
on the first "make" invocation.
diff --git a/INSTALL b/INSTALL
index 3a14c68..57756bd 100644
--- a/INSTALL
+++ b/INSTALL
@@ -1,5 +1,36 @@
-We do not provide INSTALLATION instructions for now, as FreeType 2 is
-still in beta.
+This is beta software. For now, we only provide installation instructions
+for Unix:
+
+ 1. Build the library (see below)
+ 2. type "make install" (make uninstall provided too)
+
+the library name is "libfreetype.so" (FreeType 1.x uses "libttf.so")
+
+In order to build the library, read the "BUILD" document in the "docs"
+directory. Quick starter: go to "freetype2-beta8", then:
+
+
+ Unix (+GNU Make):
+
+ - make
+ - make
+
+
+ Windows + gcc + GNU Make:
+
+ - make
+ - make
+
+ Windows + Visual C++ + GNU Make:
+
+ - make setup visualc
+ - make
+
+ Windows + Win32-LCC + GNU Make:
+
+ - make setup lcc
+ - make
+
+ etc...
+
-Note however that you'll find instructions on how to compile the library
-in the "BUILD" document in the "docs" directory..