summaryrefslogtreecommitdiff
path: root/app/mkfontscale/ChangeLog
blob: 85baee38b3d4676c3a94051ddc1a15fb501e4600 (plain)
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
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
commit b7e75ca2ccd8733496e0e891e84dc3856840813d
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sun Apr 3 12:20:15 2022 -0700

    mkfontscale 1.2.2
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 2ee95eca936971e841a135ecc4f4a25875232fa2
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri Dec 3 16:17:48 2021 -0800

    Build xz tarballs instead of bzip2
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit f49cc4f618ce520fdb6c43d5434ff376d6324356
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri Dec 3 16:17:39 2021 -0800

    gitlab CI: add a basic build test
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit b88c27bc45d0db78a6591bb92635915b3d5903b8
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sun Nov 28 15:52:37 2021 -0800

    Fix spelling/wording issues
    
    Found by using:
        codespell --builtin clear,rare,usage,informal,code,names
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit f9c76b4dee38619ccf4004f05f609a5e00806771
Author: Maya Rashish <maya@NetBSD.org>
Date:   Sun Oct 27 20:07:16 2019 +0200

    Add "ExtraBold" as a valid T1 font weight.
    
    Used by freefonts.
    
    Signed-off-by: Maya Rashish <maya@NetBSD.org>

commit 73a6d0e02eece1e51bfaed9638f1929404d2c66a
Author: Maya Rashish <maya@NetBSD.org>
Date:   Sun Oct 27 20:04:27 2019 +0200

    Use case insensitive comparison for T1 font weight
    
    Signed-off-by: Maya Rashish <maya@NetBSD.org>

commit 79f686765238ddd0e4753f9d4ee62b5a5296610e
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Wed Mar 20 20:58:15 2019 -0700

    mkfontscale 1.2.1
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 29cab25240cf30f546671f265167a2eeadfd4c75
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Thu Mar 7 13:23:00 2019 -0800

    Revert "Use autoconf instead of sed to substitute @bindir@ in mkfontdir.in"
    
    This reverts commit 1f9d14bec07092d62da29a5a233cefbf84d47289.
    It caused https://gitlab.freedesktop.org/xorg/app/mkfontscale/issues/5

commit 8fbafcfe7e5ef4a2030e3963f31143bba2c8786f
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat Mar 2 14:16:48 2019 -0800

    mkfontscale 1.2.0
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit bef1c614465f2c8546a7d946a75d8f10c5f3ca40
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Tue Feb 19 11:45:29 2019 -0800

    Add mkfontdir to .gitignore
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 1f9d14bec07092d62da29a5a233cefbf84d47289
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Mon Feb 18 18:27:31 2019 -0800

    Use autoconf instead of sed to substitute @bindir@ in mkfontdir.in
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit d3b0f267bd25ab888efc0417f62d525afa32208a
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Mon Feb 18 18:23:50 2019 -0800

    Add mkfontdir to README.md
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 270540bb11914ea92436e251b14bc39d6b5df589
Author: Jeremy Huddleston <jeremyhu@apple.com>
Date:   Thu Oct 6 10:29:42 2011 -0700

    mkfontdir: Fix issues where mkfontscale and mkfontdir are installed in different locations or bindir contains a space
    
    https://bugs.freedesktop.org/show_bug.cgi?id=24465
    
    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>

commit cfbeaa0b99944ab887b4854baa63eadd4e5481f5
Author: Jon TURNEY <jon.turney@dronecode.org.uk>
Date:   Tue Mar 15 11:55:11 2011 +0000

    mkfontdir: Fix for non-srcdir builds
    
    Fix commit ad5fefcc7a0a0beb1c02270d9f28c8b28da61199 for non-srcdir builds
    
    Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk>
    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 758df83c5825b77f338e44c1fcc4c5070d3c3516
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri Mar 11 14:10:19 2011 -0800

    mkfontdir: Make Makefile.am compatible with Solaris make
    
    Solaris make won't substitute $< in explicit rules, only implicit ones
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 8290027e067ffd0a3f37eeafbd27121e2884cea4
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Sat Jan 22 09:27:09 2011 -0500

    mkfontdir: config: substitute bindir in mkfontdir using Autoconf @bindir@
    
    Use the Autoconf recommended way of substituting bindir, see
    http://www.gnu.org/software/autoconf/manual/autoconf.html
    
    Use # sign for comment in script.
    Only sed is used, drop the cpp terminology.
    
    Reviewed-by: Rémi Cardona <remi@gentoo.org>
    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>

commit 07d71396a502515a02bd12c5b01cdd98a7a30dab
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Wed Jan 19 10:06:55 2011 -0500

    mkfontdir: config: move man pages into their own directory
    
    Use services provided by XORG_MANPAGE_SECTIONS.
    Use standard Makefile for man pages.
    
    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>

commit 91cae6761d1a1eb9e5e2eba9eea8d7be6e3993d1
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Thu Jan 13 11:15:47 2011 -0500

    mkfontdir: man: remove trailing spaces and tabs
    
    Using s/[ \t]*$//
    
    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>

commit 7bb2d75a9f00546178f16fd536946fe1bdabdebb
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sun Nov 7 11:14:14 2010 -0800

    mkfontdir: Drop CVS version tag from mkfontdir.cpp too
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit b1e80a29150c90c39915e5e758262815c2c4da05
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sun Nov 7 11:10:09 2010 -0800

    mkfontdir: config: Remove unnecessary calls from configure.ac
    
    AC_PROG_SED & AC_PROG_INSTALL are provided by XORG_DEFAULT_OPTIONS now
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit daee1aa67b7b11b2d4f9e38ddc39603e9206557a
Author: Jesse Adkins <jesserayadkins@gmail.com>
Date:   Tue Sep 28 13:29:49 2010 -0700

    mkfontdir: Purge cvs tags.
    
    Signed-off-by: Jesse Adkins <jesserayadkins@gmail.com>

commit 43d1aae1b0e1f9f759fe3439aa2079a88dab03af
Author: Alan Coopersmith <alan.coopersmith@sun.com>
Date:   Sat Oct 10 22:47:09 2009 -0700

    mkfontdir: Migrate to xorg macros 1.3 & XORG_DEFAULT_OPTIONS
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>

commit 2dac61a84d474e533df29b5874ce6ca5e68d4ddd
Author: Alan Coopersmith <alan.coopersmith@sun.com>
Date:   Fri Jan 11 12:40:52 2008 -0800

    mkfontdir: Fix formatting of man page so ellipsis are shown with Solaris nroff

commit 8609ad731b9c9c670a815c915055ae416d2396d8
Author: Alan Coopersmith <alan.coopersmith@sun.com>
Date:   Fri Jan 11 12:39:00 2008 -0800

    mkfontdir: Fill in COPYING file with copyright/license notices

