* builds/vms: Support files for VMS architecture added.
* descrip.mms, src/*/descrip.mms: VMS makefiles added.
* README.VMS: New file.


* LICENSE.TXT: Added info about PCF driver license.
diff --git a/ChangeLog b/ChangeLog
index 1f7d0a2..fbc1af8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2000-01-02  Jouk Jansen  <joukj@hrem.stm.tudelft.nl>
+
+	* builds/vms: Support files for VMS architecture added.
+	* descrip.mms, src/*/descrip.mms: VMS makefiles added.
+	* README.VMS: New file.
+
+2000-01-01  Werner Lemberg  <wl@gnu.org>
+
+	* LICENSE.TXT: Added info about PCF driver license.
+
 2001-01-01  Francesco Zappa Nardelli  <francesco.zappa.nardelli@ens.fr>
 
 	* src/pcf/*: New driver module for PCF font format (used in
diff --git a/LICENSE.TXT b/LICENSE.TXT
index 6780d12..741bc9f 100644
--- a/LICENSE.TXT
+++ b/LICENSE.TXT
@@ -5,3 +5,6 @@
   . The FreeType License, in file `docs/FTL.txt'.
 
   . The GNU General Public License, in file `docs/GPL.txt'.
+
+The contributed PCF driver comes with a license similar to that of X Windows
+which is compatible to the above two licenses (see file src/pcf/readme).
diff --git a/README.VMS b/README.VMS
new file mode 100644
index 0000000..a82b9fd
--- /dev/null
+++ b/README.VMS
@@ -0,0 +1,35 @@
+How to build the freetype2 library on VMS
+-----------------------------------------
+
+Just type one of the following depending on the type of external entries you
+want:
+
+  mms
+
+or
+
+  mms/macro=("COMP_FLAGS=/name=(as_is,short)")
+
+The library is avalaible in the directory
+
+  [.LIB]
+
+To compile applications using freetype2 you'll need to define the logical
+FREETYPE pointing to the directory
+
+  [.INCLUDE.FREETYPE]
+
+(i.e., if the directory in which this README.VMS file is located is
+$disk:[freetype] then define the logical with
+
+  define freetype $disk:[freetype.include.freetype]
+
+This version has been tested with Compaq C V6.2-006 on OpenVMS Alpha V7.2-1.
+
+
+  Any problems can be reported to
+
+    joukj@hrem.stm.tudelft.nl
+
+
+      Jouk Jansen
diff --git a/descrip.mms b/descrip.mms
new file mode 100644
index 0000000..72aa291
--- /dev/null
+++ b/descrip.mms
@@ -0,0 +1,65 @@
+#
+# FreeType 2 build system -- top-level Makefile for VMS
+#
+
+
+# Copyright 2001 by
+# David Turner, Robert Wilhelm, and Werner Lemberg.
+#
+# This file is part of the FreeType project, and may only be used, modified,
+# and distributed under the terms of the FreeType project license,
+# LICENSE.TXT.  By continuing to use, modify, or distribute this file you
+# indicate that you have read the license and understand and accept it
+# fully.
+
+
+all :
+     	define freetype [--.include.freetype] 
+     	define psaux [-.psaux] 
+     	define autohint [-.autohint] 
+     	define base [-.base] 
+     	define cache [-.cache] 
+     	define cff [-.cff] 
+     	define cid [-.cid] 
+     	define pcf [-.pcf] 
+     	define psnames [-.psnames] 
+     	define raster [-.raster] 
+     	define sfnt [-.sfnt] 
+     	define smooth [-.smooth] 
+     	define truetype [-.truetype] 
+     	define type1 [-.type1] 
+     	define winfonts [-.winfonts] 
+	if f$search("lib.dir") .eqs. "" then create/directory [.lib]
+	set default [.builds.vms]
+	$(MMS)$(MMSQUALIFIERS)
+	set default [--.src.autohint]
+	$(MMS)$(MMSQUALIFIERS)
+	set default [-.base]
+	$(MMS)$(MMSQUALIFIERS)
+	set default [-.cache]
+	$(MMS)$(MMSQUALIFIERS)
+	set default [-.cff]
+	$(MMS)$(MMSQUALIFIERS)
+	set default [-.cid]
+	$(MMS)$(MMSQUALIFIERS)
+	set default [-.pcf]
+	$(MMS)$(MMSQUALIFIERS)
+	set default [-.psaux]
+	$(MMS)$(MMSQUALIFIERS)
+	set default [-.psnames]
+	$(MMS)$(MMSQUALIFIERS)
+	set default [-.raster]
+	$(MMS)$(MMSQUALIFIERS)
+	set default [-.sfnt]
+	$(MMS)$(MMSQUALIFIERS)
+	set default [-.smooth]
+	$(MMS)$(MMSQUALIFIERS)
+	set default [-.truetype]
+	$(MMS)$(MMSQUALIFIERS)
+	set default [-.type1]
+	$(MMS)$(MMSQUALIFIERS)
+	set default [-.winfonts]
+	$(MMS)$(MMSQUALIFIERS)
+	set default [--]
+
+# EOF
diff --git a/src/autohint/descrip.mms b/src/autohint/descrip.mms
new file mode 100644
index 0000000..80b4f7f
--- /dev/null
+++ b/src/autohint/descrip.mms
@@ -0,0 +1,25 @@
+#
+# FreeType 2 auto-hinter module compilation rules for VMS
+#
+
+
+# Copyright 2001 Catharon Productions Inc.
+#
+# This file is part of the Catharon Typography Project and shall only
+# be used, modified, and distributed under the terms of the Catharon
+# Open Source License that should come with this file under the name
+# `CatharonLicense.txt'.  By continuing to use, modify, or distribute
+# this file you indicate that you have read the license and
+# understand and accept it fully.
+#
+# Note that this license is compatible with the FreeType license.
+
+
+CFLAGS=$(COMP_FLAGS)$(DEBUG)/incl=[--.include]
+
+OBJS=autohint.obj
+
+all : $(OBJS)
+	library [--.lib]freetype.olb $(OBJS)
+
+# EOF
diff --git a/src/base/descrip.mms b/src/base/descrip.mms
new file mode 100644
index 0000000..9c4bfb7
--- /dev/null
+++ b/src/base/descrip.mms
@@ -0,0 +1,23 @@
+#
+# FreeType 2 base layer compilation rules for VMS
+#
+
+
+# Copyright 2001 by
+# David Turner, Robert Wilhelm, and Werner Lemberg.
+#
+# This file is part of the FreeType project, and may only be used, modified,
+# and distributed under the terms of the FreeType project license,
+# LICENSE.TXT.  By continuing to use, modify, or distribute this file you
+# indicate that you have read the license and understand and accept it
+# fully.
+
+
+CFLAGS=$(COMP_FLAGS)$(DEBUG)/include=([--.builds.vms],[--.include])
+
+OBJS=ftbase.obj,ftinit.obj,ftglyph.obj
+
+all : $(OBJS)
+	library [--.lib]freetype.olb $(OBJS)
+
+# EOF
diff --git a/src/cache/descrip.mms b/src/cache/descrip.mms
new file mode 100644
index 0000000..0c59295
--- /dev/null
+++ b/src/cache/descrip.mms
@@ -0,0 +1,23 @@
+#
+# FreeType 2 Cache compilation rules for VMS
+#
+
+
+# Copyright 2001 by
+# David Turner, Robert Wilhelm, and Werner Lemberg.
+#
+# This file is part of the FreeType project, and may only be used, modified,
+# and distributed under the terms of the FreeType project license,
+# LICENSE.TXT.  By continuing to use, modify, or distribute this file you
+# indicate that you have read the license and understand and accept it
+# fully.
+
+
+CFLAGS=$(COMP_FLAGS)$(DEBUG)/include=[--.include]
+
+OBJS=ftcache.obj
+
+all : $(OBJS)
+	library [--.lib]freetype.olb $(OBJS)
+
+# EOF
diff --git a/src/cff/descrip.mms b/src/cff/descrip.mms
new file mode 100644
index 0000000..d51f7ee
--- /dev/null
+++ b/src/cff/descrip.mms
@@ -0,0 +1,23 @@
+#
+# FreeType 2 OpenType/CFF driver compilation rules for VMS
+#
+
+
+# Copyright 2001 by
+# David Turner, Robert Wilhelm, and Werner Lemberg.
+#
+# This file is part of the FreeType project, and may only be used, modified,
+# and distributed under the terms of the FreeType project license,
+# LICENSE.TXT.  By continuing to use, modify, or distribute this file you
+# indicate that you have read the license and understand and accept it
+# fully.
+
+
+CFLAGS=$(COMP_FLAGS)$(DEBUG)/include=[--.include]
+
+OBJS=cff.obj
+
+all : $(OBJS)
+	library [--.lib]freetype.olb $(OBJS)
+
+# EOF
diff --git a/src/cid/descrip.mms b/src/cid/descrip.mms
new file mode 100644
index 0000000..1e261a7
--- /dev/null
+++ b/src/cid/descrip.mms
@@ -0,0 +1,23 @@
+#
+# FreeType 2 CID driver compilation rules for VMS
+#
+
+
+# Copyright 2001 by
+# David Turner, Robert Wilhelm, and Werner Lemberg.
+#
+# This file is part of the FreeType project, and may only be used, modified,
+# and distributed under the terms of the FreeType project license,
+# LICENSE.TXT.  By continuing to use, modify, or distribute this file you
+# indicate that you have read the license and understand and accept it
+# fully.
+
+
+CFLAGS=$(COMP_FLAGS)$(DEBUG)/include=[--.include]
+
+OBJS=type1cid.obj
+
+all : $(OBJS)
+	library [--.lib]freetype.olb $(OBJS)
+
+# EOF
diff --git a/src/pcf/descrip.mms b/src/pcf/descrip.mms
new file mode 100644
index 0000000..d576ddc
--- /dev/null
+++ b/src/pcf/descrip.mms
@@ -0,0 +1,35 @@
+#
+# FreeType 2 pcf driver compilation rules for VMS
+#
+
+
+# Copyright (C) 2001 by
+# Francesco Zappa Nardelli
+#
+# Permission is hereby granted, free of charge, to any person obtaining a copy
+# of this software and associated documentation files (the "Software"), to deal
+# in the Software without restriction, including without limitation the rights
+# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+# copies of the Software, and to permit persons to whom the Software is
+# furnished to do so, subject to the following conditions:
+#
+# The above copyright notice and this permission notice shall be included in
+# all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
+# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+# THE SOFTWARE.
+
+
+CFLAGS=$(COMP_FLAGS)$(DEBUG)/include=[--.include]
+
+OBJS=pcf.obj
+
+all : $(OBJS)
+	library [--.lib]freetype.olb $(OBJS)
+
+# EOF
diff --git a/src/psaux/descrip.mms b/src/psaux/descrip.mms
new file mode 100644
index 0000000..8f0e490
--- /dev/null
+++ b/src/psaux/descrip.mms
@@ -0,0 +1,23 @@
+#
+# FreeType 2 PSaux driver compilation rules for VMS
+#
+
+
+# Copyright 2001 by
+# David Turner, Robert Wilhelm, and Werner Lemberg.
+#
+# This file is part of the FreeType project, and may only be used, modified,
+# and distributed under the terms of the FreeType project license,
+# LICENSE.TXT.  By continuing to use, modify, or distribute this file you
+# indicate that you have read the license and understand and accept it
+# fully.
+
+
+CFLAGS=$(COMP_FLAGS)$(DEBUG)/include=[--.include]
+
+OBJS=psaux.obj
+
+all : $(OBJS)
+	library [--.lib]freetype.olb $(OBJS)
+
+# EOF
diff --git a/src/psnames/descrip.mms b/src/psnames/descrip.mms
new file mode 100644
index 0000000..a21e704
--- /dev/null
+++ b/src/psnames/descrip.mms
@@ -0,0 +1,23 @@
+#
+# FreeType 2 PSNames driver compilation rules for VMS
+#
+
+
+# Copyright 2001 by
+# David Turner, Robert Wilhelm, and Werner Lemberg.
+#
+# This file is part of the FreeType project, and may only be used, modified,
+# and distributed under the terms of the FreeType project license,
+# LICENSE.TXT.  By continuing to use, modify, or distribute this file you
+# indicate that you have read the license and understand and accept it
+# fully.
+
+
+CFLAGS=$(COMP_FLAGS)$(DEBUG)/include=[--.include]
+
+OBJS=psnames.obj
+
+all : $(OBJS)
+	library [--.lib]freetype.olb $(OBJS)
+
+# EOF
diff --git a/src/raster/descrip.mms b/src/raster/descrip.mms
new file mode 100644
index 0000000..03c48b7
--- /dev/null
+++ b/src/raster/descrip.mms
@@ -0,0 +1,23 @@
+#
+# FreeType 2 renderer module compilation rules for VMS
+#
+
+
+# Copyright 2001 by
+# David Turner, Robert Wilhelm, and Werner Lemberg.
+#
+# This file is part of the FreeType project, and may only be used, modified,
+# and distributed under the terms of the FreeType project license,
+# LICENSE.TXT.  By continuing to use, modify, or distribute this file you
+# indicate that you have read the license and understand and accept it
+# fully.
+
+
+CFLAGS=$(COMP_FLAGS)$(DEBUG)/include=[--.include]
+
+OBJS=raster.obj
+
+all : $(OBJS)
+	library [--.lib]freetype.olb $(OBJS)
+
+# EOF
diff --git a/src/sfnt/descrip.mms b/src/sfnt/descrip.mms
new file mode 100644
index 0000000..b32c291
--- /dev/null
+++ b/src/sfnt/descrip.mms
@@ -0,0 +1,23 @@
+#
+# FreeType 2 SFNT driver compilation rules for VMS
+#
+
+
+# Copyright 2001 by
+# David Turner, Robert Wilhelm, and Werner Lemberg.
+#
+# This file is part of the FreeType project, and may only be used, modified,
+# and distributed under the terms of the FreeType project license,
+# LICENSE.TXT.  By continuing to use, modify, or distribute this file you
+# indicate that you have read the license and understand and accept it
+# fully.
+
+
+CFLAGS=$(COMP_FLAGS)$(DEBUG)/include=[--.include]
+
+OBJS=sfnt.obj
+
+all : $(OBJS)
+	library [--.lib]freetype.olb $(OBJS)
+
+# EOF
diff --git a/src/smooth/descrip.mms b/src/smooth/descrip.mms
new file mode 100644
index 0000000..1e534e3
--- /dev/null
+++ b/src/smooth/descrip.mms
@@ -0,0 +1,23 @@
+#
+# FreeType 2 smooth renderer module compilation rules for VMS
+#
+
+
+# Copyright 2001 by
+# David Turner, Robert Wilhelm, and Werner Lemberg.
+#
+# This file is part of the FreeType project, and may only be used, modified,
+# and distributed under the terms of the FreeType project license,
+# LICENSE.TXT.  By continuing to use, modify, or distribute this file you
+# indicate that you have read the license and understand and accept it
+# fully.
+
+
+CFLAGS=$(COMP_FLAGS)$(DEBUG)/include=[--.include]
+
+OBJS=smooth.obj
+
+all : $(OBJS)
+	library [--.lib]freetype.olb $(OBJS)
+
+# EOF
diff --git a/src/truetype/descrip.mms b/src/truetype/descrip.mms
new file mode 100644
index 0000000..d0dda96
--- /dev/null
+++ b/src/truetype/descrip.mms
@@ -0,0 +1,23 @@
+#
+# FreeType 2 TrueType driver compilation rules for VMS
+#
+
+
+# Copyright 2001 by
+# David Turner, Robert Wilhelm, and Werner Lemberg.
+#
+# This file is part of the FreeType project, and may only be used, modified,
+# and distributed under the terms of the FreeType project license,
+# LICENSE.TXT.  By continuing to use, modify, or distribute this file you
+# indicate that you have read the license and understand and accept it
+# fully.
+
+
+CFLAGS=$(COMP_FLAGS)$(DEBUG)/include=[--.include]
+
+OBJS=truetype.obj
+
+all : $(OBJS)
+	library [--.lib]freetype.olb $(OBJS)
+
+# EOF
diff --git a/src/type1/descrip.mms b/src/type1/descrip.mms
new file mode 100644
index 0000000..8d36c15
--- /dev/null
+++ b/src/type1/descrip.mms
@@ -0,0 +1,23 @@
+#
+# FreeType 2 Type1 driver compilation rules for VMS
+#
+
+
+# Copyright 1996-2000 by
+# David Turner, Robert Wilhelm, and Werner Lemberg.
+#
+# This file is part of the FreeType project, and may only be used, modified,
+# and distributed under the terms of the FreeType project license,
+# LICENSE.TXT.  By continuing to use, modify, or distribute this file you
+# indicate that you have read the license and understand and accept it
+# fully.
+
+
+CFLAGS=$(COMP_FLAGS)$(DEBUG)/include=[--.include]
+
+OBJS=type1.obj
+
+all : $(OBJS)
+	library [--.lib]freetype.olb $(OBJS)
+
+# EOF
diff --git a/src/winfonts/descrip.mms b/src/winfonts/descrip.mms
new file mode 100644
index 0000000..bfc878f
--- /dev/null
+++ b/src/winfonts/descrip.mms
@@ -0,0 +1,23 @@
+#
+# FreeType 2 Windows FNT/FON driver compilation rules for VMS
+#
+
+
+# Copyright 2001 by
+# David Turner, Robert Wilhelm, and Werner Lemberg.
+#
+# This file is part of the FreeType project, and may only be used, modified,
+# and distributed under the terms of the FreeType project license,
+# LICENSE.TXT.  By continuing to use, modify, or distribute this file you
+# indicate that you have read the license and understand and accept it
+# fully.
+
+
+CFLAGS=$(COMP_FLAGS)$(DEBUG)/include=[--.include]
+
+OBJS=winfnt.obj
+
+all : $(OBJS)
+	library [--.lib]freetype.olb $(OBJS)
+
+# EOF