Commit 968f0c3749d3910c312bf57fd74750d35b399e08

David Turner 2000-05-16T23:26:01

update

diff --git a/CHANGES b/CHANGES
index 54424ed..7178efc 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,5 +1,20 @@
 LATEST CHANGES - 
 
+  - tagged "BETA-6" in the CVS tree. This one is a serious release candidate
+    even though it doesn't incorporate the auto-hinter yet..
+
+  - various obsolete files were removed, and copyright header updated
+
+  - finally updated the standard raster to fix the monochrome rendering bug
+    + re-enable support for 5-gray levels anti-aliasing (suck, suck..)
+
+  - created new header files, and modified sources accordingly:
+  
+       <freetype/fttypes.h>           - simple FreeType types, without the API
+       <freetype/internal/ftmemory.h> - definition of memory-management macros
+
+  - added the "DSIG" (OpenType Digital Signature) tag to <freetype/tttags.h>
+
   - light update/cleaning of the build system + changes to the sources in
     order to get rid of _all_ compiler warnings with three compilers, i.e:
 
@@ -126,7 +141,7 @@ LATEST CHANGES -
 
 
     Compiling a module is now much easier, for example, the following should
-    work when in the TOP directory on an ANSI system:
+    work when in the TOP directory on an ANSI build:
     
        gcc -c -I./include -I./src/base src/base/ftbase.c
        gcc -c -I./include -I./src/sfnt src/sfnt/sfnt.c
diff --git a/demos/Makefile b/demos/Makefile
index c88e7ac..8d3ce7f 100644
--- a/demos/Makefile
+++ b/demos/Makefile
@@ -193,17 +193,6 @@ else
   $(OBJ_)compos.$O: $(SRC_DIR_)compos.c
 	  $(COMPILE) $T$@ $<
 
-  $(OBJ_)ftgrays2.$O: $(SRC_DIR_)ftgrays2.c
-	  $(COMPILE) $T$@ $<
-
-  EXTRA_GRAPH_OBJS := $(OBJ_)ftrast.$O $(OBJ_)ftrast2.$O
-
-  $(OBJ_)ftrast.$O: $(SRC_DIR_)ftrast.c
-	  $(COMPILE) $T$@ $<
-
-  $(OBJ_)ftrast2.$O: $(SRC_DIR_)ftrast2.c
-	  $(COMPILE) $T$@ $<
-
   $(OBJ_)fttry.$O: $(SRC_DIR_)fttry.c
 	  $(COMPILE) $T$@ $<
 
@@ -214,14 +203,9 @@ else
   $(OBJ_)ftstring.$O: $(SRC_DIR_)ftstring.c $(GRAPH_LIB)
 	  $(COMPILE) $(GRAPH_INCLUDES:%=$I%) $T$@ $<
 
-  $(OBJ_)try.$O: $(SRC_DIR_)try.c $(GRAPH_LIB)
-	  $(COMPILE) $(GRAPH_INCLUDES:%=$I%) $T$@ $<
-
   $(OBJ_)fttimer.$O: $(SRC_DIR_)fttimer.c $(GRAPH_LIB)
 	  $(COMPILE) $(GRAPH_INCLUDES:%=$I%) $T$@ $<
 
-  $(OBJ_)fttimer2.$O: $(SRC_DIR_)fttimer2.c $(GRAPH_LIB)
-	  $(COMPILE) $(GRAPH_INCLUDES:%=$I%) $T$@ $<
 
 
 # $(OBJ_)ftsbit.$O: $(SRC_DIR)/ftsbit.c $(GRAPH_LIB)