commit 18654870df3e8c65abc4443a0f510abd46c5fbaa
Author: Alan Coopersmith <alan.coopersmith@sun.com>
Date:   Mon Jan 7 14:16:07 2008 -0800

    mkfontdir: Add references to mkfontscale to man page
    
    Also convert (1) to (__appmansuffix__)

commit 1d15009075c3d316bd54c5861ac2859330ab2e64
Author: Matthieu Herrb <matthieu.herrb@laas.fr>
Date:   Sun Mar 5 19:52:51 2006 +0000

    mkfontdir: Let BSD make find mkfontdir.cpp when building in a separate obj dir

commit 1cb06c20467030fddf6a0a7be855f6849cadf7b4
Author: Adam Jackson <ajax@nwnk.net>
Date:   Tue Aug 2 01:58:09 2005 +0000

    mkfontdir: Find mkfontscale through @bindir@ rather than AC_PATH_PROG, since the one in the path could be from an old install that doesn't support all the needed flags.

commit a8341c3f17050b253a9f55aba76f1d8437165c26
Author: Matthieu Herrb <matthieu.herrb@laas.fr>
Date:   Thu Jul 14 20:59:48 2005 +0000

    mkfontdir: build fix for non-GNU make

commit fa554ab53809943cb141e07687c96364d91e3f9c
Author: Kevin E Martin <kem@kem.org>
Date:   Sat Jul 2 21:42:05 2005 +0000

    mkfontdir: Add build system for bdftopcf, mkfontdir and mkfontscale

commit c40a94766668aad01ef57eea181752a370762cd0
Author: Egbert Eich <eich@suse.de>
Date:   Fri Apr 23 19:54:36 2004 +0000

    mkfontdir: Merging XORG-CURRENT into trunk

commit 1a302e07687403c0be7452d865d20e4cb0761770
Author: Egbert Eich <eich@suse.de>
Date:   Sun Mar 14 08:34:54 2004 +0000

    mkfontdir: Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004

commit c01032201686db5622b4f997d5294d724800c694
Author: Egbert Eich <eich@suse.de>
Date:   Wed Mar 3 12:12:53 2004 +0000

    mkfontdir: Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004

commit 3a6aebdfeb88dd8501d715117990af646f687555
Author: Egbert Eich <eich@suse.de>
Date:   Thu Feb 26 13:36:15 2004 +0000

    mkfontdir: readding XFree86's cvs IDs

commit fa75fa1a5d7c1599692d4e309c39fca34b2a0f84
Author: Egbert Eich <eich@suse.de>
Date:   Thu Feb 26 09:23:56 2004 +0000

    mkfontdir: Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004

commit 9b6d7d062c91a86e110eea7ed38d44e104463fba
Author: Kaleb Keithley <kaleb@freedesktop.org>
Date:   Tue Nov 25 19:29:02 2003 +0000

    mkfontdir: Initial revision

commit 2247072a89b7b9da8ed22d0aaec100cef3adb62d
Author: Kaleb Keithley <kaleb@freedesktop.org>
Date:   Fri Nov 14 16:48:57 2003 +0000

    mkfontdir: XFree86 4.3.0.1

commit 1b920768b5122bac7368860fd6fc7e4f5275ed8f
Author: Kaleb Keithley <kaleb@freedesktop.org>
Date:   Fri Nov 14 15:54:53 2003 +0000

    mkfontdir: R6.6 is the Xorg base-line

