Commit c3e987e2aab5a2c30d29eafdc11a621ed131bd08

Werner Lemberg 2001-01-03T06:47:10

* 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.

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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
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 @@ fits your needs best:
   . 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