commit 0a20abea3ec9742f0982e043e725cdadf0fc493e
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sun Jan 6 14:26:00 2019 -0800

    Clear some -Wshorten-64-to-32 warnings from clang 6
    
    ident.c:84:13: warning: implicit conversion loses integer precision:
          'unsigned long' to 'int' [-Wshorten-64-to-32]
        int n = strlen(filename);
            ~   ^~~~~~~~~~~~~~~~
    ident.c:130:9: warning: implicit conversion loses integer precision:
          'off64_t' (aka 'long') to 'int' [-Wshorten-64-to-32]
            return gzseek(ff->f.gz, offset, whence);
            ~~~~~~ ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    ident.c:140:17: warning: implicit conversion loses integer precision:
          'long' to 'int' [-Wshorten-64-to-32]
                n = offset - ff->pos;
                  ~ ~~~~~~~^~~~~~~~~
    ident.c:143:10: warning: implicit conversion loses integer precision:
          'off_t' (aka 'long') to 'int' [-Wshorten-64-to-32]
                n = offset;
                  ~ ^~~~~~
    ident.c:156:12: warning: implicit conversion loses integer precision:
          'off_t' (aka 'long') to 'unsigned int' [-Wshorten-64-to-32]
            ff->pos = offset;
                    ~ ^~~~~~
    ident.c:157:9: warning: implicit conversion loses integer precision:
          'off_t' (aka 'long') to 'int' [-Wshorten-64-to-32]
            return offset;
            ~~~~~~ ^~~~~~
    mkfontscale.c:704:13: warning: implicit conversion loses integer precision:
          'unsigned long' to 'int' [-Wshorten-64-to-32]
        int n = strlen(dirname);
            ~   ^~~~~~~~~~~~~~~
    mkfontscale.c:748:13: warning: implicit conversion loses integer precision:
          'unsigned long' to 'int' [-Wshorten-64-to-32]
        int n = strlen(filename);
            ~   ^~~~~~~~~~~~~~~~
    mkfontscale.c:794:14: warning: implicit conversion loses integer precision:
          'unsigned long' to 'int' [-Wshorten-64-to-32]
            xl = strlen (exclusionSuffix);
               ~ ^~~~~~~~~~~~~~~~~~~~~~~~
    mkfontscale.c:796:9: warning: implicit conversion loses integer precision:
          'unsigned long' to 'int' [-Wshorten-64-to-32]
        i = strlen(dirname_given);
          ~ ^~~~~~~~~~~~~~~~~~~~~
    mkfontscale.c:858:15: warning: implicit conversion loses integer precision:
          'unsigned long' to 'int' [-Wshorten-64-to-32]
                int dl = strlen (entry->d_name);
                    ~~   ^~~~~~~~~~~~~~~~~~~~~~
    mkfontscale.c:930:21: warning: implicit conversion loses integer precision:
          'unsigned long' to 'int' [-Wshorten-64-to-32]
                int l = strlen(xlfd_name);
                    ~   ^~~~~~~~~~~~~~~~~
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit a311033403730db56bbbd0c56977e6c49a6b5519
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sun Jan 6 13:33:42 2019 -0800

    Clear some -Wsign-compare warnings from gcc 7
    
    mkfontscale.c: In function ‘getName’:
    mkfontscale.c:336:22: warning: comparison between signed and unsigned
       integer expressions [-Wsign-compare]
             for(i = 0; i < name.string_len / 2; i++) {
                          ^
    mkfontscale.c: In function ‘nameWidth’:
    mkfontscale.c:427:18: warning: comparison between signed and unsigned
       integer expressions [-Wsign-compare]
         for(i = 0; i < NUMWIDTHS; i++)
                      ^
    mkfontscale.c: In function ‘notice_foundry’:
    mkfontscale.c:1261:18: warning: comparison between signed and unsigned
       integer expressions [-Wsign-compare]
         for(i = 0; i < countof(notice_foundries); i++)
                      ^
    mkfontscale.c: In function ‘vendor_foundry’:
    mkfontscale.c:1285:18: warning: comparison between signed and unsigned
       integer expressions [-Wsign-compare]
         for(i = 0; i < countof(vendor_foundries); i++)
                      ^
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit d971bb62c6d2a35eccfdcd0c3c6c65c4f841f556
Author: Thomas Klausner <wiz@NetBSD.org>
Date:   Mon Jul 27 23:16:45 2015 +0200

    Add new ConstList functions and use them.
    
    Gets rid of lots of const warnings.
    
    Signed-off-by: Thomas Klausner <wiz@NetBSD.org>

commit bd8ff8a513d928878c877ea7b448baf7aee003a3
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Wed Nov 21 16:49:31 2018 -0800

    Update configure.ac bug URL for gitlab migration
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 17dec8c3c2805707767a2e416358db860b2b2427
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri Nov 16 20:25:32 2018 -0800

    Update README for gitlab migration
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit eac885fa5ebff24e0839144863872443a010d7c2
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Mon Oct 1 21:24:45 2018 -0700

    Stop shadowing 'found' in checkExtraEncoding()
    
    mkfontscale.c: In function ‘checkExtraEncoding’:
    mkfontscale.c:1220:17: warning: declaration of ‘found’ shadows a parameter [-Wshadow]
                 int found = 0;
                     ^~~~~
    mkfontscale.c:1214:59: note: shadowed declaration is here
     checkExtraEncoding(FT_Face face, char *encoding_name, int found)
                                                               ^~~~~
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 325621bd083236567bd861d41ff161313fc96e96
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Mon Oct 1 21:19:58 2018 -0700

    Rename variable 'n' to avoid shadowing another 'n' in doDirectory
    
    mkfontscale.c: In function ‘doDirectory’:
    mkfontscale.c:928:17: warning: declaration of ‘n’ shadows a previous local [-Wshadow]
                 int n = strlen(xlfd_name);
                     ^
    mkfontscale.c:788:12: note: shadowed declaration is here
         int i, n, dirn, diri, found, rc;
                ^
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 0faf882de6de6c1ec26aace9a9939914b40e7b89
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Mon Oct 1 21:10:59 2018 -0700

    Use vasprintf(), if available, to implement dsprintf()
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 3b747cc5d2981c44ff517f64c355e76d70194f24
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Mon Oct 1 20:52:18 2018 -0700

    Replace dsprintf("%s", s) with strdup(s)
    
    dsprintf is an allocating sprintf.  With a format string of "%s", it
    reduces to just being a more complicated version of strdup, so lets
    just use strdup instead to save time and reduce complexity.
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 65fe4ef6f5674b0b52e797924990b090dbbd52af
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Mon Oct 1 20:48:21 2018 -0700

    Remove last use of strcat
    
    If getcwd returned a string that exactly filled the prefix buffer,
    it could write the null terminator byte out of bounds.
    
    Instead, since the prefix is copied to a newly allocated string and
    never used again, just let the dsprintf() call take care of it.
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 7b4203577af4b835ef069e0cd2bd9510b599789c
Author: Bernhard M. Wiedemann <bwiedemann@suse.de>
Date:   Mon Sep 10 10:17:52 2018 +0200

    Sort input file list
    
    so that openSUSE's installation-images builds in a reproducible way
    in spite of indeterministic filesystem readdir order
    
    See https://reproducible-builds.org/ for why this is good.
    
    Signed-off-by: Bernhard M. Wiedemann <bwiedemann@suse.de>

commit 4b1d7d3af1c1bc1586b2e9a780aea0dee7df5a14
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Tue Mar 6 22:57:01 2018 -0800

    mkfontscale 1.1.3
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 27295c6c9b40b5cee0d1f45dfdc742a12613cb58
Author: Mihail Konev <k.mvc@ya.ru>
Date:   Thu Jan 26 14:00:20 2017 +1000

    autogen: add default patch prefix
    
    Signed-off-by: Mihail Konev <k.mvc@ya.ru>

commit 3258ad61892298d07236a857e1668171de5e8880
Author: Emil Velikov <emil.l.velikov@gmail.com>
Date:   Mon Mar 9 12:00:52 2015 +0000

    autogen.sh: use quoted string variables
    
    Place quotes around the $srcdir, $ORIGDIR and $0 variables to prevent
    fall-outs, when they contain space.
    
    Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
    Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>

commit e8e4bdca31c006e2600ba25ef753fe77b20d6aca
Author: Peter Hutterer <peter.hutterer@who-t.net>
Date:   Tue Jan 24 10:32:07 2017 +1000

    autogen.sh: use exec instead of waiting for configure to finish
    
    Syncs the invocation of configure with the one from the server.
    
    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
    Reviewed-by: Emil Velikov <emil.velikov@collabora.com>

commit 07b761b0862bcea65b83052b9d960c4459af0466
Author: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
Date:   Sun Sep 18 16:25:22 2016 -0700

    mkfontscale: Avoid a buffer underrun
    
    https://bugs.freedesktop.org/show_bug.cgi?id=96905
    
    =================================================================
    ==3068==ERROR: AddressSanitizer: heap-buffer-overflow on address 0x60300000de6f at pc 0x000109df79d1 bp 0x7fff55e37d90 sp 0x7fff55e37550
    READ of size 1 at 0x60300000de6f thread T0
        #0 0x109df79d0 in wrap_strcmp (libclang_rt.asan_osx_dynamic.dylib+0xe9d0)
        #1 0x109dc8ef7 in fontFileOpen (mkfontscale+0x100001ef7)
        #2 0x109dc8e0b in bitmapIdentify (mkfontscale+0x100001e0b)
        #3 0x109dcc874 in doDirectory (mkfontscale+0x100005874)
        #4 0x109dcbc78 in main (mkfontscale+0x100004c78)
        #5 0x7fff9083f5ac in start (libdyld.dylib+0x35ac)
        #6 0x3  (<unknown module>)
    
    0x60300000de6f is located 1 bytes to the left of 20-byte region [0x60300000de70,0x60300000de84)
    allocated by thread T0 here:
        #0 0x109e34570 in wrap_malloc (libclang_rt.asan_osx_dynamic.dylib+0x4b570)
        #1 0x109dca92a in dsprintf (mkfontscale+0x10000392a)
        #2 0x109dcc788 in doDirectory (mkfontscale+0x100005788)
        #3 0x109dcbc78 in main (mkfontscale+0x100004c78)
        #4 0x7fff9083f5ac in start (libdyld.dylib+0x35ac)
        #5 0x3  (<unknown module>)
    
    Signed-off-by: Jeremy Huddleston Sequoia <jeremyhu@apple.com>

commit ecb248d8865df376a97a795c2e4f58a3bf64c3f1
Author: Stefan Dirsch <sndirsch@suse.de>
Date:   Thu Apr 21 16:52:15 2016 +0200

    fix handling of Type1 fonts without /FamilyName and/or /FullName
    
    https://bugzilla.opensuse.org/show_bug.cgi?id=918466
    
    Signed-off-by: Stefan Dirsch <sndirsch@suse.de>
    Reviewed-by: Adam Jackson <ajax@redhat.com>

commit 87d628f8eec170ec13bb9feefb1ce05aed07d1d6
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri Jan 16 23:40:40 2015 -0800

    mkfontscale 1.1.2
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 47908fd7a0d061fdcd21e3498da4e223ca9136d9
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri Jun 20 23:23:54 2014 -0700

    Remove extraneous duplicate checks for -r & -n options
    
    Flagged by cppcheck 1.65:
    [mkfontscale.c:247]: (style) Expression is always false because
     'else if' condition matches previous condition at line 224.
    [mkfontscale.c:245]: (style) Expression is always false because
     'else if' condition matches previous condition at line 227.
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Reviewed-by: Hans de Goede <hdegoede@redhat.com>

commit 48e541dc2f2fc3f4e99d3e168c28241ff5adff4d
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Mon Jun 2 19:39:49 2014 -0700

    autogen.sh: Honor NOCONFIGURE=1
    
    See http://people.gnome.org/~walters/docs/build-api.txt
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit f14019d598c215e09cff88c739bbf7f4d6c6b89f
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Mon Jun 2 19:39:49 2014 -0700

    configure: Drop AM_MAINTAINER_MODE
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 399db42a151687f1181ae23d28a76d31125a2853
Author: Thomas Klausner <wiz@NetBSD.org>
Date:   Tue Mar 18 23:14:47 2014 +0100

    Only include config.h if it exists.
    
    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>
    Signed-off-by: Thomas Klausner <wiz@NetBSD.org>

commit eac564e0fc9052a39981ea47b271f7f3d2821944
Author: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
Date:   Thu Jan 2 00:43:14 2014 -0800

    Fix possible malloc allocation error found by clang static analysis
    
    list.c:238:23: warning: Call to 'malloc' has an allocation size of 0 bytes
        ListPtr *sorted = malloc(l * sizeof(ListPtr));
                          ^~~~~~~~~~~~~~~~~~~~~~~~~~~
    
    Signed-off-by: Jeremy Huddleston Sequoia <jeremyhu@apple.com>

commit 423ffbe9c5552dfeffa81bb6e2f2b62ab6b17580
Author: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
Date:   Thu Jan 2 00:39:25 2014 -0800

    Plug a memory leak found by clang static analysis
    
    mkfontscale.c:635:25: warning: Potential leak of memory pointed to by 'notice'
                    foundry = notice_foundry(notice);
                    ~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
    mkfontscale.c:640:8: warning: Potential leak of memory pointed to by 'notice'
        if(strcmp(slant, "i") == 0) {
           ^~~~~~
    
    Signed-off-by: Jeremy Huddleston Sequoia <jeremyhu@apple.com>

commit 880a0c4733e62e54e6a0f1238c7430727d23657b
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri Nov 8 23:48:28 2013 -0800

    Print which option was in error along with usage message
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>

commit 26c89de6cdf0a5b7122a630a5df37fd67a4163e2
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri Nov 8 23:28:16 2013 -0800

    Make usage() always exit(1)
    
    Avoid duplicating exit(1) calls after every single call to usage()
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>

commit 43ab9b11699acadbf09b8ed050a7a2f7e630dce4
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri Nov 8 23:21:32 2013 -0800

    Add -v flag to print program version
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>

commit e5788db7f179bf89d2e5e3c97c69058027cb93bd
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri Nov 8 22:56:02 2013 -0800

    Add missing newline to usage output
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Reviewed-by: Gaetan Nadon <memsize@videotron.ca>

commit f48de13423c7300f4da9f61993b624426b38ddc0
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Tue Jul 16 22:50:54 2013 -0700

    mkfontscale 1.1.1
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit f731c5c36f28ddd0f25f474d2991c96f9a7a915c
Author: Thomas Klausner <wiz@NetBSD.org>
Date:   Sun Jun 2 21:16:54 2013 +0200

    Protect config.h inclusion like usual.
    
    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 19e2cb7c6a3ec2c5b1bc0d24866fa685eef0ee13
Author: Peter Hutterer <peter.hutterer@who-t.net>
Date:   Tue May 21 15:50:19 2013 +1000

    Document -u/-U options in man page
    
    Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit b3af8de8d25128f565c2ed2f7c63b6e4099eb84e
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat Jan 19 12:05:06 2013 -0800

    Replace malloc(strlen);strcpy() calls with strdup
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 547517571e695728278a264eedbac47b6e1f43bc
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sat Jan 19 11:51:39 2013 -0800

    Since hash() returns unsigned int, store results in unsigned ints
    
    Clears clang warnings:
    hash.c:82:13: warning: implicit conversion changes signedness: 'unsigned int' to 'int' [-Wsign-conversion]
        int i = hash(key);
            ~   ^~~~~~~~~
    hash.c:94:13: warning: implicit conversion changes signedness: 'unsigned int' to 'int' [-Wsign-conversion]
        int i = hash(key);
            ~   ^~~~~~~~~
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 1157b3039551b552b483f05f6a411e57941a87c0
Author: Egbert Eich <eich@freedesktop.org>
Date:   Fri Jan 11 12:04:16 2013 -0500

    Fix compilation for MinGW
    
    Fix compilation for MinGW since 9cbe3256bc932b82f2435b23cda0931f4f5f5ba2
    Unfortunately, MinGW doesn't define S_ISLNK, so check for that as well.
    
    Signed-off-by: Egbert Eich <eich@freedesktop.org>
    Reviewed-by: Colin Harrison <colin.harrison at virgin.net>

commit 9cbe3256bc932b82f2435b23cda0931f4f5f5ba2
Author: Egbert Eich <eich@freedesktop.org>
Date:   Thu May 19 10:38:44 2011 +0200

    Prefer original file over symlink (v2)
    
    If a symlink to a fontfile in the same directory exists the file
    that got picked depends on the order in which readdir() picked
    entries.
    This patch gives the file a higher preference than the symlink to
    it so it will be preferred if the xlfd entries match.
    
    v2: Followed a suggestion by Julien Cristau <jcristau@debian.org>
        to check for DT_LNK being defined instead of _BSD_SOURCE
        and fall back to lstat() if d_type is DT_UNKNOWN.
    
    Signed-off-by: Egbert Eich <eich@freedesktop.org>

commit 4c3f72f9e3385d9c855416b6498ced067a97c712
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri Feb 10 20:19:37 2012 -0800

    mkfontscale 1.1.0
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit bf7d4fd83c896b70f68d59de756a3847417d9add
Author: Maxim Iorsh <iorsh@users.sourceforge.net>
Date:   Thu Oct 20 08:08:47 2011 +0200

    mkfontscale: fix Culmus entries to precede URW
    
    Culmus must precede URW and Bitstream in notice list, since its fonts are
    based on URW/Bitstream sometimes.
    
    Signed-off-by: Maxim Iorsh <iorsh@users.sourceforge.net>
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit cd8182e74636ffd9b140603fc61502b42a9d6f2b
Author: Maxim Iorsh <iorsh@users.sourceforge.net>
Date:   Tue Oct 18 22:07:45 2011 -0700

    Add Culmus foundry to the vendor list for TrueType & Type1 fonts
    
    Maps fonts produced by the Culmus project <http://culmus.sourceforge.net>
    to the XLFD foundry name "culmus"
    
    For TrueType fonts, maps the vendor code "CLM" from the TrueType vendor
    id field.
    
    For Type1 fonts, which use heuristics to guess mappings to XLFD foundries
    from words in the copyright notice, add the names of the main contributors
    to the Culmus product to recognize the fonts under their copyright.
    
    Signed-off-by: Maxim Iorsh <iorsh@users.sourceforge.net>
    Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit a39deac00add15532b15827c80601f87738cb405
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Tue Oct 4 21:03:13 2011 -0700

    Strip trailing whitespace
    
    Performed with: find * -type f | xargs perl -i -p -e 's{[ \t]+$}{}'
    git diff -w & git diff -b show no diffs from this change
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit b2d0f04a50f1444f9d62d11636a28c89951f0f40
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Tue Oct 4 21:00:11 2011 -0700

    Add const attributes to fix gcc -Wwrite-strings warnings
    
    Does not fix all of them since some lists contain constant strings and
    some contain dynamically allocated strings that need to be freed later.
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 0f4f6462597841e5f8470571d56cfda61144ee8f
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Mon Sep 26 15:55:12 2011 -0700

    Mark format string argument to dsprintf as const char *
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 8ee3b3f73a6c14c4326435fea7136c09fe2822d1
Author: Maxim Iorsh <iorsh@users.sourceforge.net>
Date:   Mon Oct 3 21:52:15 2011 +0200

    mkfontscale: Support FontForge weight designations.
    
    Fontforge uses 'ExtraLight' and 'Heavy' weights in Type 1 fonts, which
    should be understood by mkfontscale. Other FontForge designations are
    already addressed.
    
    Signed-off-by: Maxim Iorsh <iorsh@users.sourceforge.net>
    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>

commit d429321888c335042332d991480095f67c85bb64
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Wed Jun 29 20:25:37 2011 -0700

    mkfontscale 1.0.9
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 82af43b3e142ed8a85f1057bc67fc44baf95cc13
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Mon May 23 18:33:53 2011 -0700

    Add _X_ATTRIBUTE_PRINTF to functions taking printf format arguments
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>

commit 3da7640b35c9660944168217c145a1011547712b
Author: Jeremy Huddleston <jeremyhu@apple.com>
Date:   Sun May 8 09:36:02 2011 -0700

    Dead code removal
    
    have_face is initialized to 0 at the beginning of the loop, so no need to set
    it to 0 just before it goes out of scope at the end of the loop.
    
    mkfontscale.c:945:13: warning: Value stored to 'have_face' is never read
                have_face = 0;
                ^           ~
    
    Found-by: clang static analyzer
    Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>

commit b8c26cb3d41b18dfcc14a1ae256f6575c7df7593
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Thu Feb 24 23:24:17 2011 -0800

    makeList: free partially allocated list on failure
    
    Error: Memory leak (CWE 401)
       Memory leak of pointer 'first' allocated with malloc(8)
            at line 192 of list.c in function 'makeList'.
              'first' allocated at line 181 with malloc(8).
              first leaks when next == 0 at line 191.
    
    [ This bug was found by the Parfait 0.3.6 bug checking tool.
      For more information see http://labs.oracle.com/projects/parfait/ ]
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Reviewed-by: Julien Cristau <jcristau@debian.org>

commit 9d424d79ca56e7e372a286fca478996eeee8ebfe
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Thu Feb 24 23:15:25 2011 -0800

    Leave room for null terminator in file & font name arrays
    
    fscanf %s arguments don't include the trailing \0 byte in their counts.
    
    Error: Buffer overrun
       Buffer overflow (CWE 120): Use of fscanf(%1024[), with buffer 'font'
          Array size is 1024 bytes
            at line 707 of mkfontscale.c in function 'readFontScale'.
       Buffer overflow (CWE 120): Use of fscanf(%1024s), with buffer 'file'
          Array size is 1024 bytes
            at line 707 of mkfontscale.c in function 'readFontScale'.
    
    [ This bug was found by the Parfait 0.3.6 bug checking tool.
      For more information see http://labs.oracle.com/projects/parfait/ ]
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
    Reviewed-by: Julien Cristau <jcristau@debian.org>

commit 45b33b463c8acc2c0ff37e209387d6b664576cc4
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Mon Feb 14 23:22:56 2011 -0800

    Sort contents of encodings.dir
    
    Allows easier comparison between builds to detect changes.
    Helps reduce deltas in packaging systems that compare old & new versions.
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 623a620bde1988e105b2fe814a3158da0e7b863c
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Wed Jan 19 10:06:55 2011 -0500

    config: move man pages into their own directory
    
    Use services provided by XORG_MANPAGE_SECTIONS.
    Use standard Makefile for man pages.
    
    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>

commit 2e2073e358a6d9069dd5b5f3757de769cbc92721
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sun Jan 9 13:44:31 2011 -0800

    Remove unused NEED_SNPRINTF code to #include non-existent snprintf.c
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 2ad869a51804e5232f10c1c933e2822c205c3265
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sun Jan 9 13:39:00 2011 -0800

    Make fscanf format string constant so it can be checked at compile time
    
    Clears gcc warning of:
    mkfontscale.c:714: warning: format not a string literal, argument types not checked
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit ed14fe953f8f6fee90fcf28cd6775037b5f6e228
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Sun Jan 9 13:24:10 2011 -0800

    config: Add missing AC_CONFIG_SRCDIR
    
    Regroup AC statements under the Autoconf initialization section.
    Regroup AM statements under the Automake initialization section.
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit f27bcd4d366b2c12e658ff018542c4273b36631a
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Thu Jan 13 11:15:47 2011 -0500

    man: remove trailing spaces and tabs
    
    Using s/[ \t]*$//
    
    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>

commit fedc022d29297f524d39a2637c1529782edcdceb
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Wed Jan 12 16:28:02 2011 -0500

    config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS
    
    This silences an Autoconf warning

commit 7a1e1e64c171ae95339bbd327806f892816850d7
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri Oct 29 23:03:40 2010 -0700

    mkfontscale 1.0.8
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 6a013e3524c0bdee54a33b0e9a255f3a7580603f
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri Oct 29 23:01:47 2010 -0700

    Remove unnecessary calls from configure.ac
    
    XORG_DEFAULT_OPTIONS calls AC_PROG_CC and AC_PROG_INSTALL
    PKG_CHECK_MODULES calls AC_SUBST on LIBS & CFLAGS variables
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit ae4a7325cf30dda566391b37d9ce7ffb946b842e
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri Oct 29 22:58:07 2010 -0700

    config: upgrade to util-macros 1.8 for additional man page support
    
    Use MAN_SUBST now supplied in XORG_MANPAGE_SECTIONS
    The value of MAN_SUBST is the same for all X.Org packages.
    
    Use AC_PROG_SED now supplied by XORG_DEFAULT_OPTIONS
    Enables use of platform appropriate version of sed.
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 332cbd76cf14a567a75589e85d82a7d3278d1c8b
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Tue Jul 20 18:45:18 2010 -0400

    config: update AC_PREREQ statement to 2.60
    
    Unrelated to the previous patches, the new value simply reflects
    the reality that the minimum level for autoconf to configure
    all x.org modules is 2.60 dated June 2006.
    
    ftp://ftp.gnu.org/gnu/autoconf/autoconf-2.60.tar.gz
    
    Signed-off-by: Gaetan Nadon <memsize@videotron.ca>

commit 64b1f54bcebc6ed628f74f0204d9ec7242e6e9ce
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Fri Oct 29 22:57:04 2010 -0700

    Sun's copyrights now belong to Oracle
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit a697d45a4b7e265654a1cb64d5af0e05b377a040
Author: Jesse Adkins <jesserayadkins@gmail.com>
Date:   Tue Sep 28 13:29:49 2010 -0700

    Purge cvs tags.
    
    Signed-off-by: Jesse Adkins <jesserayadkins@gmail.com>

commit 0ba1bdaf1db3391c5501fb687df8395fb23b7f6a
Author: Alan Coopersmith <alan.coopersmith@sun.com>
Date:   Thu Jan 14 22:01:58 2010 -0800

    Update Sun license notices to current X.Org standard form
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>

commit 570c7b11f38355be8e126d21dbc2ae91428dd7c0
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Thu Nov 26 09:19:52 2009 -0500

    Makefile.am: add ChangeLog and INSTALL on MAINTAINERCLEANFILES
    
    Now that the INSTALL file is generated.
    Allows running make maintainer-clean.

commit 54698669d9cd1fba4918ad76edd994ecf7a6aa11
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Wed Oct 28 14:09:07 2009 -0400

    INSTALL, NEWS, README or AUTHORS files are missing/incorrect #24206
    
    Add missing INSTALL file. Use standard GNU file on building tarball
    README may have been updated
    Remove AUTHORS file as it is empty and no content available yet.
    Remove NEWS file as it is empty and no content available yet.

commit a96b22739ed1204b55a0eb00dc15a3bf7d3c77f4
Author: Gaetan Nadon <memsize@videotron.ca>
Date:   Thu Oct 22 12:34:14 2009 -0400

    .gitignore: use common defaults with custom section # 24239
    
    Using common defaults will reduce errors and maintenance.
    Only the very small or inexistent custom section need periodic maintenance
    when the structure of the component changes. Do not edit defaults.

commit 34a5a7ae5dc6c8d5f8cb50755d16ef0f573ff2f2
Author: Alan Coopersmith <alan.coopersmith@sun.com>
Date:   Sat Oct 10 22:31:00 2009 -0700

    mkfontscale 1.0.7
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>

commit acedad9e929c1edfa17fc1cb9d37a19701cd200d
Author: Alan Coopersmith <alan.coopersmith@sun.com>
Date:   Sat Oct 10 22:29:08 2009 -0700

    Add link to SubmittingPatches wiki page to README
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>

commit 245160adaca3957ead8fc278387c20e11b9bb7d2
Author: Alan Coopersmith <alan.coopersmith@sun.com>
Date:   Sat Oct 10 22:26:24 2009 -0700

    Migrate to xorg macros 1.3 & XORG_DEFAULT_OPTIONS
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>

commit 2ff1863a387a393e237e9f05525a48806e900368
Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
Date:   Fri Jan 16 20:17:08 2009 -0200

    Silence sparse warnings and update .gitignore.

commit a34031ea9074a453aee217b5845d07333019f26c
Author: Alan Coopersmith <alan.coopersmith@sun.com>
Date:   Thu Dec 18 16:56:12 2008 -0800

    Version 1.0.6

commit 95c7da3a2717a0352cdd08830fdd1dd1a4024dda
Author: Alan Coopersmith <alan.coopersmith@sun.com>
Date:   Thu Dec 18 16:55:56 2008 -0800

    man page typo fix

commit 0d1a2b7970c0eadb834fc2a6c3a68a09691b84ea
Author: Alan Coopersmith <alan.coopersmith@sun.com>
Date:   Wed Dec 17 19:29:54 2008 -0800

    Add hooks for checking sources with lint/sparse/etc.

commit 3ae585a3f08cb660c6ce6838557c94f88821b7a5
Author: Alan Coopersmith <alan.coopersmith@sun.com>
Date:   Wed Dec 17 19:22:27 2008 -0800

    Add basic README with URL's of git, bugzilla & mailing list

commit 03f6a08c503ff12e2457a9ccc13bfbb801e2161d
Author: Alan Coopersmith <alan.coopersmith@sun.com>
Date:   Wed Dec 17 19:19:03 2008 -0800

    Use XORG_CWARNFLAGS & XORG_CHANGELOG from xorg-macros 1.2

commit 0ca983a6bac03489fb0d2ad158114a811eb276a2
Author: Alan Coopersmith <alan.coopersmith@sun.com>
Date:   Wed Nov 5 10:07:33 2008 -0800

    Add support for bzip2 compressed fonts if configured --with-bzip2

commit 8126d2b694f48cc8137be05705a125f7d02e7e12
Author: Julien Cristau <jcristau@debian.org>
Date:   Sun May 11 00:03:44 2008 +0200

    Bump to 1.0.5

commit f131ff40d2b46692c393346110df2567cfa67c29
Author: Juliusz Chroboczek <jch@pps.jussieu.fr>
Date:   Sat May 10 23:58:55 2008 +0200

    Update copyright date.

commit c322c79c2b9b8d6075b6782d572033cc50799a49
Author: Juliusz Chroboczek <jch@pps.jussieu.fr>
Date:   Sat May 10 23:56:33 2008 +0200

    Fix handling of OpenType/CFF fonts with embedded bitmaps.
    The old workaround would trigger with CFF fonts with embedded bitmaps.
    We now explicitly check for the font format being TrueType.
    Reported by Andrey V. Panov.

commit 5db9e13aafbed8c0562838005147ebefb12d08ac
Author: Juliusz Chroboczek <jch@pps.jussieu.fr>
Date:   Sat May 10 23:37:14 2008 +0200

    Remove doubly included header.

commit b0860282c3229d088840fa0758d8473ea6d8813b
Author: Juliusz Chroboczek <jch@pps.jussieu.fr>
Date:   Mon Apr 28 19:53:11 2008 +0200

    Add bdf and pcf to font priority table.
    This mirrors the behaviour of the old mkfontdir, which prefers pcf to
    bdf fonts.

commit 9c5594ad13e9143e86a7fd94f90858795ae2970b
Author: Juliusz Chroboczek <jch@pps.jussieu.fr>
Date:   Mon Apr 28 19:15:05 2008 +0200

    Fix typo in mkfontscale.c.
    This spurious break statement disabled checking for Apple and ISO Unicode
    CMaps in SFNT fonts.  Thanks to Alan Coopersmith and Stefan Dirsch.

commit 5ca409f025fb35a20ab1ef4742a9034a36e3d959
Author: Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br>
Date:   Sat Mar 15 18:44:06 2008 -0300

    Compile warning fixes.
    
    Include headers for proper prototypes and "ansify" makeHashTable.
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>

commit 47ec1e2697eb856f823cc1b488c6b5a1d2077df9
Author: Adam Jackson <ajax@redhat.com>
Date:   Thu Mar 6 16:40:41 2008 -0500

    mkfontscale 1.0.4

commit 1cb9c0074c5075bbce63ff3601712f34bbb74ca1
Author: Adam Jackson <ajax@redhat.com>
Date:   Sun Feb 24 21:34:00 2008 -0500

    Bug #11337: Use strcasecmp() instead of broken open-coded version.
    
    Also, use tolower() instead of broken open-coded version.

commit 11651914cb1700528524bd3aabe2372629ce86c8
Author: Alan Coopersmith <alan.coopersmith@sun.com>
Date:   Mon Jan 7 14:28:30 2008 -0800

    Fix typo in man page

commit 963552c24bf90610f2b3e2e77277ad77e2b21210
Author: Alan Coopersmith <alan.coopersmith@sun.com>
Date:   Mon Jan 7 14:26:56 2008 -0800

    Convert (1) to (__appmansuffix__) in man page

commit 3e8bfcc4d87cd26b9426be1ab8941e1a8d709d3c
Author: James Cloos <cloos@jhcloos.com>
Date:   Thu Dec 6 16:37:03 2007 -0500

    Replace static ChangeLog with dist-hook to generate from git log

commit d59c58bc3e09fd4adf773cd2e0a8c8c0e6018b08
Author: James Cloos <cloos@jhcloos.com>
Date:   Mon Sep 3 05:51:05 2007 -0400

    Add *~ to .gitignore to skip patch/emacs droppings

commit 73e8b8696e09c2502c2b3f66cbe364a8de14198e
Author: James Cloos <cloos@jhcloos.com>
Date:   Thu Aug 23 19:24:29 2007 -0400

    Rename .cvsignore to .gitignore

commit 08cf5e3544be3a64725e5aacd6209bae32185ff0
Author: Daniel Stone <daniel@fooishbar.org>
Date:   Wed Nov 8 16:29:43 2006 +0200

    bump to 1.0.3

commit b155ad1329e193987ed4102384b7996d6dd45088
Author: Juliusz Chroboczek <jch@pps.jussieu.fr>
Date:   Tue Oct 31 16:48:18 2006 +0100

    Allow SemiBold weight for Type 1 fonts.
    Thanks to Andrey Panov.

commit b849af72d7b564f7c09ee480f7496a741063b2a8
Author: Juliusz Chroboczek <jch@pps.jussieu.fr>
Date:   Tue Oct 31 01:35:27 2006 +0100

    Fix typos in manual page, update author's address, update COPYING.

commit 65908e9db4457af1a896d82d5d153655096afb4e
Author: Adam Jackson <ajax@benzedrine.nwnk.net>
Date:   Fri Oct 13 17:45:45 2006 -0400

    Bump to 1.0.2

commit 72d7891bba975dc637dfcc4df068da4a0afae40c
Author: Alan Hourihane <alanh@fairlite.demon.co.uk>
Date:   Wed Jul 19 09:47:10 2006 +0100

    open files in binary mode. fixes cygwin issues.

commit 74743bd788dc7d9f65e151142a594dd5dd3679fb
Author: Jeremy C. Reed <reed@reedmedia.net>
Date:   Thu May 25 23:18:01 2006 +0000

    Check for xproto not x11 (libX11 is not needed).

commit 300ead104133e0967dd2edfd8ef000768e5b2ec5
Author: Kevin E Martin <kem@kem.org>
Date:   Wed Dec 21 02:29:43 2005 +0000

    Update package version for X11R7 release.

commit 749ba16c39f2787823d65677c46dd0df10210127
Author: Adam Jackson <ajax@nwnk.net>
Date:   Mon Dec 19 16:22:41 2005 +0000

    Stub COPYING files

commit f6c3c20921a741d1b8aca31ae4c29105c62e6eb0
Author: Kevin E Martin <kem@kem.org>
Date:   Thu Dec 15 00:24:03 2005 +0000

    Update package version number for final X11R7 release candidate.

commit db2fd6b3063b161726303f469510edae5552506a
Author: Kevin E Martin <kem@kem.org>
Date:   Tue Dec 6 22:48:17 2005 +0000

    Change *man_SOURCES ==> *man_PRE to fix autotools warnings.

commit 36de3963aaeca770500ca1a0c1677a2a087506d3
Author: Kevin E Martin <kem@kem.org>
Date:   Sat Dec 3 05:49:16 2005 +0000

    Update package version number for X11R7 RC3 release.

commit 35101f83cc13a9989a0a505afbe1557e2eb2b431
Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
Date:   Mon Nov 28 22:01:37 2005 +0000

    Change *mandir targets to use new *_MAN_DIR variables set by xorg-macros.m4
        update to fix bug #5167 (Linux prefers *.1x man pages in man1 subdir)

commit 7494ff7b73b4bf0b3d01703f2b8d9bcbcb032c89
Author: Eric Anholt <anholt@freebsd.org>
Date:   Mon Nov 21 10:34:56 2005 +0000

    Another pass at .cvsignores for apps.

commit 818a45cd26343f5a90b5861ee3eacaeb7f1b02d9
Author: Eric Anholt <anholt@freebsd.org>
Date:   Sun Nov 20 22:08:49 2005 +0000

    Add/improve .cvsignore files for apps.

commit ff0494da73f7375ef051621c72f6ce91a101574a
Author: Kevin E Martin <kem@kem.org>
Date:   Sat Nov 19 07:15:35 2005 +0000

    Update pkgconfig files to separate library build-time dependencies from
        application build-time dependencies, and update package deps to work
        with separate build roots.

commit cf92d3afb96be73691967875a1e659bfaf47bd5d
Author: Kevin E Martin <kem@kem.org>
Date:   Wed Oct 19 02:47:49 2005 +0000

    Update package version number for RC1 release.

commit c1e504c4af80f9b55d766eeab7f8a76e1043f1f8
Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
Date:   Mon Oct 17 23:56:20 2005 +0000

    Use @APP_MAN_SUFFIX@ instead of $(APP_MAN_SUFFIX) in macro substitutions to
        work better with BSD make

commit 8abe389feee29a21ad92277f0a9bc54143102b0b
Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
Date:   Fri Oct 14 00:25:42 2005 +0000

    Use sed to fill in variables in man page

commit d2ef439ebff65d9507e8409c32ce83ed24f81c77
Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
Date:   Sat Jul 30 19:32:32 2005 +0000

    Add -D flags to clear more compiler warnings (Stefan Dirsch)

commit d84b476fa167fe34d827f36c0a5e35bca7884136
Author: Kevin E Martin <kem@kem.org>
Date:   Fri Jul 29 21:22:29 2005 +0000

    Various changes preparing packages for RC0:
    - Verify and update package version numbers as needed
    - Implement versioning scheme
    - Change bug address to point to bugzilla bug entry form
    - Disable loadable i18n in libX11 by default (use --enable-loadable-i18n to
        reenable it)
    - Fix makedepend to use pkgconfig and pass distcheck
    - Update build script to build macros first
    - Update modular Xorg version

commit 4ae6c4a84f601196a4cf67dd6f1269c239c757b1
Author: Adam Jackson <ajax@nwnk.net>
Date:   Wed Jul 20 19:31:49 2005 +0000

    Use a unique token for PKG_CHECK_MODULES. Otherwise, if you use a global
        configure cache, you cache it, and the cached value is probably wrong.

commit bdd6bc86322d8769390ce81e74a9c2da103e3533
Author: Alan Coopersmith <Alan.Coopersmith@sun.com>
Date:   Fri Jul 15 00:50:30 2005 +0000

    Add dependency on zlib

commit 30441ee004c0c23d42b76af09e58314aa2218fa3
Author: Kevin E Martin <kem@kem.org>
Date:   Sat Jul 2 21:42:05 2005 +0000

    Add build system for bdftopcf, mkfontdir and mkfontscale

commit 3748201b7bbae3a0c0d20001651430245beab335
Author: Roland Mainz <roland.mainz@nrubsig.org>
Date:   Fri Nov 5 05:01:52 2004 +0000

    xc/fonts/encodings/Imakefile
    xc/fonts/encodings/ascii-0.enc
    Adding ascii-0 font encoding which helps in cases where a font has all
        ASCII chars populated but not enougth glyphs to match the requirements
        for ISO8859-1 (and to add backwards compatibility to ttmkfdir).

commit 55185f35a75e6aad933e6faedd68bc14dfb94ccc
Author: Egbert Eich <eich@suse.de>
Date:   Fri Apr 23 19:54:36 2004 +0000

    Merging XORG-CURRENT into trunk

commit 8e877ebe858657d8de7b5757a6b1d371dbfa6c88
Author: Egbert Eich <eich@suse.de>
Date:   Sun Mar 14 08:34:54 2004 +0000

    Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004

commit ef2e82cd947202294f2c6cf8e503512bac1452b5
Author: Egbert Eich <eich@suse.de>
Date:   Wed Mar 3 12:12:53 2004 +0000

    Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004

commit a641a5d0ebd81e83fd6d61cef460b9013229a279
Author: Egbert Eich <eich@suse.de>
Date:   Thu Feb 26 13:36:15 2004 +0000

    readding XFree86's cvs IDs

commit 0bd86c8568761556a0841afff463a2aa5e3f682b
Author: Egbert Eich <eich@suse.de>
Date:   Thu Feb 26 09:23:56 2004 +0000

    Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004

commit 8b2ffc7720361ca3dd61bda16e384e8258aae803
Author: Kaleb Keithley <kaleb@freedesktop.org>
Date:   Fri Dec 19 20:55:45 2003 +0000

    XFree86 4.3.99.902 (RC 2)

commit c76578dc7395126605b9282f8453f1c54f38e61e
Author: Kaleb Keithley <kaleb@freedesktop.org>
Date:   Thu Dec 4 22:03:44 2003 +0000

    XFree86 4.3.99.901 (RC 1)

commit 324cfb1744c2c3cc253dd0f63c2252206eb72249
Author: Kaleb Keithley <kaleb@freedesktop.org>
Date:   Tue Nov 25 19:29:02 2003 +0000

    XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folks

commit 632e8a138dd16efe41384a4335ec46530da4a04b
Author: Kaleb Keithley <kaleb@freedesktop.org>
Date:   Tue Nov 25 19:29:02 2003 +0000

    Initial revision

commit 7b08fca9270b3735a66f0cf9ce898336a33ea1d6
Author: Kaleb Keithley <kaleb@freedesktop.org>
Date:   Fri Nov 14 16:48:57 2003 +0000

    XFree86 4.3.0.1

commit 7d6e5e7aefebf361afb149d7243d09ab6cf54c2f
Author: Kaleb Keithley <kaleb@freedesktop.org>
Date:   Fri Nov 14 16:48:57 2003 +0000

    Initial revision