about summary refs log tree commit diff
path: root/doc/HISTORY
blob: 3071a207b389c9c084d04332590abe00f889bbe2 (plain) (blame)
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
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
See http://netpbm.sourceforge.net/history.html for a general history of
Netpbm.

CHANGE HISTORY 
--------------

15.12.25 BJH  Release 10.35.98

              pnmtops: fix bug: always things -level=N is -level=1.
              Introduced after Netpbm 10.26 (January 2005) but before 10.35
              (August 2006).  Manifests only with recent compilers.

              Build: fix superfluous error message when USER environment
              variable contains whitespace.  Broken since primordial Netpbm.

15.09.26 BJH  Release 10.35.97

              sbigtopgm: Fix detection of camera type.  Broken in
              Netpbm 10.35.96 (June 2015).

              fitstopnm: Fix -min and -max.  Broken in Netpbm 10.39 (June
              2007).

              Pnmtopclxl: fix wild memory access when out of memory.  Always
              broken (Pnmtopclxl was new in Netpbm 10.6 (July 2002)).

              Pnmtopclxl: fix wild memory access with pathologically large and
              uncompressible image.  Always broken (Pnmtopclxl was new in
              Netpbm 10.6 (July 2002)).

              Pnmtopclxl: fix silent output corruption when a file write
              fails.  Always broken (Pnmtopclxl was new in Netpbm 10.6 (July
              2002)).

              ppmtoilbm: Fix failure with -hamforce and -nocompression.
              Broken in Netpbm 9.12 (March 2001).

15.06.28 BJH  Release 10.35.96

              palmtopnm: Fix distorted output with PackBits compressed input.
              Always broken (Ability to convert PackBits input was new in
              Netpbm 10.27 (March 2005).

              pnmtopalm: Fix arithmetic overflow with ridiculously large
              image.  Introduced after Netpbm 10.26 (January 2005) but before
              Netpbm 10.35 (August 2006).

              pbmtoepson: fix -protocol option - never works and sometimes
              crashes program.  Always broken (-protocol was new in Netpbm
              10.23 (July 2004).

              pbmtoppa: fix buffer overruns, double-free crashes.  Always
              broken (pbmtoppa was new in Netpbm 9.1 (March 2000).

              pbmtomatrixorbital: fix bug: fails if you specify the input
              file name argument.  Always broken.  (pbmtomatrixorbital was
              new in Netpbm 10.18 (Setpember 2003).

              sbigtopgm: fix detection of camera type.  Always broken
              (sbigtopgm was new in Netpbm 8.3 (March 2000)).

              pbmtogo: Fix bug: garbage first row.  Broken at least since
              November 1989.

              pbmtogo: Fix bug: buffer overrun with certain input.  Broken
              at least since November 1989.

              pbmtoescp2: Fix bug: overrun on certain input.  Always broken
              (pbmtoescp2 was new in Netpbm 10.18 (September 2003)).

              escp2topbm: Fix buffer overrun on certain input.  Always broken
              (escp2topbm was new in Netpbm 10.18 (September 2003)).

              libnetpbm: pm_stripeq: fix bug: wild pointer access when
              comparator is shorter than comparand.  Doesn't affect function,
              but could cause crash or privacy exposure.  Affects reading of a
              PAM file by any program.  Introduced in one of Netpbm 10.27
              (March 2005) through 10.35 (August 2006).

              pbmtog3: Fix buffer overrun.  Introduced in Netpbm 10.23
              (July 2004).

              cameratopam: Fix arithmetic underflow in JPEG processing;
              unknown effect.

              sbigtopgm: fix buffer overrun with invalid input image.  Always
              present (sbigtopgm was new in Netpbm 8.3 (March 2000)).

              pnmtorle: Fix buffer overrun with long file name.  Always
              present.  (pnmtorle was new to Netpbm in Netpbm 9.0 (April
              2000)).

              pbmtopk: Fix buffer overrun with long file name.  Always
              present.  (pbmtopk was new in Netpbm 1 (March 1991)).

              pktopbm: Fix buffer overrun with long file name.  Always
              present.  (pbmtopk was new in Netpbm 1 (March 1991)).

              ppmtoyuvsplit: Fix buffer overrun with long file name.  Always
              present.  (New in Netpbm 1 (March 1991)).

              pbmtopi3: Fix bug: wrong output when input is higher or wider
              than 640 pixels.  Always broken (pbmtopi3 was new in September
              1991).

              pbmtomgr: Fix incorrect output when input is too large (must be
              at most 4095 pixels high or wide).

              pbmtomacp: fix wild pointer dereference with -b larger than
              image height.  Always broken.  (pbmtomacp was new in X.V11R3
              (March 1988).

              ppmtorgb3: Fix buffer overflow with long input file name.
              Always present.  (ppmtorgb3 was new in X.V11R4 (November 1989).

              pbmtoatk: Fix crash with very long input file name argument.
              Always broken (pbmtoatk was new in 1991).

              pnmgamma -srgbtobt709, -bt709tosrgb: fix bug; incorrect output
              nearly always.  Always broken (These options were new in
              Netpbm 10.32 (February 2006)).

              pamtosvg: fix use of unset variable; probably results in a
              crash.  Always present (pamtosvg was new in Netpbm 10.33 (March
              2006).

              Install: make backward compatibility link ppmtotga -> pamtotga .

              Install: mention in instructions that it doesn't build on
              modern Macs.

              Make clean: remove .deb file

14.12.25 BJH  Release 10.35.95

              Fix bogus message from ppmXXX programs when the input is not
              (per the magic number) a Netpbm image.  Introduced after
              Netpbm 10.26 (January 2005) but before Netpbm 10.35 (August
              2006).

14.09.26 BJH  Release 10.35.94

              Fix incorrect option parsing when there are multiple common
              options (e.g. -plain -quiet).  Always broken.  (Possibility of
              specifying multiple common options that don't cause the program
              to ignore every other option (like -version) was new in Netpbm
              10.10 (October 2002).

              libnetpbm whole-image functions: Fix undefined behavior due to
              arithmetic overrun when size of image exceeds the capacity of
              a signed integer.

              cameratopam: fix buffer overflow.  Always present.  (cameratopam
              was new in Netpbm 10.28 (June 2005)).

              Build: fix build failure in an environment that does not have
              __inline .  Introduced some time between Netpbm 10.26
              (January 2005) and Netpbm 10.35 (August 2006).

              Build: Fix failure to compile lib/libsystem.c because of
              nonexistent signal classes on some systems.

14.06.29 BJH  Release 10.35.93

              pamsharpness: put primary output on Standard Output instead of
              on Standard Error as a Netpbm message.

              jpegtopnm -dumpexif: fix incorrect display of resolution.
              Always broken.  (-dumpexif was new in Netpbm 9.18 September
              2001).

              jpegtopnm -dumpexif: fix truncated make, model, or datetime.
              Always broken.  (-dumpexif was new in Netpbm 9.18 September
              2001).

              jpegtopnm -dumpexif: fix wild pointer with invalid EXIF data.
              Always broken.  (-dumpexif was new in Netpbm 9.18 September
              2001).

              Build: fix dependencies in .deb package so they work with Debian
              6 at least.  Always broken (.deb capability was new in 10.35.92).

14.03.29 BJH  Release 10.35.92

              ppmrelief: fix out-of-bound values in output.  Always broken.
              Thanks Prophet of the Way <afu@wta.att.ne.jp>.

              ppmrelief: fix crash when input image is too small.  Always
              broken.  Thanks Prophet of the Way <afu@wta.att.ne.jp>.

              pgmtexture: fix buffer overflow.  Always broken.  (Program
              was added in primordial Netpbm in 1991).

              pamdeinterlace: fix incorrect output with -takeodd and image has
              only one row.  Always broken (pamdeinterlace was introduced in
              Netpbm 9.21 (January 2001)).  Thanks Prophet of the Way
              <afu@wta.att.ne.jp>.

              build/install: add tools for creating a Debian package.

13.12.24 BJH  Release 10.35.91

              pbmtoepsi: fix handling of all-white image.  Always broken.
              Thanks Prophet of the Way <afu@wta.att.ne.jp>.

              pbmtoepsi: fix excessively long raster line.  Always broken.
              Thanks Prophet of the Way <afu@wta.att.ne.jp>.

              pnmshear: fix incorrect determination of background color.
              Always broken.

              ppmpat: fix crash with -squig with aspect ratio < 1:25 or
              > 25:1. Thanks Prophet of the Way <afu@wta.att.ne.jp>.
              Always broken.

              pamgauss: Fix typo in message.

13.09.26 BJH  Release 10.35.90

              ppmtoxpm: fix bug: ignores inability to open the specified color
              dictionary file (-rgb) and just doesn't use color names.
              Introduced in Netpbm 10.15 (April 2003).

              ppmforge. fix crash when -mesh is 1 or less.  Always broken
              (program was added in Pbmplus (October 1991).  Thanks Prophet of
              the Way <afu@wta.att.ne.jp>.

              ppmforge: fix array bounds violation.  Always broken (program
              was added in Pbmplus (October 1991).  Thanks Prophet of the Way
              <afu@wta.att.ne.jp>.

13.05.03 BJH  Release 10.35.89

              ppmtowinicon: fix bug: sometimes creates image truncated in the
              middle of the AND mask.  Always broken (program was new in
              Netpbm 9.3 (June 2000)).

              pamtilt: fix bug: incorrect output or invalid memory access
              crash.  Always broken (program was new in Neptbm 10.30
              (October 2005)).

13.02.20 BJH  Release 10.35.88

              ppmpat: fix wrong output with -poles.
              
              Windows build: fix compile error on urt/rle_open_f.c due to
              Unix process management stuff.

              leaftoppm: fix incorrect determination of whether input is
              Interleaf on 64 bit systems.  Always broken.

              cmuwmtopbm: fix incorrect determination of whether input is
              a CMU window manager bitmap on 64 bit systems.  Always broken.

12.12.05 BJH  Release 10.35.87

              pamtotiff: fix bug: XRESOLUTION, YRESOLUTION, and RESOLUTIONUNIT
              not allowed in -tags.  Broken at least since 10.35.00.

              pnmmontage: fix random stuff placed in unoccupied space in the
              output image.  Always broken (program was new in 9.10 (January
              2001).

              pnmpsnr: fix crash when invoked (invalidly) with only one
              argument.  Always broken.

              pampick: fix wild pointer in command line parsing.  Bug has
              always been there.

              pamgauss: Fix bug: erroneously says -maxval is too big.
              Always broken (Pamgauss was added in 10.23 (July 2004).

12.07.23 BJH  Release 10.35.86

              ppmtobmp: fix failure with "internal error" message on all
              uses.  Broken in 10.35.78.

              Build: rename getline() in xpmtoppm.c to avoid collision
              with some libc.  Always broken.

12.06.21 BJH  Release 10.35.85

              configure: work around Perl bug that causes 'configure' to
              falsely conclude Svgalib is installed.

              Build: move -lm to end of -l's.  Broken at least since 10.35.

12.02.14 BJH  Release 10.35.84

              pamscale: fix all black output with resampling.  Always broken.

              pgmtexture: fix integer overflow in difference variance.
              Always broken.

              pgmtexture: fix array bounds violations in various calculations.
              Always broken.

              Build: always put Netpbm header files before external library
              header files in search path.

11.11.25 BJH  Release 10.35.83

              pngtopnm: fix crash with invalid tIME chunk.  Always broken.

11.09.25 BJH  Release 10.35.82

              pnmtopng: fix bug: with -alpha specifying a mask which contains
              no fully transparent area, output PNG is fully opaque.
              Introduced in 10.29.

              pnmquant: work with older Perl that doesn't have 3-argument open.

              pnmtops: fix message: says "from top edge" where it means
              "from bottom edge."

11.07.10 BJH  Release 10.35.81

              pgmtexture: fix wrong sum variance result.  Wrong since the
              beginning.  Thanks Francois P. S. Luus <fpsluus@gmail.com>.

11.02.18 BJH  Release 10.35.80

              asciitopgm: fix bug: memory corruption on too-long lines.

              asciitopgm: fix bug: improper handling of blank lines.
              
11.01.15 BJH  Release 10.35.79

              configure: don't default to /usr/X11R6/lib/libX11.so just because
              /usr/X11R6 exists.  /usr/X11R6/lib must exist.

              pngtopnm: fix bug: -verbose reports history chunk present when
              it's really a palette.

10.12.10 BJH  Release 10.35.78

              bmptopnm: Don't crash on invalid zero value of image height in
              the BMP header of a compressed file.  Always broken.
              
              bmptopnm: don't crash on large invalid value of 'colorsused' in
              the BMP header.

              ilbmtoppm: Don't crash on image that has a transparent color
              index, but no color map.

10.09.18 BJH  Release 10.35.77

              ppmtompeg: fix crash with free of unallocated memory.

              Build: don't expect snprintf() to exist.

              Build: don't use <strings.h> or bzero().

              Pnmtopng:  -libversion doesn't report level of linked libz.
              It was a modularity violation and caused build failures on
              Mac OS X, because Pnmtopng per se doesn't know about libz --
              it's used by libpng.

              Build: don't fail due to SIGRTMIN, SIGRTMAX being undefined.

10.05.31 BJH  Release 10.35.75

              palmtopnm: fix for pixel size 16.  Thanks Paul Bolle
              <pebolle@tiscali.nl>.

              pamscale: fix -reduce.  Introduced in 10.27.

              configure: default to 'none' for Svgalib if it doesn't appear to
              be installed (per 'ldconfig').  Ported from 10.38, released
              March 2007.

10.03.24 BJH  Release 10.35.74

              pbmtext: don't crash when font file contains a blank line.
              Fail cleanly.

              ppmtoilbm: fix arithmetic overflow with image dimension
              represented as 16 bit integer.

              pbmpage: fix garbage output.

              pnmhistmap: Fix crash with -width.  Always broken.

              Build: don't fail due to SIGPWR being undefined.

10.01.23 BJH  Release 10.35.73

              Restore ability of Pnmconvol convolution matrix to be a
              pseudo-plain-PNM with samples that exceed the maxval.  Lost in
              10.30 due to addition of maxval-checking code to libnetpbm.

              pnmtofiasco: fix bug: doesn't work with Standard Input.

              palmtopnm: fix incorrect "PALM_DIRECT_COLOR_FLAG is not valid
              for version 3 encoding type" failure.

              palmtopnm: fix incorrect output with version 3 direct color.

09.12.29 BJH  Release 10.35.72

              libnetpbm: When reading plain format PNM with PAM routines,
              validate pixel against maxval (necessary for integer non-overrun
              guarantees).

              xpmtoppm: fix wild pointer with color index > 127.

              pm_system*: fix various bugs.

09.12.10 BJH  Release 10.35.71

              pamtosvg: fix compile failure from 10.35.70

09.12.10 BJH  Release 10.35.70

              pamtouil: fix crash when -name option doesn't contain an
              underscore.
              
              pamtosvg: fix some bug with unset Z coordinate.

              pnmtofiasco, fiascotopnm: fix bug on bigendian machine.

              Fix bug in ppm_readcolordict(), ppm_readcolornamefile() where
              the file is not readable.

09.10.18 BJH  Release 10.35.69

              Build: fix build failure with no-network build of Ppmtompeg.

09.09.18 BJH  Release 10.35.68

              pambayer: fix unconditional crash/failure when you aren't using
              Standard Input.

              Build: use AR from config.mk instead of "ar" to build static
              libraries: libnetpbm, librle, libjasper.

              Build: don't use "uint".

              Package: fix installation of pnmplain on Windows (.exe suffix).

              Configure: fix wrong variable name for HP-UX.

09.09.03 BJH  Release 10.35.67

              Build: fix failure to recognize static library in omitting
              -R from link.

              Build: Make compile of pnmtopng and pngtopnm fail with helpful
              error message when PNG library is incompatibly new (version 1.4
              or later).

              Build: work with JPEG library Version 7.

09.07.23 BJH  Release 10.35.66

              Build: fix failure of a merge build on a system that doesn't
              have the PNG library.

09.06.26 BJH  Release 10.35.65

              configure: offer Gcc as an optional compiler for HP-UX.

09.05.16 BJH  Release 10.35.64

              pnmremap: fix: -firstisdefault uses an arbitrary color from the
              map as default.

              pnmremap: fix -missingcolor:  where map file (ergo output) is not
              depth 3, uses an arbitrary color.

              giftopnm: fix for unlikely case of a block smaller than a code.

              ppmpat: fix crash in -squig.

              ppmpat: fix crash when width or height is zero.

              libppmd (ppmdraw, ppmpat): Fix bugs with coordinates too large.
              Thanks Prophet of the Way <afu@wta.att.ne.jp>.

09.04.28 BJH  Release 10.35.63

              ximtoppm: fix crash in command line processing.

              ppmrainbow: exit with proper exit status upon failure.
              
              ppmfade: eliminate reference to undeclared subroutine.

              ppmquantall: don't use 'set' to set Bourne shell variable.

              pbmtomacp: fix buffer overflow.

              pamtosvg: some fix.

              ppmpat: fix usage statement.

              libnetpbm (ppmd): fix: don't ignore failure to read font file.

              build: rename getline() in xvminitoppm.c to avoid collision
              with libc.

09.04.12 BJH  Release 10.35.62

              pamstereogram: fix tuple type in output file (and crash
              with -verbose) with -patfile .

              pamstereogram: fix uninitialized bytes per sample value.

09.03.22 BJH  Release 10.35.61

              g3topbm: fix array bound violation.  Introduced in 10.32.

09.02.14 BJH  Release 10.35.60

              xwdtopnm: Fix for at least some direct color 24/32 images.

              pnm_alloctupletable, pnm_tuplehashtotable,
              pnm_computetuplefreqtable3: fix crash when out of memory,
              memory leak with uncomputably large numbers.

09.01.29 BJH  Release 10.35.59

              ilbmtoppm: Fix array bound violation with compressed ILBM.
              Introduced in 10.18.

              fitstopnm: fix garbage output when input is little endian
              floating point FITS.

09.01.15 BJH  Release 10.35.58

              picttoppm: fix crash when image is all text with -fullres.

              ilbmtoppm: fix bug: appends color map PPM to output if input
              has color map; fails if input doesn't have color map.  Broken
              in 10.18.

              leaftoppm: fix bug: uses red channel as all three channels;
              (produces grayscale output).

              pbmtomrf, mrftopbm: fix crashes, incorrect output in all
              cases.  Broken forever.

08.12.07 BJH  Release 10.35.57

              Build: Move CFLAGS later in libjasper build so that a -I in
              CFLAGS doesn't interfere with finding the local libjasper
              header files.

              Build: Move LDFLAGS later so that a -L in LDFLAGS doesn't
              interfere with finding the built libnetpbm.  (The common
              link rule is already this way in 10.35.56; all the other
              link rules are now the same).

              Build: Add source type declarations to make -ansi compile work.

              Build: Add -fPIC to all Gcc compiles of library modules, so it
              works on AMD64, IA64.

08.11.09 BJH  Release 10.35.56

              Add -fPIC to all Gcc compiles of library modules, so it
              works on AMD64, IA64.

08.10.31 BJH  Release 10.35.55

              pamcomp: Fix mysterious doubling of code introduced in 10.35.50
              which causes build to fail.

08.10.27 BJH  Release 10.35.54

              pnm_createBlackTuple(): Fix array bounds violation with
              PBM, PGM.

              ppmforge, pgmnoise, pgmcrater: better randomization;
              won't produce the same image if you run it twice within
              the same second.

              pnmtoddif: Fix crash with any PGM input.

              pgmnoise: Fix bug: never generates full white pixel.

08.10.12 BJH  Release 10.35.53

              pamditherbw: Fix -value other than .5 with -fs .

08.09.27 BJH  Release 10.35.52

              libppmd/ppmdraw: fix crash when line is completely out of
              frame.

              Build: add dependencies so parallel make of top level
              "all" works.

08.09.12 BJH  Release 10.35.51

              pamgradient: fix bug: always produces color, not grayscale.

08.08.29 BJH  Release 10.35.50

              pnm_backgroundxel(), pnm_backgroundxelrow() (affects
              pnmrotate, pnmshear, pnmcrop, pnmcat: correctly average
              corner colors to determine background (fill) color.

              pgmhist: arbitrary output when total pixels doesn't fit in an
              integer.

              pamcomp: fix bug: arbitrary output when combined number of rows
              doesn't fit in an integer.

              pamcut: don't crash when left > right or top > bottom with
              -pad.  Thanks Prophet of the Way <afu@wta.att.ne.jp>.

08.08.13 BJH  Release 10.35.49

              pamcut: don't crash when cutting a region entirely to the
              left or right of the input image, with -pad.

08.07.27 BJH  Release 10.35.48

              pamperspective: change calculation of window height to avoid
              buffer overrun.

              pngtopnm: fix gamma correction.

08.07.13 BJH  Release 10.35.47

              pngtopnm: fix bug: when background is color, output
              should be PPM.

08.06.22 BJH  Release 10.35.46

              pbmtext: fix buffer overrun with tab characters.

              pamtotga: fix free of unallocated memory with no -name option.

              pamtouil: fix double free of memory.

              pnmtopclxl: fix crash with Standard Input input.

08.06.08 BJH  Release 10.35.45

              anytopnm: fix parsing of type description.

              pamtohtmltbl: fix output error: contains holes due to
              uninitialized memory.

              xvminitoppm: fix.  Totally broken since 10.34.

              pbmtogo: fix buffer overrun on too wide image.

              tgatoppm: fix standard input invocation.

08.05.24 BJH  Release 10.35.44

              pamscale: fix PBM input + -nomix.

              pamtilt: fix crash with excessive angle.

              ppmd_filledrectangle(): fix crash with rectangle that is
              entirely left or right of the image.

              Add back ppmd_fill_init() for backward compatibility;
              removed in 10.29.

08.05.10 BJH  Release 10.35.43

              pbmtext: fail properly if input contains no text.

08.04.11 BJH  Release 10.35.42

              pnmnorm: fix resolution of conflicting -wpercent and -wvalue.

08.03.28 BJH  Release 10.35.41

              pnmnorm: fix -colorvalue, -saturation, -keephues options.

              Build: make it work with Gcc 4.3 and -sse by omitting
              MMX/SSE optimizations.

08.03.08 BJH  Release 10.35.40

              pgmdeshadow: fix crash in option processing.

              pgmmedian: fix crash.

              pgmbentley: fix output; black areas not black.

              pamtosvg: fix log file name with Standard Input.
              
08.02.22 BJH  Release 10.35.39

              pamtosvg: fix crash with -centerline.

08.02.01 BJH  Release 10.35.38

              ppmtoarbtxt: fix array overflow.

              pbmtext: fail cleanly if input line is > 5000 characters.

              pbmtext: fix negative -space .

08.01.15 BJH  Release 10.35.37

              Fix fast endianness stuff for 64 bit LE; bypass a compiler
              bug that causes compile failure.

              Build: remove use of "uint" type in pamtosvg.

07.12.27 BJH  Release 10.35.36

              pamperspective: Eliminate build-time symbol conflict
              with 'nearest' on AIX.

              set _XOPEN_SOURCE=600 so jpeg2ktopam and pamtojpeg2k
              compile on AIX (_XOPEN_SOURCE=500 keeps int_fast32_t from
              being defined).

07.12.11 BJH  Release 10.35.35

              pamtotiff: fix incorrect pixels with PNM maxval != TIFF
              maxval.

07.11.26 BJH  Release 10.35.34

              xwdtopnm: deal with too-large bits per pixel value in XWD 
              header.

              pamditherbw, pamsharpness, pamsharpmask, pamtopfm:
              fix crash due to write to arbitrary memory.

07.11.13 BJH  Release 10.35.33

              pnmcrop: fix -verbose message about background color with
              -white.

07.10.12 BJH  Release 10.35.32

              bmptopnm: fix crash with 16 bit images.

07.09.03 BJH  Release 10.35.31

              pamstack: accept Standard Input properly.

              pnmtopalm: fix typo in error message.

07.07.30 BJH  Release 10.35.30

              pnmtops: fix crash when program attempts to write 12 bits per
              sample Postscript.  It doesn't really know how to do that, so
              now it just writes 8.

07.07.10 BJH  Release 10.35.29

              pnmtopng: Sort palette properly when alpha maxval != 255.

              pnmtopng: Fix array bound violation with = 256 colors and -alpha.

              pnmtopng: Fix array bound violation with > 256 alpha mask levels.

              pamtopfm: Fix wrong selection of default endianness.

07.06.25 BJH  Release 10.35.28

              fitstopnm: fix BITPIX = -32.

              pamtofits: fix -min, -max.

              PAM_STRUCT_SIZE: cast pointer to ulong instead of uint.

07.05.20 BJH  Release 10.35.27

              pamthreshold: fix totally bogus threshold selection with
              simple thresholding.

07.04.07 BJH  Release 10.35.26

              picttoppm: Fix wild memory reference in all use cases.

              picttoppm: Fix for multi-pixel-per-byte image in which
              it says the image has a row that is too long (because of
              padding).

              configure: fix choice of default library suffix.

07.03.23 BJH  Release 10.35.25

              pnmremap: fix incorrect output with map file deeper than
              input file.

              Pnmtopclxl: fix -feeder, -outtray options.  Thanks
              "Eric K. Olson" <olson@mauicomputing.com>.

07.03.09 BJH  Release 10.35.24

              libnetpbm: fix crash with PBM images < 8 columns on MMX/SSE
              machine.

              pamtoxvmini: fix maxval != 255 bugs.

07.02.21 BJH  Release 10.35.23

              pamtoxvmini: fix crash.

              ppmtogif: fail properly if image to wide or high for GIF.

07.01.15 BJH  Release 10.35.22

              libnetpbm: fix buffer overrun with PBM images < 8 columns.

              ppmdraw: fix crash with use of freed storage.  Thanks
              John Walker <kelvin@fourmilab.ch>.

              installnetpbm: use 2-argument open() for old Perl.
    
06.12.31 BJH  Release 10.35.21

              libnetpbm: fix crash with PAM read as PNM.

              pbmtextps: Fix buffer overrun -- typical symptom: extra
              text generated.

06.12.18 BJH  Release 10.35.20

              ppmchange: Fix bug with -closeness and not -remainder or
              vice versa.

              pgmtoppm: Fix garbage output with -map and input maxval
              != map maxval.

06.12.03 BJH  Release 10.35.19

              pbmtext: Fix crash when there is only one character.

              pnmtopng: fix transparency optimization on PPM input.
    
              pnmrotate: fix -background option with PGM/PBM input.

              pamx: fix bug with X depth = 0.

              pamx: fix bug: incorrect display of one-plane input image.

06.11.27 BJH  Release 10.35.18

              Configure: Fix incorrect .dylib suffix in shared library default.

              libnetpbm: fix bogus results from ppm_parsecolor() of
              rgb:0/0/0 style color name.

06.11.18 BJH  Release 10.35.17

              ppmtogif: fix garbage output with non-ppm-raw input;
              restore to 10.34 version.

06.11.14 BJH  Release 10.35.16

              ppmtogif: fix garbage output with -interlace.

06.11.13 BJH  Release 10.35.15

              Configure: fix default for X library location.

06.11.13 BJH  Release 10.35.14

              Configure: fix default for X library location.

06.11.13 BJH  Release 10.35.13

              Build: fix Darwin build.

06.11.08 BJH  Release 10.35.12

              Build: remove unnecessary limit of 200 characters on
              argument length in Libopt.

06.10.26 BJH  Release 10.35.11

              pnm_readpaminit(): Don't crash if width == 0.

06.10.22 BJH  Release 10.35.10

              ppmtompeg: fix reading of GOP files.  Thanks Alun Jones.

06.10.21 BJH  Release 10.35.09

              Fix pamcomp: due to use of undefined value, sometimes produces
              plain format.

06.10.18 BJH  Release 10.35.08

              Fix pamperspective: read all of input.

              Fix libnetpbm pm_system(): don't hang if shell command quits
              before taking all the input.

              Fix redefinitions of functions that Irix compiler can't handle.

06.10.01 BJH  Release 10.35.07

              Fix some prototypes that don't literally match definitions
              so that Irix compiler will accept them.

06.09.29 BJH  Release 10.35.06

              Build: fix build with separate build directory.

              Build: fix merge build with no X11 library.

06.09.11 BJH  Release 10.35.05

              Remove some generated files from release so build works.

              Properly clean thinkjettopbm.c with 'make distclean'.

06.09.10 BJH  Release 10.35.04

              Fix version number control.

06.09.09 BJH  Release 10.35.03

              Remove general history from change file

06.09.03 BJH  Release 10.35.02

              pbmtonokia: fix headers of NGG and NOL to include 3 character
              magic.

              pm_accept_to_pamtuples: fix bug: fill in pam structure.
              Thanks "Christian Schlotter" <schlotter@users.sourceforge.net>.

06.08.26 BJH  Release 10.35.01

              Fix selection of MMX_SEE fastpath based on GNU compiler version
              number.

              libnetpbm: fix rgb:r/g/b color name parsing for invalid
              syntax.

06.08.19 BJH  Release 10.35.00

              Add pgmdeshadow.

              giftopnm: add -quitearly.

              pamfile: add -comments.

              ppmdraw: remove limitation on size of script.

              pnm_readpaminit(), pnm_writepaminit(): Add comment control.

              ppmtogif: do one row at a time.

              Pnmtopng: improve validation of -modtime option.

              Look in /usr/share/X11 instead of /usr/openwin/lib for
              rgb.txt.

              ppmtompeg: die properly when frame is less than 16x16.

              ppmdraw: fix bug with semicolon in script not followed by
              white space.

              libppmd (ppmdraw, ppmlabel): don't crash with horizontal
              or vertical line that is entirely out of frame.

              picttoppm: Fix 32 bit per pixel conversion, broken in 10.34.

              pamthreshold: fix read from pipe.

              Fix typo in make file that makes svgtopam get built
              when Libxml2 is not available.

              pnm_computetuplefreqhash(), pnm_computetuplefreqtable2():
              Don't crash on error without pm_setjmp().

              Change memmem() to memmem_internal() in cameratopam/identify.c
              to avoid collision with system library.

              Use __MINGW32__ to determine HAVE_MKSTEMP (instead of manual).

              Eliminate use of network functions for endianness computations.

              Use "inttypes_netpbm.h" on a system that doesn't have
              the int_fast32_t, etc. types.  Like Solaris 8.

              configure, installnetpbm: autoflush stdout.

              Build: Use libpng-config if it exists.

              Build: assume no Lex program if neither 'flex' or 'lex' shell
              command verb exists.

              Remove test source file ppmdtexttest.  Ppmdraw should be
              sufficient now.
              
06.06.18 BJH  Release 10.34

              Add pamthreshold.  Thanks Erik Auerswald
              <auerswal@unix-ag.uni-kl.de>.

              Add pamx.

              Add pamtoxvmini.
              
              pammasksharpen: Add -threshold.

              pnmtopng: make "N colors found" message verbose-only.

              pnmtopng: make "no room in palette" message non-verbose.

              picttoppm: Tolerate various PICT file corruptions.

              picttoppm: Don't issue warning message when file named
              'fontdir' doesn't exist.

              libnetpbm: Add ppm_bk_color_from_color(),
              ppm_bk_color_from_name(), ppm_name_from_bk_color().
              Thanks "Kenan Kalajdzic" <kalajdzic@gmail.com>.

              libnetpbm: Add ppmd_fill_path().

              ppmtobmp: Fix for PBM input.

              bmptopnm: Don't crash on BMP with no color map.

              bmptopnm: Fix wrong file name in error messages.

              ppmtogif: fix bug: always produces garbage output.

              ppmtompeg: fix input from Standard Input.

              pnmflip: fix bug: -rotate90, -rotate180, and -rotate270
              (and synonyms) don't work when followed by other rotation
              options.

              ppmtoilbm: Fig bug: generates more planes than necessary.

              pamtofits: fix buffer overflow in asembling header.

              picttoppm: fix bug - interprets some images wrong because of
              bogus "rowBytes" value.

              Redo asprintfN(), etc. so as not to use va_list in a way
              that doesn't work on some machines.

              cameratopam: remove definition of memmem() so it doesn't collide
              with same in some C libraries.  Add memmemN() and MEMEQ to
              libnetpbm.

              Fix build of filename.o.

              Build: Use local version of mkstemp() based on mktemp() when
              mkstemp() isn't available.  No automatic determination that
              mkstemp() isn't available yet.

              Build: Include dummy pm_system() on a system that doesn't
              have regular Unix process management.

              Add -Wundef to Gcc compile options.

06.03.26 BJH  Release 10.33

              Add pamtosvg.

              g3topbm: Add -width, -paper_size.

              libnetpbm / most newer programs: Fix bug that produces
              plain format output when it should be raw because
              pnm_readpaminit() does not set 'plainformat' and most
              programs just copy the input pam to the output pam.

              pamflip: fix bug with left/right flip of PBM that has 
              width an even multiple of 8 plus something less than 8.

              pnmquant: turn on autoflush when creating seekable file.

              install: fix symbolic link pnmdepth -> pamdepth.
              
              build: fix some importinc dependencies.

06.02.25 BJH  Release 10.32

              Add rlatopam.  Thanks Simon Walton <simonw@matteworld.com>.

              Add pgmmake.

              bmptopnm: Understands RLE4/RLE8 compressed BMP.  Thanks
              Prophet of the Way <afu@wta.att.ne.jp>.

              pnmgamma: Add -bt709tosrgb -srgbtobt709, -bt709tolinear,
              -lineartobt709, -gamma, -rgamma, -ggamma, -bgamma (gammma
              values were formerly specified as parameters).

              pnmgamma: Rename -cieramp to -bt709ramp.

              pnmnorm: add -maxexpand option.

              ppmdraw: work on multi-image streams.              

              anytopnm: add mime time image/x-ms-bmp for BMP

              pamchannel: works on multi-image streams.

              pamstack: works on multi-image streams.

              Convert pnmdepth to pamdepth.  Add multi-image stream
              capability.

              pamcut: works on multi-image streams.

              pnmtops: allow -flate and -rle together.

              pnmtops: overhaul of -psfilter output.
              Thanks Chapman Flack <chap@anastigmatix.net>.

              pnmrotate: fine adjustment to arithmetic (rounding,
              pixel quantization).

              pbmtopsg3: Put currentfile ... in exec block.  Thanks
              Chapman Flack <chap@anastigmatix.net>

              pbmtopsg3: Add missing /EndOfBlock .  Thanks
              Chapman Flack <chap@anastigmatix.net>

              pnmtops: Don't claim EPSF if using setpagedevice.
              Thanks Chapman Flack <chap@anastigmatix.net>

              giftopnm: do "reading image sequence N" message only if
              being verbose.

              ppmtobmp, bmptopnm: major speed improvement for PBM.  Thanks
              Prophet of the Way <afu@wta.att.ne.jp>.

              pbmtog3: Use new GCC features instead of assembly language
              for superspeed operations.  Thanks
              Prophet of the Way <afu@wta.att.ne.jp>.

              pm_make_tempfile(): Use TEMP and TMP environment variables if
              TMPDIR not set.

              pm_make_tempfile(): improve error message.

              libpam: pnm_writepamrowmult() respects pam.plainformat.

              libpam: pnm_writepaminit() checks -plain option for PAM format
              (recognizes the error).

              ppmtoglobe: Fix wild pointer bug.

              Fix wild pointer in REALLOCARRAY(). Affects ppmdraw,
              escp2topbm, ppmtowinicon, ppmtompeg, pnmtopalm,
              pnmtopng.  Thanks Steve Summit <scs@eskimo.com>.

              pnmtopng: fix bug with undefined cmdline.modtimeSpec.
              Thanks Mike Frysinger <vapier@gentoo.org>.

              pnmquant: Use Perl sysseek() instead of seek() to avoid
              a mispositioned file disaster on some platforms.

              pamditherbw, pgmtopbm: fix bug: overly dark with cluster
              methods because only 1/4 of the dither matrix is used.
              Thanks Mark Williams <mark@aziraphale.homeip.net>.

              pnmrotate: fix bug: garbage in lower right corner of background
              with -noantialias.

              pnmsmooth: change to regular Netpbm syntax.  Replace -size
              with -width and -height.

              pnmsmooth: fix bug: free of temp file name even when there
              is no temp file (-dump option).

              pnm_scaletuplerow() fix bug: does nothing when old maxval ==
              new maxval.  Affects pamedge only.

              ppmtompeg: Fix array/pointer degeneration mess with LumBlock
              arguments; fix crash.

              pamstereogram: Fix crippling bugs.  Thanks Scott Pakin
              <scott@pakin.org>.

              giftopnm: Fix bug with interlaced GIF < 5 rows.

              giftopnm: Handle case of a clear code at the end of a block.

              ppmtogif: Fix bug with interlaced GIF < 5 rows.

              cameratopam: Fix segmentation fault from undefined 'ifp'.
              Thanks Bernard Hatt <bmh@arkady.demon.co.uk>.

              xwdtopnm: Fix bug from 10.31: LSB-first XWDs convert to all
              black.

              ppmglobe: fix bug: always says stripcount is zero
              because it looks at the wrong argument.  Thanks Urs Enke
              <urs.enke@web.de>.

              pnmtotiffcmyk: Fix inttypes conflict on AIX.

              Stop exporting stripeq().
         
              Add -lm to link of libnetpbm shared library, to express the
              fact that code in libnetpbm requires it.  Helps GNU Ld
              --as-needed.

              Build: move symbolic links to header files into
              'importinc' directories to keep directories cleaner.  Fully
              populate 'importinc' in every directory so we don't have
              to maintain a list of header files for each.

05.12.23 BJH  Release 10.31

              Add pamgradient.

              libnetpbm/everything: speed up ppm_readppmrow() and
              pgm_readpgmrow() by doing one fread per row instead of a
              pgm_readrawsample() per sample.  Thanks "Ariel Berkman"
              <aberkm1@uic.edu>.

              libnetpbm: Make PGM, PPM, and PNM routines read suitable
              PAM images.

              pnmsplit: upgrade to pamsplit.

              xwdtopnm: Add ability to work with bits per pixel >
              bits per item.  Replace whole pixel reader.

              pamtotiff: Use TIFFDefaultStripSize() for ROWSPERSTRIP default.

              pamtotiff: add -tag option.  Thanks Gary Gorbet
              <ggorbet@sdicgm.com>.

              ppmglobe: add -background, -closeok, filename argument.

              pnmcolormap: Work on multi-image stream (one map for all).

              pnmtopclxl: read/convert/write one row at a time.
              Thanks Martin Buck <m@rtin-buck.de>.

              ppmtolj: read/convert/write one row at a time.
              Thanks Martin Buck <m@rtin-buck.de>.

              ppmtoxpm: fix bug: produced incorrect output when number
              of colors is a power of 92.  Thanks Mark Weyer.

              pnmcolormap: fix bug: crashes with input depth > 3.

              pambayer: fix bug: doesn't actually read input file.

              ppmtompeg build: add missing const to work around TRU64
              compile failure.

              xwdtopnm: Fix handling of padding at end of XWD row.

              pamtotiff: fix bug with PAMs with > 3 planes.

              Remove PPM_PACKCOLORS.

              pnmremap: fix arithmetic overflow bug with maxval > 255 that
              caused random pixels.

              remove global "cmdline" variables from all programs (4 had them).

              pnmtops: remove extra %%%%Page from 10.27.

              mkinstalldirs: remove chmod 755 to match Automake's
              mkinstalldirs.

              libopt: add -quiet option

              ppmtojpeg: fix prototype mismatch when building without
              the JPEG function.

              libnetpbm: fix: PPM_DISTANCE uses red twice instead of and green.

              pnmnlfilt: fix alpha ranges.
         
              cameratopam: replace setenv with putenv so it works on Solaris.

              cameratopam: put in workaround for Solaris header file bug.

              pngtopnm: fix bug: grayscale PNG produces PPM.  s/b PGM.

              anytopnm: Use sed instead of Awk -- more universal.

              anytopnm: fix "INTERNAL ERROR" crash due to "filetype" variable
              not set.

              rletopnm: fix crash when input file is empty or
              there are various other problems reading its header.

              rletopnm: fix universal crash in option parser.

              tifftopnm: fix crash due to uninitialized variable.

              libnetpbm: Fix bug from 10.30: erroneously says a PAM header
              line is missing.

05.10.16 BJH  Release 10.30

              Add pambayer.
              
              Add pamrgbatopng.
                            
              Add pamtilt.  Thanks Gregg Townsend <gmt@cs.arizona.edu>.
              
              pamtotiff: create from pnmtotiff.

              pamtofits: create from pnmtofits.

              pamaddnoise: create from pnmaddnoise.
         
              pamarith: Add -divide.

              pammasksharpen: Add -sharpness.

              pnmtopng: add -comp_mem_level, -comp_strategy, -comp_method,
              -comp_window_bits, -comp_buffer_size.

              pnmtopng: use Shhopt command line processor; replace
              -chroma with -rgb, -phys with -size, -time with -modtime.

              pnmremap: Handle multiple image stream.

              xpmtoppm: Expand capacity from 2K character input lines to
              8K character input lines.

              libnetpbm: improved messages for "color xxx cannot be
              represented precisely with maxval M"

              libnetpbm color specification parsing:  Improve warning message
              about rounding.

              libnetpbm/everything: speed up ppm_writeppmrow() and
              pgm_writepgmrow() by doing one fwrite per row instead of
              a pgm_writerawsample() per sample.

              pnmtopng: fix "meaningful bits" optimization of PGM so it
              optimizes all the way instead of stopping at 4 bits.

              pnmtopng: fix crash when no -alpha option, due to dereferencing
              of undefined alpha_mask.

              pnmtopng: fix bug: arbitrary color made transparent in
              paletted PNG when nothing should be transparent.

              pnmtops: bug: selects wrong Postscript level.

              ppmtowinicon: use REALLOCARRAY instead of arithmetic-overflowing
              realloc().

              anytopnm: fix bug: fails when 'file' database doesn't
              have mime type but does have human-readable type.
              
              manweb: recognize directory as not executable in search of PATH.

              pgm_allocrow(), ppm_allocrow(), pnm_allocrow(): cure
              arithmetic overflow.

              libnetpbm: On plain formats, check for sample value exceeding
              maxval.

              libnetpbm: reject maxval > 65535 in "pam" functions. 

              pamarith: Use normalized libnetpbm facilities to get
              proper accuracy.  Thanks Thomas Henlich
              <http://sourceforge.net/users/thenlich/>.

              pamarith: fix bug: shift functions don't work when maxvals
              are not identical.

              pamarith: fix rounding error on multiply.

              pgmtexture: correct calculation of normalizing constants
              for d > 1.  Thanks Marc Breithecker
              <Marc.Breithecker@informatik.uni-erlangen.de>.

              pnmnorm: fix divide by zero crash.

              pnmnorm: fix bug that doesn't let you specify
              -luminosity, -colorvalue, or -saturation.

              ilbmtoppm: fix variable used before set.

              pnmtofits: fix 16 bit sample values > 2**15.

              pnmtopsnr: minor adjustments to messages.

              pnmnorm: don't crash when wvalue == bvalue.  Thanks Thomas
              Henlich <http://sourceforge.net/users/thenlich/>.

              pnmnorm: fix rounding of output values.  Thanks Thomas
              Henlich <http://sourceforge.net/users/thenlich/>.

              pnmhisteq: Fix external map to have width maxval + 1 instead
              of maxval, so full intensity input pixels map properly.

              pnmhisteq: Fix -rmap.

              Fix typos in error messages in various programs.

              pgmmedian: change syntax to Netpbm standard.

              pammasksharpen: fix signedness bug that caused random bright
              pixels at edges.

              pammasksharpen: fix bug with maxval != 255.

              Clean up a bunch of function prototypes so some broken
              compilers don't complain about missing "const" in them.

              Remove dependency of pnmtops on basename().  It isn't in
              some C libraries and we don't want to mess with linking
              extra libraries.

              Build of ppmsvgalib: work properly when LINUXSVGALIB is
              a "default path" value such as "libvga.so".

05.08.15 BJH  Release 10.29

              Add ppmdraw.

              Add pammixinterlace.  Thanks Bruce Guenter <bruceg@em.ca>.
              
              Add pgmmedian.

              Add pnmaddnoise.

              pnmtopclxl: add -rendergray option.

              pnmtopclxl: add -jobsetup option.
              
              pstopnm: add -dSAFER Ghostscript option.

              pnmcrop: add -margin option.

              pnmcrop: add -borderfile option.

              pnmnorm: add -luminosity (which was already default),
              -colorvalue, and -saturation.
         
              pnmtopng: Don't include any alpha info if supplied alpha mask
              is all opaque.

              ppmcie: Make white point mark more visible.

              pamdice: Remove restriction of 100 slices in each direction.

              pnmtopng: Fix bug: erroneous transparent pixels when supplied
              alpha mask is all opaque.
              
              Fix bytesToWordInt(): converts incorrectly on a machine that
              has pointer size != word size and uses the general case code.

              libnetpbm: fix basic pm_readlittleshort() bug introduced
              in 10.27.  Affects mdatopbm, rawtopgm, lispmtopgm,
              pcxtoppm, winicontoppm, bmptopnm, sirtopnm, xwdtopnm,
              cameratopam.

              pamlookup: fix universal crash.  Thanks "Colley, Anthony
              W." <Anthony.Colley@ngc.com>

              pbmtolj: fix bug from 10.28: crashes with a line which is
              a multiple of 8 plus 7 pixels wide not counting white right
              margin.

              ppmtompeg: fix uname() rc test (sometimes > 0 is success).

05.06.06 BJH  Release 10.28

              Add cameratopam (Dave Coffin's dcraw).

              ppmtoxpm: ignore empty or similar malformed XPM line instead
              of giving up.

              pbmtolj: do multi-image stream.

              pnmindex: rewrite in C.

              Fix Gcc 3 warnings.

              pamcomp: fix out of memory problem due to uninitialized
              pam.allocation_depth.

              anytopnm: remove apparently redundant traps of signals.

              pnm_alloctupletable(): fix bug - returns random value.
              (affects pnmcolormap, pnmremap, pnmquant, others).
         
              jpeg2ktopam: fix array bounds violation on 64 bit machines.
              Thanks Frederic Devernay <Frederic.Devernay@inrialpes.fr>.

              rle_open: remove extraneous errno declaration.  Thanks
              Joerg Sonnenberger <joerg@britannica.bec.de>.

              pm_tmpfile, pm_make_tmpfile: rearrange code.

              ppmtompeg: fix insecure temp file.  Thanks Alexey
              Tourbin <at@altlinux.ru>.

              libnetpbm: fix basic readlittlelong() bug introduced in 10.27.
              Affects xwdtopnm, bmptopnm, winicontoppm, lispmtopgm.

              pbmtext/libnetpbm: fix crash with -builtin=fixed.

              pbmtoppa: fix floating point exception always due to
              undefined DPI.

              fix jpeg2000 build failure on system without inttypes.h,
              etc.  Build now excludes jpeg2000 if you don't have 64
              bit capability, which practically means you have
              inttypes.h, etc.

              jpeg2000: don't do unsafe temporary files.

              ppmshadow: make it work with old Perl.

              pnmquant: remove use of Fcntl::seek, not available in
              Perl 5.00503.

              pnmquant: make -quiet option work.

              pnmgamma: Correct math in -srgbramp.  Add proper rounding.
              Thanks Horst J. Wobig (hjw.fsw@wobig.de).

              ppmshadow: fix blurring of non-translucent shadow.

              ppmtoxpm: fix use of uninitialized variable that results
              in invalid color map.
         
              Fix backward pnmtopnm - pamtopnm symlink.

05.03.28 BJH  Release 10.27

              tifftopnm: do multi-image streams.

              pnmtotiff: add -append option.

              pnmtotiff: do multi-image streams.

              pnmtopclxl: fix bug with invalid palette in
              SetColorSpace command.

              pnmtopng: don't accept -background without -mix.

              Eliminate pnmtopnm program -- install 'pnmtopnm' as an
              alternate name for 'pamtopnm' instead.

              pamscale: refilter as part of resampling for better
              quality downsampling.

              ppmcolormask: fix segfault with stdin input.

              Add pm_setjmpbuf().

              pnmindex, ppmquantall: use pnmquant instead of ppmquant.

              pnmquant: add -quiet, -plain options

              ppmfade, pnmshadow, pnmindex, pamlookup: Use pamscale
              instead of pnmscale.

              ppmtoxpm: Don't include superfluous entries for colors
              of transparent pixels, or for transparency when there are
              all colors are opaque, in the XPM color map.
              
              pnmquant: remove dependency on File::Temp, not available
              before Perl 5.6.1.

              pamfunc: use multiplication instead of division for -divisor,
              for speed.

              pamfunc: fix bug in -adder and -subtractor with signed
              arithmetic.  Thanks David Jones <drj@pobox.com>.

              pamscale: fix bug in converting negative floats to integers.
              Thanks David Jones <drj@pobox.com>.

              pamscale: fix bug with -filter: scanbuf too small, thus
              some output rows/columns can never be created and output raster
              is invalid.

              build: fix build errors in ppmtompeg with OMIT_NETWORK.

              jpeg2ktopam: fix uninitialized memory problem in allocating
              jasperCmptNo.

              pbmclean: fix -minneighbors so it isn't really -minneighbor.

              pnmremap: allow RGB map and BLACKANDWHITE/GRAYSCALE input.

              pamstereogram: fix bug with -eyesep (float/double).

              pamtojpeg2k: fix bug with -compression (float/double).

              pamtojpeg2k/jpeg2ktopam: work on 64 bit machine; fix
              definition of int32fast_t, etc. in libjasper.

              libnetpbm: Respect plainness of specified format when writing.

              pnmremap: fix handling of arithmetic overflow in color
              distance calculation.

              pnmremap: fix bug with palette of different depth from image.
              
              libnetpbm: fix 2 byte per pixel pnm_pamwriterow(),
              pnm_formatpamrow().

              pbmmake: fix bug: requires color option.  (Introduced ca.
              10.23).

              -plain works with PAM write functions.

              common -plain option causes failure instead of wrong output
              when used with PAM output.

              pnmremap: fix rounding error where map maxval is small and
              unequal to image maxval.

              Add pnm_normalizeRow(), pnm_unnormalizeRow(),
              pnm_creategammatransform(), pnm_createungammatransform(),
              pnm_freegammatransform(), pnm_freeungammatransform().
              Idea and prototype from "Scott T. Smith" <scott@gelatinous.com>.

              pamscale: Use pnm_noramlizeRow() to speed up gamma adjustments.

              palmtopnm: Don't assume Palm Bitmap is valid.
              Thanks Paul Bolle <pebolle@tiscali.nl>.

              giftopnm: fix crash with input that has bogus color indices
              in the raster.

              giftopnm: fix crash with input that has a bogus minimum code
              length field.  Thanks deekoo@tentacle.net (Deekoo L.).

              pnm_readpamrown(): use pnm_readpamrow() instead of
              pm_getraw() for speed.  Similar for pnm_writepamrown().

              pnm_readpamrown(): use multiplication instead of division
              for speed.  Thanks "Scott T. Smith" <scott@gelatinous.com>.
         
              pm_readbiglong(), etc.: pm_error() in case of failure.

              Add pm_readchar(), pm_writechar(), pm_readcharu(),
              pm_writecharu().

              pnmtopalm: Add packbits compression.

              pnmtopalm: Add version 3 capability (-density, -withdummy).

              pnmtopalm: fix bug: incorrect between-image pad amount.

              pnmtopalm: fix compressed images.  use 0 compressed size
              field - not totally correct, but passable.

              palmtopnm: fix incorrect handling of some combinations of
              PALM_IS_COMPRESSED flag and compression type field.
              Thanks Paul Bolle <pebolle@tiscali.nl>.

              palmtopnm: fix totally broken RLE and scanline compression.
              Thanks Paul Bolle <pebolle@tiscali.nl>.

              palmtopnm: handle PackBits compression.  Thanks Paul
              Bolle <pebolle@tiscali.nl>.

              palmtopnm: handle Version 3 encoding.  Thanks Paul Bolle
              <pebolle@tiscali.nl>.

              Make makeman put in missing newline.  Thanks Eric S. Raymond
              <esr@thyrsus.com>.

              Include libz in build of programs that use TIFF library.

              palmtopnm: fix wrong check for disallowed combination of
              -transparent and -rendition.

              pnmtops: Add -psfilter, -flate, -ascii85, -level options.

              pnmtops: Add -dict, -vmreclaim options.

              pnmtops: improve %%Title

              pamcomp: fix bug that duplicates last row of overlay image.
              Thanks achurch@achurch.org (Andrew Church).

              pamcut: fix bug that fills the rightmost column with black.
              Thanks achurch@achurch.org (Andrew Church).

              pnmtops: Add -noshowpage option.

              pnmtops: Add %%%%Page. (whoops, this actually added a second
              %%%%Page.  Removed in 10.31).

              pnmtopalm: fix bug with -offset option.

              xwdtopnm: recognize TrueColor visual class in header dump.

              ppmforge: fix bug: crash due to wild pointer with -night.
              Thanks John Walker <kelvin@fourmilab.ch>.

05.01.01 BJH  Release 10.26

              pnmhistmap: Add -dots, -nmax, -red, -green, -blue, -lval,
              -rval, -height, and -width options.
              Thanks "John H. DuBois III" <spcecdt@armory.com>.

              pnmnorm: accept -wpercent and -wvalue (or -bpercent and -bvalue)
              together.  Thanks Gregg Townsend <gmt@CS.Arizona.EDU>.
         
              xwdtopnm: Add -headerdump option.

              pnmtoxwd: Include 256 color color maps in direct color instead
              of zero.  Zero has a weird effect.

              pamtotga: recognize RGB_ALPHA instead of RGBA.

              palmtopnm: fix bug in determination of compression type.

              palmtopnm: fix bug in handling of multi-image streams.
              Thanks Paul Bolle <pebolle@tiscali.nl>.

              pnmtopalm: fix bugs in computation of nextDepthOffset.
              Thanks Paul Bolle <pebolle@tiscali.nl>.

              pamtotga: fix TGA pixel size for TGA with alpha.  Don't do
              colormap if input has transparency.

              pamtotga: fix crash due to uninitialized "id" field in TGA 
              header.

              pbm_writepbmrow(): Fix bug in MMX/SSE code that causes
              segmentation fault.

              pnmhistmap: Fix bug: doesn't work with maxval != 255.
              Thanks "John H. DuBois III" <spcecdt@armory.com>.

              pbmtext: fix crash with code point > 127.

              ppmtompeg: major cleanup.

              pnmtopng: fix "internal error" and crash bug with -transparent.

              pnmtoxwd: fix endianness on littleendian machines.

              pnmtoxwd: fix bug: doesn't work if you specify an option.
              
              jpegtopnm: fix bug: -dumpexif all wrong.

              jpegtopnm: fix bug: newline written to stdout instead of stderr
              with -dumpexif.

              Add missing 'col' declaration so -msse compile works.

              pcdovtoppm: fix syntax error

              pnmtojbig/jbigtopnm: add newline to "usage" message.

              pamperspective: fix bugs with -frame_include, etc.

              build: Jpeg2k programs build properly with newer Jasper library.

              build: Fix bug: "no rule to build xxx.so" with external
              Jasper or Jbig library.

              Add NAME and DESCRIPTION section to pointer man pages.

04.10.16 BJH  Release 10.25

              Add pcxstd.ppm.

              Add pbmtoibm23xx.  Thanks Jo Fahlke <jorrit@jorrit.de>.

              Add pamedge, replacement for pnmedge.
         
              pamperspective: add -frame_include, -*margin, -include.

              pamcomp: Handle RGB_ALPHA and GRAYSCALE_ALPHA images,
              using the opacity plane.
              
              pamscale: do transparency pixel mixing properly.

              ppmtompeg: cleanups and additional verbosity.

              anytopnm: Use 'nawk' instead of 'awk' where available.

              anytopnm: Don't use -e.  (not available everywhere).

              tifftopnm: Add warning when Whole Image method reduces
              resolution to 8 bit.

              pamtopnm: accept extra planes (ignore them).

              pamcut: major speedup.  Thanks Prophet of the Way
              <afu@wta.att.ne.jp> (Akira Urushibata ("Douso")).

              Add pnm_getopacity().

              libnetpbm: "pam" read and write routines much more
              efficient.  Thanks Prophet of the Way
              <afu@wta.att.ne.jp> (Akira Urushibata ("Douso")).

              Add pnm_formatpamrow(), pnm_allocrowimage(),
              pnm_freerowimage().  Thanks Thanks Prophet of the Way
              <afu@wta.att.ne.jp> (Akira Urushibata ("Douso")).

              pnm_readpamrow(): Add option to have "tuplerow" argument
              NULL and not get the row's contents.  Thanks Thanks
              Prophet of the Way <afu@wta.att.ne.jp> (Akira Urushibata
              ("Douso")).

              Add pnm_writepamrowmult().  Thanks Thanks Prophet of the
              Way <afu@wta.att.ne.jp> (Akira Urushibata ("Douso")).

              libnetpbm: format plain format images more nicely.
              Thanks Thanks Prophet of the Way <afu@wta.att.ne.jp>
              (Akira Urushibata ("Douso")).  

              pamcut: fix bug: Blows up instead of failing cleanly
              when you try to cut beyond the bounds of the image.
              Thanks Thanks Prophet of the Way <afu@wta.att.ne.jp>
              (Akira Urushibata ("Douso")).

              fix bug: MMX/SSE fast PBM writing (with gcc -msse) all wrong.

              pamscale; fix bug: -linear option sense reversed.

              pamscale: fix bug: everything too dark when using resampling
              to enlarge.

              Speed up pbm_writepbmrow() (and all PBM output programs)
              by going a byte at a time.  Thanks Prophet of the Way
              <afu@wta.att.ne.jp>.

              pamperspective: fix bug that can cause memory corruption
              and crashes.  Thanks Mark Weyer
              <Mark.Weyer@math.uni-freiburg.de>.

              ppmtompeg: put in proper marshalling/unmarshalling so as not
              to depend on a 32 bit integer type.

              ppmtopcx: add -palette option.

              pnmconvol: fix bug: green and blue convolution matrices
              exchanged, gray exchanged with random.

              ppmtowinicon: fix bug: crashes on 32 bit images.
         
              Use <inttypes.h> or <types.h> where possible, dynamically
              built "inttypes.h" where not.  Eliminate uint32n.

              Handle BITS_PER_WORD=64 in wordaccess.h so it builds on 
              64 bit platforms.

04.08.11 BJH  Release 10.24

              g3topbm: Add -stop_error.

              Add makeman to build tools.  Thanks Eric S. Raymond
              <esr@thyrsus.com>.

              pamflip: Large speed, memory improvements for
              non-diagonal flips.  Thanks Prophet of the Way
              <afu@wta.att.ne.jp>.

              jbigtopnm, pnmtojbig: Use packed PBM functions to speed up
              greatly.  Thanks Prophet of the Way <afu@wta.att.ne.jp>.

              g3topbm: Don't fail on premature EOF; produce partial
              output instead.

              add pnm_maketuplergb(), pnm_makerowrgb(), pnm_makearrayrgb().

              Fix a bunch of programs that, starting with 10.23, have too
              large a "len" field in the pam structure, causing storage
              overwrites.

              pbmtext: fix free of unallocated storage bug with stdin
              input text.

              pnm_writepaminit(): deal correctly with pam structure that
              doesn't contain tuple_type member.

              Fix pamP->allocation_depth == 0.

              pamstretch-gen: use pamscale instead of pnmscale.

              Generate pm_config.h at make time.  Determine endianness
              and word size stuff dynamically.  Use uint32n instead of
              uint32_t in infotopam.c.
         
              fitstopnm: fix MIN/MAX transposition in maxval bounding.
         
              Fix bug: "wordn" in place of "wordint" in wordaccess.h.

              Fix bug: -plain option on "pam" programs generated plain
              header, but raw raster.

04.07.17 BJH  Release 10.23

              Add pamgauss.

              Add pammasksharpen.

              Replace pnmtoplainpnm with pnmtopnm.

              pnmconvol: Add -nooffset.

              pamdice: add -hoverlap, -voverlap.  Thanks Geoff
              Kuenning <geoff@cs.hmc.edu>.
         
              pbmtoepson: Add -dpi, -adjacent, -noadjacent, and -protocol
              options.

              pstopnm: recognize Encapsulated Postscript by presence of 
              "EPSF-" in the header instead of a whole specific header line.
              Thanks Philip Hallstrom <philip.hallstrom@gilbarco.com>.

              pnmpad: Allow -left/-right along with -width,
              -bottom/-top along with -height.  Thanks David Jones 
              <drj@pobox.com>.

              pnmpad: round to nearest instead of lowest in interpretation
              of -halign, -valign.

              pnmsplit: Add -padname option.

              pnmenlarge: work on multi-image streams.
              
              libnetpbm: add allocation_depth to PAM structure.  Add
              maketuplergb(), makerowrgb(), makearrayrgb().

              pnminvert: much faster for PBMs.  Thanks 
              Prophet of the Way <afu@wta.att.ne.jp>.

              pbmmake: use packed bits to speed up.  Thanks Prophet of
              the Way <afu@wta.att.ne.jp> (Akira Urushibata ("Douso")).

              pbmtog3: speedups.  Thanks Prophet of the Way
              <afu@wta.att.ne.jp> (Akira Urushibata ("Douso")).

              Fix gamma value (from .45 to 2.2) in pm_gamma709(), 
              pm_ungamma709().

              pgmramp: Fix signedness bug with -rectangle, -ellipse.

              pnmtojpeg: fix bug with large exif files. (negative malloc)

              pnmtopng: Fix estimation of whether it's better to use a
              colormap or not.
         
              Add pamditherbw, replacement for pgmtopbm.

              pamperspective: Fix bug.  Incorrect output.  Thanks
              <Mark.Weyer@math.uni-freiburg.de>.

              ppmtompeg: fix crash with input that is not a multiple of
              16 pixels high and wide.

              pamtotga: fix crash due to freeing nonexistent color table.

              pamtotga: fix bug: invalid TGA when you use -rgb with a
              non-color input.

              pgmtopbm: fix calculations that divide by maxval+1; should
              divide by maxval.  Thanks David Jones <drj@pobox.com>.

04.05.01 BJH  Release 10.22

              Add pamperspective.  Thanks Mark Weyer
              <Mark.Weyer@math.uni-freiburg.de>.

              Add pamstereogram.  Thanks Scott Pakin <scott@pakin.org>.

              Add pc1toppm.  Thanks Roine Gustafsson
              <roine@users.sourceforge.net>.

              Add pbmtodjvurle.  Thanks Scott Pakin <scott@pakin.org>.

              Add infotopam.  Thanks Rich Griswold <griswold@acm.org>.

              Add pamtopfm, pfmtopam.

              ppmtowinicon: Add -truetransparent.

              ppmtowinicon: remove old, wrong, undocumented -andppm synonym
              of -andpgm.

              ppmtopcx: Add -stdpalette option.

              pamsumm: Add -brief, -normalize.

              All programs that interpret color specifiers (ppmchange, etc.):
              warn if the specified color can't be represented, to the 
              precision specified, in the operative maxval.

              ppmchange: fail if the specified color can't be represented in
              the maxval of the input image.

              pcxtoppm: Imply standard palette when palette in PCX header is
              all black.  This function apparently got lost some time since
              it was added in 1994.
              
              pcxtoppm: Add the color palette to -verbose output.

              ppmtopcx: Fix bug: wrong 256 color PCX output.  From
              10.21.  Thanks Timothy Borgeaud
              <timothy@borgeaud.freeserve.co.uk>.

              Convert ppmtodjvurle into pamtodjvurle.

              pngtopnm: Dump additional info about PNG with -verbose.

              pngtopnm: Use Netpbm command line parser.

              pbm_readpbmrowpacked(): Fix bug: ORs bits into return value
              instead of setting them.  Affects pbmtoescp2.

              ppmtopcx: Fix bug: don't add black to a palette if it's not
              already there.

              pnm_tuplehashtotable(): fix allocsize (maxsize) = 0 case.

              pamflip: fix bug with random memory accesses due to
              signed/unsigned comparison.

04.03.28 BJH  Release 10.21

              Add pamsumm.

              Add pamsummcol.

              Add pamsharpness, pamsharpmap.

              Add ppmtodjvurle.  Thanks Scott Pakin <scott@pakin.org>.

              pstopnm: add -dpi option.

              ppmtopcx: add -planes option.
         
              pbmtext: add -width option.

              replace pnmcomp with pamcomp, do transparency right wrt gamma.

              tifftopnm: Use better CMYK->RGB algorithm: y=1-(b+k) instead
              of y=(1-k)*(1-b) in Row By Row mode.

              pbmtext/libnetpbm: Allow pbmfont fonts to have 96 characters
              (32-128) instead of 95.

              pnmtopng: fix bug with -transparent.

              pcxtoppm: remove debugging footsteps.

              pnmflip: pass through -plain, etc. to pamflip.

              Include pm_system.h, pm_gamma.h in package.

              ppmtomap: Change #/bin/sh to #!/bin/sh.

              ppmtogif: Don't violate array bounds when GIF color map is
              is larger than internal color map.

              yuvsplittoppm: Fix -ccir601 option; clean up.

              ppmtobmp: Fix bug: Generates invalid bits per pixel
              (e.g. 3) when input image has small number of colors.
              Thanks David Jones <drj@pobox.com>.

              pbmtog3: fix buffer overrun when image > 1728 columns.
              Thanks Prophet of the Way <afu@wta.att.ne.jp>.

              pnmsvgalib: Correct error message - too wide -> too tall.

              pnmtotiffcmyk:  Correct abs to fabs so -theta works.

              sldtoppm: Correct abs to fabs.

              pgmramp: Correct abs to fabs so -rectangle and -ellipse work.

              pgmramp: Don't crash with -rectangle and height or width = 1.

              ppmforge: Correct abs to fabs so the planet is more than
              2 pixels wide.  Also recode much of program in high level C.

              pnmtojpeg: interpret "length" field in exif data as unsigned
              16 bit instead of signed.

              pnmrotate: fix bug: always crashes in memory free

              pnmrotate: remove debugging messages.

              Declare _XOPEN_SOURCE=500 in programs that use strdup() so
              C libraries that don't have _BSD_SOURCE will declare it.

              Use FTELLO macro so things compile on a system that
              doesn't have ftello.  Don't assume _LARGE_FILE_API means
              ftello is available -- _LARGE_FILE_API is input to libc, not
              output from it.

04.01.30 BJH  Release 10.20

              pamscale: derive from pnmscale.

              pamscale: Add resampling/convolution code.  Thanks
              Michael Reinelt <m.reinelt@steinhilberschwehr.at>.

              pamscale: Do math in linear intensities instead of
              gamma-adjusted.

              pamscale: Add -xyfill.

              pnmtopng: Remove global variables.  Solves a problem with 
              conflicting name with libc: "gamma".
                       
              pbmtomda: make program identifier 'MicroDesignPCW'.  Thanks
              John Elliott <jce@seasip.demon.co.uk>.

              fitstopnm: Produce maxval 1 instead of 0 when input is all one
              value.  Use maxval 255 when samples are floating point.

              pamstretch-gen: be robust to invalid PNM input.

              anytopnm: do safe temporary files.

              ppmquantall: do safe temporary files.

              pnmindex: do safe temporary files.

              pnmmargin: do safe temporary files.

              pamstretch-gen: do safe temporary files.  Thanks 
              Stefan Nordhausen <nordhaus@informatik.hu-berlin.de>.
              
              tifftopnm: Do better validation of number of channels.
              
              libnetpbm: Add "normalized" (floating point) read/write
              routines:  pnm_readpamrown(), pnm_writepamrown(), 
              pnm_allocpamrown(), pnm_freepamrown().

              libnetpbm: Add pm_gamma709, pm_ungamma709().

              libnetpbm: rename createBlackTuple() to pnm_createBlackTuple().

              pm_openr_seekable(): use TMPFILE environment variable.
              Thanks Kai Strieder <ska@pixelboxx.de>.

              libnetpbm: Fail when input maxval is 0.  This wreaks havoc
              with such things as rescaling to a new maxval.

              pnmquant: Fix bug wherein all options are rejected.

              ppmshadow: Fix crash in all invocations.

              pnmtopng: fix bug with array bounds violation with -alpha.
              Usual symptom: "internal inconsistency" message.

              anytopnm: Remove "function" so it works on FreeBSD.

              configure: Do a better job of choosing between -R and -rpath.

              configure: Add test compile for PNG, Z libraries.

03.11.15 BJH  Release 10.19

              ppmhist: Add -float option.

              ppmhist: speed up -colorname by reading color dictionary only
              once.

              bmptopnm: fix bug with BMPs that end prematurely.

              giftopnm: Properly generate alpha mask when the same
              color is both transparent and opaque in the GIF.  Thanks
              Karl Zilles <zilles@1969.ws>.

              rgb.txt: move D65 to the end, so "white" is preferred.

              xwdtopnm: change interpretation of bitmap_pad and bitmap_unit
              to accomodate Xfree86 direct color 24 bit xwd.

              pbmtextps: fix bug where intermediate file gets truncated.

              pstopnm: fix bug in which Standard Input never works.

              ppmtobmp: change 'char' to 'unsigned char' to work around a
              Solaris C library bug.

              ppmtobmp: handle maxval properly for maxval != 256 truecolor BMP.
              Thanks Michael Buchholz <michael.buchholz@deu.mci.com>.

              ppmquant: replace with wrapper for pnmquant, because ppmquant
              had some really hard bug in computing the new color set.

              Fix stack corruption in pXm_check() on systems that have
              both 32 and 64 bit file offsets.

              Add 'makecat' build tool and description to USERDOC of
              using lynx -dump to get man-able documentation.

              Make AIX shared library build work, with -qmkshrobj.

              configure: Add intelligence to default location for zlib,
              libpng headers.

              configure: Make shared libraries work on AIX.

              Add netpbm-config.

              installnetpbm: don't crash on mkdir on old Perl.

03.09.19 BJH  Release 10.18

              Add escp2topbm, pbmtoescp2.  Thanks Ulrich Walcher
              <u.walcher@gmx.de>

              Add pbmtomatrixorbital.

              Add ddbugtopbm by Russell Marks.

              bmptopnm: Handle transparency, arbitrary pixel format (rgba
              masks in BMP header).

              bmptopnm: Handle top-down BMP.

              bmptopnm: Handle 32 bit BMP.  Thanks Aaron Orenstein
              <aorenste@grandvirtual.com>.

              ppmtopcx: add -8bit option.  Thanks Holger Schemel
              <holger.schemel@telefonica.de>.

              ilbmtoppm: recognize (and ignore) DPPS and TINY chunks.

              pbmpage: Add solid perimeter box to Pattern 1.

              anytopnm: use 'file --mime' where available to determine file
              type more robustly.

              manweb: make 'webdir' a list of directories instead of just one.

              pnmpsnr: fix bug: Cr and Cb interchanged.  Thanks
              "Uwe Utecht" <uwe.utecht@bbc.co.uk>.

              pnmstitch: fix crash.  Thanks "Paul" <pwilkins@lashwhip.com>.

              manweb: add ability to read info files.

              configure: missing lineends for Solaris.

              anytopnm, ppmquantall: remove non-POSIX tail -N and egrep.

              pgmtexture: Fix Measure of Correlation-2 so small values don't
              turn into zero (replace abs() with fabs()).
         
              Add and use MALLOCVAR and MALLOCARRAY utility macros.

              Allocate rows individually if can't get all rows in a single
              memory block.

              Remove hpcdtoppm from the main package because it isn't
              licensed properly to be distributed on Sourceforge.
              
              Remove "magic" file -- the version that comes with Christos
              Zoulas' 'file' package now contains everything that file had.

              configure: put space after -o in test compiles.

              Explicitly set SCRIPTS make variable to null so environment
              variable of the same name doesn't screw things up.

              Remove -DALL_SOURCE from AIX compile; define it in files that
              require it.

              Add -ffast-math option to recommended Gcc options.

              stamp_date: don't use LOGNAME as a variable (on AIX, you can't).

03.07.05 BJH  Release 10.17

              Various code cleanups based on TRU64 compiler warnings.

              Configure: print message when $OSNAME not recognized.

              Fix Makefile.common so LIBS and LOADLIBES work.

              Fix make file for Ppmglobe so it links the math library.

              Fix bug in xxx_check(): function/prototype mismatch
              causes bogus wrong-filesize error on systems where off_t
              is sometimes not 64 bits.

03.07.03 BJH  Release 10.16

              Add ppmglobe.  Thanks Max Gensthaler <Max@Gensthaler.de>.

              bmptopnm: Add ability to convert 16 bits per pixel Windows BMP.

              giftopnm: add -image=all.

              pnmtiff: Add -resolutionunit option.

              pnmtopng: fix bugs, remove limitations with -text.

              pgmabel: Declare internal subroutines 'static'.
              
              pstopnm: fix bug: encapsulated postscript confused with 
              regular postscript, so all pages get overlaid as one page.

              pnmrotate: Use smaller real memory working set.

              winicontoppm: use standard option parser.

              pnmflip: fix bug causing -r180 and -r270 to be ignored.
              Thanks YANO Hirokuni <hyano@ya-no.com>.

              configure: fix bug with missing space when using CFLAGS
              environment variable.

              Add CPPFLAGS and LOADLIBES to rules and 'configure' test
              compiles.

              Issue error message if you do 'make package' before 'make'.

              Add VERSION file to package.

              Use explicit library file name on a link instead of -L/-l
              where possible.

03.04.27 BJH  Release 10.15

              Add pamtohtmltbl.  Thanks Alexander B. Ivanov <ssh@S-and-B.ru>.

              Add pampop9.  Thanks Robert Tinsley, 
              <http://www.thepoacher.net/contact>.

              winicontoppm: Handle 24 bit direct color winicons.  Thanks
              Lee Benfield <lee@benf.org>.

              pnmrotate: add -background option.

              pnmtojpeg: Add -density option.

              pamtotga: Add alpha capability, via "RGBA" tuple type.

              libnetpbm: Add ppm_readcolornamefile().

              Make library and programs work with files > 2GB.  At least 
              on GNU and AIX.

              pbmtext: Add -momargin option.  Thanks "Slaven Rezic"
              <eserte@web.de>.

              pbmtoepsi: fix bug: non six-digit lines between 
              %%BeginPreview: ... and %%EndImage .  Thanks
              "K.Nakano" <ksk@seeds-man.com>.

              pnmrotate: fix bug: background color computed wrong.
              
              pnmrotate: fix bug: PBMs without -noantialias not properly
              promoted to PGM.

              pnmtops: fix bug: 1 bit per sample output when maxval is 2
              or 3.  Should be 4 bits per sample.

              pnmtops: fix bug: everything too dark when input maxval less
              than Postscript maxval.

              pm_nextimage(): fix bug: doesn't read past white space at the
              end of a plain-format raster.

              pnmremap: fix performance bug: don't put same color into hash
              twice.  Thanks Hannu Koivisto <Hannu.Koivisto@ionific.com>.

              ppmtoxpm: Add -hexonly.  Default to system color dictionary.
              Use standard library routines to access color dictionary.

              pnmcolormap: Keep only one row at a time in memory.

              bmptopnm: fix buffer overrun with wild ColorsUsed value.

              Change ordering of include files in parallel.c so it compiles
              on AIX 5.

              configure: change -O2 to -O0 for broken gcc compiler.

              One more chop at the -R/-rpath issue: new defaults for Solaris.

03.02.13 BJH  Release 10.14

              Add pamedge, adapted from pnmedge by Peter Kirchgessner, 1995.

              Add ppmwheel, adapted from ppmcirc by Peter Kirchgessner, 1995.

              Add ppmtoarbtxt, renamed from ppmtotxt by Peter Kirchgessner,
              1995.
              
              pnmflip: add pnmflip directory to search path for pamflip.

              picttoppm: Recognize DirectBitsRgn opcode.  Thanks
              <kabe@sra-tohoku.co.jp>.

              ppmbrighten: -normalize works with nonseekable input.

              jpegtopnm: Update exif stuff to match Jhead 1.9.

              bmptopnm: fix for the case of ColorsUsed != 0 in 
              non-colormapped (24 bit) image.

              pbmtopgm: limit the maxval to legal values.
         
              pamarith: minimum output maxval of 2 for -compare.

              rgb.txt: remove redundant lines, clean up.

              pnmgamma: fix bug in -ungamma -cieramp. 1/gamma vs gamma.

              pnmtopng: fix bug: background color = transparent color in
              colormapped image causes transparent color not to be
              transparent.  Also make bilevel images with background color
              use 1 bit per pixel instead of 2.

              pngtopnm: Fix bug: wrong exit code.

              Fix broken ISUPPER; affects sbigtopgm and color name functions

              pamflip: Use bundled strsepN() instead of strsep().

              giftopnm: fix bug with GIFs that (invalidly) contain translation
              cycles.  Clean up LZW decompression so it is readable and more
              robust.
              
              Add strsepN() to libnetpbm, because strsep() is not available
              everywhere.

              Change --rpath to -rpath.

              Change LINKERISGCC to LINKERISCOMPILER and default to Y.

              configure: Handle explicit "none" response to svgalib prompt.

              Add merge.o (vs mergelist) method of doing merge build.
         
              Fix bug: jbig converters missing from merge build.

03.01.09 BJH  Release 10.13

              Add pamlookup.
              
              Add pamflip: replacement of pnmflip.  Does PAM images and has
              -xform option.

              Add pm_system().

              Ppmrainbow:  Add -norepeat option.

              tifftopnm: handle 32 bits per sample -- Use upper 16 bits.

              tifftopnm: add -byrow.

              pamarith:  Add -compare operator.

              ppmtompeg: Check for missing YUV_SIZE option with 
              -combine_frames and -combine_gops.

              ppmtompeg: fix buffer overrun with invalid message received
              by slave processor.

              pamseq: Fix crash/memory corruption.

              pamseq: Remove debugging statement.

              Add some protection against Netpbm images that indicate
              dimensions too big to process without arithmetic overflow.

              Replace isdigit() with ISDIGIT(), etc.

              pnmnorm: malloc histogram array instead of using stack
              variable to avoid stack overflow.

              thinkjettopbm: works with Solaris Lex.
              
              Add PKGDIR_DEFAULT Makefile.config variable.

              Configure: Test for old JPEG library without jpeg_marker_struct.

              Configure: Add -I/usr/local/include and -I/usr/local/lib to
              OpenBSD and NetBSD compiles and links.

              Change make variable from INCLUDE to INCLUDES to avoid collision
              with Cygwin environment variable.

02.11.09 BJH  Release 10.12
              
              Add pamtojpeg2k, jpeg2ktopam.

              pnmtotiff: add test for seekable output.

              pnmflip: use packed PBM format to save memory.  Thanks
              Ivan Karski <karski@nym.alias.net>.

              thinkjettopbm: replace getopt with shhopt to avoid header file
              problem (getopt.h) on some systems.

              fix multiple definition problem with pm_plain_output.

              pgmminkowski, pgmmorphconv: fix bug: programs missing.  These
              were formally added in 10.0, but the code never actually went in.

              pbmtomda: fix crash with input image not multiple of 4 rows.

              tgatoppm: fix segfault in option processing from recent
              option processor change.

              Slight correction to coefficients in pnm_YCbCrtuple.

              Add pnm_YCbCr_to_rgbtuple() to libnetpbm.

              ppmtompeg: fix build failure with NETWORKLD=NONE.

              ppmtompeg: fix build error due to broken C library header files
              on SunOS.

              Fix missing alias symlinks in merge build.

02.10.17 BJH  Release 10.11
         
              Fix nstring.h, ppmcmap.h dependency in analyzer/.

              pnmtojpeg: Add -rgb option.

              jpegtopnm: Handle a stream of consecutive JPEGs.

              tifftopnm: use TIFFRGBAImageGet() so it works on compressed
              images.

              'make distclean' deletes all symbolic links, even if I forget
              to put them in HEADERLINKS so that 'make clean' gets them.

02.10.10 BJH  Release 10.10

              Add -plain common option.  Thanks "John H. DuBois III"
              <spcecdt@armory.com>.

              ppmhist: Add -colorname option

              pnmcomp: Add -align=beyondleft, -align=beyondright,
              -valign=above, -valign=below and make -xoff and -yoff work
              in conjunction with -align and -valign.  Idea from 
              "John H. DuBois III" <spcecdt@armory.com>.

              manweb: Add ability to search through PATH for documentation
              so you can just say 'manweb bmptopnm'.

              bmptopnm: fix bug from 10.9: 24 bit truecolor should be
              BGR, not RGB.

              ppmtobmp: fix bug from 10.9: 24 bit truecolor should be
              BGR, not RGB.

              pamarith: Fix bug with mixed depth inputs.
         
              pamarith: Fix bug with -subtract of larger # from smaller.

              pnmstitch: fix bug causing segfault at end.

              pgmtopgm, ppmtoppm: Issue error message if arguments given.

              giftopnm: remove debugging messages.

              Fix line number in color dictionary error messages.

              Fix build errors on systems that don't do "echo -n" by using
              cat /dev/null instead.

              Fix build errors that cause the data files not to get installed.
              
              Merge build: fix install of other/ programs and add NETWORKLD
              to the link.

              Merge build: add missing backward compatibility 'pnmfile' link.

              Add SCO OpenServer to configure dialog.  Thanks
              John H. DuBois III <spcecdt@armory.com>

              Add FreeBSD to the configure dialog.

02.09.21 BJH  Release 10.9

              Add pgmtopgm.

              Add ppmtoppm.

              Add ppmtoterm.  Thanks Ero Carrera <ecarrera@lightforge.com>.

              Add ppmrough.  Thanks Eckard Specht
              <specht@hydra.nat.uni-magdeburg.de>.

              Add rgb.txt

              pnmquant: make it work with pipe input; fix crash due to 
              half-finished work accidentally released a few releases ago.

              bmptopnm: Use way less memory by inverting image while still
              in the BMP raster format (as little as 1 bit per pixel), 
              instead of in the libnetpbm format (96 bits per pixel).

              ppmhist: Reads image into memory one row at a time instead
              of entire image in memory at once.

              ppmshadow: make it work with non-PPM input.

              ppmshadow: Don't run a shell for every Netpbm program.

              xwdtopnm, pnmtoxwd: make them work on 64-bit-long machines.
              
              ppmdither: Fix subscript out of bounds bug which caused
              random intensity values for the most intense pixels (and
              very slightly too-intense values everywhere).

              ppmtobmp: Fix bug in 24 bit truecolor: was writing B, G, R
              but standard appears to be R, G, B (per bmptopnm and xli).

              pamarith: restore pnmarith capability of having one of the
              inputs be depth 1 while the other is not.

              pnmtopclxl: fine tuning of PBM input case.

              remove pnmfile; obsoleted by pamfile.

              ppmfade, ppmshadow: Change #!/bin/perl to #!/usr/bin/perl.

              Add a bunch of missing #include <string.h> and fix scanf type
              mismatches, per gcc 3.2 compiler warnings.

              Add some missing -R options to links.

02.08.16 BJH  Release 10.8
  
              Build: Fix Configure bug with JPEG headers in default path.

              Pnmtopclxl: fix bug with PBM input not multiple of 8 across.

02.08.15 BJH  Release 10.7

              Pnmtopclxl: remove padBytesMultiple attribute, which doesn't
              exist on old printers.

              Pnmtopclxl: fix MediaDestination parameter value.

              Pnmtopclxl: make options parsed by standard Netpbm
              option parser; remove unconventional (and broken)
              --output option.  Fix crash with Standard Input input.
              Check whole length given for option values.

              pnmflip: Add -memsize and -pagesize.  Make other options
              conventional - only one transformation allowed.

              Make 'configure' a Bourne Shell program that calls configure.pl.

              Add pnmstitch.  Thanks Mark Salyzyn <salyzyn@cfl.rr.com>.

              Fix -R stuff to fix Solaris build.
              
              Add lots of consts, remove dead code, with the help of 
              GNU compiler warnings.

02.07.29 BJH  Release 10.6

              Add pnmtopclxl.  Thanks Jochen Karrer
              <cip307@cip.physik.uni-wuerzburg.de>.

              Add pnmstitch code; not working yet.

              pnmmontage: add -data option.  Thanks Ben
              <bem@mad.scientist.com>.

              pnmtotga: put "image ID" in TGA output.

              ppmtotga: Correct name to pnmtotga.

              pnmcomp:  Add -opacity option.

              pbmtog3: Add -nofixedwidth option.  Vladimir Nadvornik
              <nadvornik@suse.cz>

              ppmtopgm: upgrade to handle multi-image PPM file.

              icontopbm: fix bugs with invalid input formats.  Thanks
              Vladimir Nadvornik <nadvornik@suse.cz>

              ppmtompeg: fix crash with logarithmic psearch algorithm and
              non-power-of-2 search range.

              configure: fix use of compiler other than cc.  Thanks
              Ben <bem@mad.scientist.com>.

              Fix Cygwin library build for default DLLVER.

              Fix file handle problem with Configure on old Perl.

              Don't use .defs file/run dlltool (Windows).

02.07.14 BJH  Release 10.5
         
              Make library link on Solaris with GNU Ld work.  Thanks
              Russel Winder <russel@russel.org.uk>.

              Make Configure not depend on File::Temp.

02.07.09 BJH  Release 10.4

              Fix space after -I bug in Makefile.common, lib/Makefile.

              Change a bunch of macros to upper case; avoid name collision
              of round() with math library.

              Configure detects broken gcc, sets -O2.

              Configure detects jpeg headers not in default search path.

02.07.02 BJH  Release 10.3

              Add pamfunc.

              Add pgmabel.  Thanks Volker Schmidt <lefti@voyager.boerde.de>.

              pamslice: add -xmgr option.
                       
              pgmslice: upgrade to pamslice.
         
              pamarith: add -mean option.

              pnmarith: upgrade to pamarith.

              pnmtopng: add -palette option.  Functional copy from
              "Pnmtopng" package.

              pbmtoepsi: Add -dpi option.  Thanks Bill Cheng
              <bill.cheng@acm.org>

              tifftopnm: make -respectfillorder work.

              pnmtopng: fix bugs in handling of text comment files.
              Taken from "Pnmtopng" package.

              pnmtopng: fix -hist option.

              Cygwin build accomodations.  Thanks Charles Wilson 
              <cwilson@ece.gatech.edu>.

              Fix ppmtompeg build failure when JPEGLIB = NONE

              Fix missing -R link options.

02.06.14 BJH  Release 10.2
         
              Works with separate build directory.

              pnmnorm: fix precision error causes whites to become black

              Fix bug: Pbmpage needs math library

02.06.07 BJH  Release 10.1

              ppmmake: add -maxval option

              pgmramp: add -maxval option

              Add pamseq.

              ppmcolors: base on pamseq.

              pnmtotiff: Fix bug in -indexbits.

              Fix runtime library paths for Darwin, Netbsd

              installnetpbm: Fix infinite loop when you refuse manweb.conf.

              installnetpbm: Add mode to mkdir for older Perl.

              installnetpbm: Use BSD option on Cp if not GNU.

02.06.01 BJH  Release 10.0
         
              Man pages replaced by web pages -- either private copies
              or straight from Netpbm Central.  Documentation distributed
              via Worldwide Web, not in the Netpbm source code tarball.

              Reorganize source tree.  Combine 4 Netpbm libraries into 1.
              Make merge build merge ALL programs into one.

              Add pamendian.

              Add pamstack.

              Add pamtohdiff, hdifftopam.
         
              Add pbmtextps.  Thanks James McCann <jmccann@eskimo.com>.

              Add pgmminkowski, pgmmorphconv.  Thanks Luuk van Dijk
              <lvd@mndmttr.nl>

              pnmtotiff: Add -indexbits option to allow fewer than 8 bits
              per sample in apletted image.  Thanks Thomas Henlich.
              <http://sourceforge.net/users/thenlich/>.

              pnmtotiff: put zeroes in unused colormap entries.  Thanks
              Thomas Henlich <http://sourceforge.net/users/thenlich/>.
         
              pbmtext:  Add -lspace option.  Thanks Denis <denism@cyberus.ca>.

              ppmqvga: remove; appears to be obsoleted by Pnmquant.

              pnmtops: remove setpagedevice by default.  Add -setpage option.

              ppmtouil: rename to pamtouil, add transparency.

              pamchannel: Add -tupletype option.

              pstopnm: Add a showpage in case the EPS source doesn't have it.
              Thanks "J. Milgram" <milgram@cgpp.com>.

              pstopnm: Run Ghostscript directly instead of via a shell.
              Some Windows environments don't have a Bourne-compatible shell.

              pnmtotiff: Don't put bogus colormap in grayscale TIFF.
              Thanks Thomas Henlich  <http://sourceforge.net/users/thenlich/>.

              picttoppm, ppmtompeg, rletoppm: fix bug with invalid parameter
              ("b" modes) on popen().

              pnmtopng: fix bug with 'mayscale'.

              pnmnorm: Fix bug with bvalue == 0.  Thanks "Blake, Chris" 
              <chris.blake@windriver.com>

              pnmtopng: restructure palette generation to make it
              easier to read.

              configure: Add --help.

              Add Windows DLL versioning.  Thanks Charles Wilson 
              <cwilson@ece.gatech.edu>.
         
              Add Nstring library, so Netpbm programs can use asprintf(), etc.

02.03.15 BJH  Release 9.25

              Add pamdice.
         
              pnmgamma: add -srgbramp.

              ppmnorm, pgmnorm: replace with pnmnorm

              ppmnorm: Read only a row at a time into memory.
         
              ppmnorm: Add -keephues option.

              pnmtotiff: Add -miniswhite option.

              pnmtopsnr: Read only a row at a time into memory.

              Convert bmptoppm to bmptopnm.

              ppmtopcx: Add -xpos, -ypos options.

              pcxtoppm: Don't require seekable input.

              pcxtoppm: Improve messages; add some PCX header validation.

              ppmtowinicon: Use standard alpha mask (PGM image) instead of
              PPM image (black/not black) for and file.

              pnmpad: Add -width, -height, -halign, -valign options.
              Thanks M. van Beilen <mvb@iradis.org>.

              ppmhist: remove 100,000 color limit.

              pnmnlfilt: works with multi-image streams.  Thanks 
              "Steven M. Schultz" <sms@2BSD.COM>.

              pcxtoppm: Fix bug with negative image position.

              pnmtopsnr: fix unsigned integer bug giving wrong results on PGMs.

              libpnm: fix bug: PAM functions write 16 bit samples wrong.

              Tifftopnm: fix bug: transparency mask all wrong.  Thanks
              Heikki Suonsivu <hsu@bbnetworks.net>.

              Makefile improvements for cross compiling.  Thanks
              "Maciej W. Rozycki" <macro@ds2.pg.gda.pl>.
 
              Allow build with existing JBIG library instead of the
              bundled one.  Thanks "Maciej W. Rozycki"
              <macro@ds2.pg.gda.pl>.

              ppmtompeg Makefile: include -R option where needed.
              Thanks Hans Werner Strube <strube@physik3.gwdg.de>.

              Add BSD/OS to configure program.  
              Thanks seebs@plethora.net (Peter Seebach)

              install uses supplied install.sh instead of an 'install program
              it finds on your system.

              configure: Fix missing newline bug for IRIX.

02.01.27 BJH  Release 9.24

              Add ppmsvgalib.
              
              pnmremap: Use full color resolution of input instead of that
              of color map to do Floyd-Steinberg dithering.
         
              pnmremap: fix bug where Floyd-Steinberg dithering of very 
              dark areas creates spots of maximal brightness.

              ppmquant: fix same bug as pnmremap.

              pnmscale: add -nomix option

              rawtopgm: fix bug.  Thanks Joe Krahn <krahn@niehs.nih.gov>.
              
              pnmquant: replace with a Perl program that calls
              pnmcolormap and pnmremap.

              Fix bug: PAM library routines fail to read 2-byte samples.
         
              fix bug: install-dev doesn't install mappam.h.

              configure sets up install paths.

              make install does Ldconfig where required.
         
              pnmtops: Add "XxY" form of -dpi option.  Thanks Vladimir 
              Nadvornik <nadvornik@suse.cz>

              ppmtomap: rewrite to call the new pnmcolormap.

              pnmscale: clean up code a little; now it appears to produce
              somewhat better results -- don't know why.

              exif.h: remove C++ comments

              various fixes to please Irix compiler.

              Change some "long" to "uint32n" so it works on 64 bit 
              machines.

02.01.04 BJH  Release 9.23

              tifftopnm: fix bug from 9.22: always crashes.

              xpmtoppm: fix bug from 9.21: XPM 3 files not recognized because
              /* XPM */ comment read twice.
                         
              xwdtopnm: Use bitmap_pad instead of bitmap_unit on X11 pixmap
              files with depth > 1.  Thanks "Ben Kelley" <ben_kelley@ubsw.com>.

              pnmtopalm: fix bug: crashes with -colormap and non-color input.

              ppmforge: fix bug: array subscripts out of bounds.  Thanks
              Rob Menke <robmenke@mac.com>.

              giftopnm: fix bug with extraneous "bogus character 0x00" message

              tifftopnm: add -respectfillorder option.  Ignore FILLORDER
              by default.

              make install-dev: install shared library stub files (symlinks).
              
              ppmtogif: Fix bug: color resolution in wrong bits in logical
              screen descriptor.  Thanks Elmue <elmue@gmx.de>.

              Add -lz to Tiff programs; libtiff requires it now.

              Add ppmcolors.

              Add pnmremap.

              Add pnmcolormap.

              pnmtops: Include setpagedevice directive in Postscript output.
              Thanks A Braunsdorf <ab@eas.purdue.edu>.

              pnmtops: turn-to-fit logic works properly where paper is 
              wider than tall.  Thanks A Braunsdorf <ab@eas.purdue.edu>.

              giftopnm: cleanup
         
01.12.10 BJH  Release 9.22

              Fix bug: pnm_luminosity_factor must be "extern" in pam.h

              pbmtonokia: can create picture messages.  -txt, -net options.

              tifftopnm: Accept invalid FILLORDER value - assume msb-to-lsb.

01.12.01 BJH  Release 9.21

              Add pamdeinterlace.

              Add pnmquant.

              pnmtops: Accept maxval > 255 input.
         
              Rename pnminterp to the more informative pnmstretch.

              pnmstretch: convert from pnm to pam - pamstretch.

              pamstretch: add -xscale, -yscale options

              pbmtolj: Add -copies option

              ppmtogif: Add secret -h option to make Latex2html configure
              program work.

              ppmquant: output maxval controlled by colormap maxval,
              not input maxval.

              pbmclean: Add -black and -white options.  Thanks
              Michael Sternberg <sternberg@phys.uni-paderborn.de>.

              xpmtoppm: Don't require input to start with a comment.
              Thanks MINAMI <minami@chem.s.u-tokyo.ac.jp>.

              xpmtoppm: Fix bug introduced with 9.20 with XPM 1 files.

              pnmcut, pamcut: fix bug with cut that begins past right edge
              of image.
         
              pamcut: Same fix as in pnmcut in 9.9.  Also fix black fill.  

              pnmtotiff:  Process one row at a time instead of reading
              entire image into memory.  Add -color, -truecolor.

01.10.05 BJH  Release 9.20

              ppmtogif: Add -nolzw option.

              ppmntsc: do multiple images

              pnmtojpeg: fix bug from 9.19 causing crash on most images.

              ilbmtoppm: Correct cmyk -> rgb transformation.

              ppmtompeg: Fix bug due to missing "breaks".  Thanks
              Wolfgang Mueller <muellerw@pc7143.unige.ch>    

              eyuvtoppm: fix memory leak, speed up by allocating working
              storage only once.

              libopt.c: replace strtok_r() with strtok() so it compiles on
              Mac OS X.
         
01.09.18 BJH  Release 9.19

              pnmtotiff: fix bug from 9.17 causing compile to fail
              with old Tiff library

              pnmtojpeg: Add -exif option.

              ppmtojpeg: Change to pnmtojpeg; PBM/PGM input causes grayscale
              output.

              pnmtotiff: Handle LSB2MSB FILLORDER.

              pnmtotiff: Fix -msb2lsb, -lsb2msb.  Used to do nothing but 
              set FILLORDER tag value.

              Make maxval of a PBM image read as a PGM image 255 instead of 1.
              
              libpbm: eliminate external data symbol pm_show_version
              so it works with Windows.

              Use subplatform-specific prefixes on Windows shared libraries.
              Thanks Charles Wilson <cwilson@ece.gatech.edu>.

01.09.04 BJH  Release 9.18

              Fix bug from 9.17: -lm now needed in jpegtopnm link.

              jpegtopnm: Add -dumpexif and -exif options.

              pnmtotiff: Fix bug: 16 bit samples byte-swapped on little-
              endian machines.

              Remove C++ comments from exif.c

01.09.03 BJH  Release 9.17

              Add ppmtoneo, neotoppm.  Thanks Teemu Hukkanen <tjhukkan@iki.fi>.

              pnmtotiff:  Add -flate, -adobeflate.  Thanks Peter Creath.

              pnmindex: Fix bug with -size option.  Thanks 
              André Majorel <amajorel@teaser.fr>

              pnmflip: Fix memory leak, plus make special case for PBM
              images that uses 12 times less memory.  Thanks
              Stefan Roellin <stefan.roellin@switzerland.org>.
          
              tifftopnm: Fix incorrect interpretation of FILLORDER tag
              causing incorrect output with 16 bit samples and
              FILLORDER not msb2lsb.  Thanks Don Reid
              <donr@cvs.agilent.com>.

              tifftopnm: Fix PHOTOMETRIC_MIN_IS_WHITE case.
              Thanks Don Reid <donr@cvs.agilent.com>.

              giftopnm: Fix bug with malformed GIFs that end prematurely.

              pbmtonokia: Convert C++ style comments to C style so Sun C
              compiler can handle them.  Thanks Jon Parise <jon@csh.rit.edu>.

              Install development package (header files, static libraries)
              by default.  Add ability to build both static and shared
              libraries.

              Add merge/nonmerge to Makefile.config/configure, in place
              of special make targets.

              Fix Mac OSX build for gcc 3.0.  Thanks m-sekino@mb.kcom.ne.jp 
              (Masanori Sekino)

              Fix make install.hdr.  Thanks m-sekino@mb.kcom.ne.jp 
              (Masanori Sekino)

01.07.24 BJH  Release 9.16

              Builds on Darwin/Mac OS.  Thanks m-sekino@mb.kcom.ne.jp 
              (Masanori Sekino)

              Add pbmtopsg3.  (Postscript G3 fax) Thanks Kristof Koehler 
              <kristof@fachschaft.physik.uni-karlsruhe.de>

              Add pbmtonokia.  Thanks Tim.Ruehsen@OpenMediaSystem.de.

              Add ppmrainbow.  Thanks Arjen Bax <arjen.bax@cmg.nl>.

              Add pamoil, as replacement for pgmoil.  Based on ppmoil by
              Chris <cesheppa@midnightsun.uwaterloo.ca>.

              ppmtogif:  Add -alpha option.

              ppmtojpeg: fix bug: option takes as input filename.

              xpmtoppm: fix bug: Bogus EOF failure.  Thanks 
              "Dr. Larry Pyeatt" <pyeatt@redwood.cs.ttu.edu>.
              
              pnmtopng/pngtopnm: update to Release 2.37.5 of the pnmtopng
              package.  Make -transparent option work like ppmtogif --
              you can add an "=" before the color to specify "exact".
              fix bug with background color and maxval = 65535.  Fix a 
              raft of bugs in pnmtopng from Netpbm 9.15.

              Remove Tiff library from the package.

              Proper naming of AIX and HP-UX shared libraries.

              giftopnm: Add color index to transparency message.

              Add some -R link options in make files.

              ppm3d: fix bug: ignores offset argument.

              tifftopnm: fix bug: shifted right one pixel.
         
              pnmshear: remove sscanf so it works better with Cygwin,
              convert to shhopt, clean up.

              pgmcrater: Remove black vertical line at right
              edge. Make craters wrap around the image (enables tiling
              of image).  Thanks Arjen Bax.
              
              pgmtopbm: remove sscanf so it works better with Cygwin.
              Thanks Arjen Bax.

              Treat all white space, including DOS carriage returns,    
              in color name db file as white space;  Thanks Arjen Bax.

01.06.24 BJH  Release 9.15

              Change format specs to state that sample values are
              nonlinear instead of linear.

              pnmtopalm/palmtopnm: Handle PalmOS 4.0 16 bit direct
              color format.  Thanks  Bill Janssen  <janssen@parc.xerox.com>.

              pnmgamma: Add CIE Rec 709 gamma correction option.

              pnmgamma: Add -ungamma option
              
              ppmcie: Add -rec709 color system option as default so
              that it produces true PPM output (per the new spec) and
              carefully document what the program generates.
              
              ppmcie (work done by Andrew Hamilton
              <Andrew.Hamilton@colorado.edu> in May 1999 but not
              distributed):

                 1. Corrected the XYZ -> RGB transformation;
                 2. Eliminated the -interpwp option, a fudge which had been
                    necessitated by the incorrect XYZ -> RGB transformation;
                 3. Added a Gamma correction, missing in the original;
                 4. Added the option to plot u' v' chromaticity instead of x y;
                 5. Added options to suppress labels and/or axes.

              pnmscale, pnmscalefixed:  Fix bug with unwanted -verbose
              behavior.

              pnmscale, pnmscalefixed: Add -reduce option.  Thanks
              Christopher W. Boyd <cboyd@pobox.com>

              ppmtoeyuv: Speed up by not freeing/reallocating storage for
              each image.  Thanks "Steven M. Schultz" <sms@moe.2bsd.com>

              ppmtoeyuv: Fix memory leak.

              Eliminate pgm_pbmmaxval, ppm_pbmmaxval, and pnm_pbmmaxval
              from libpgm, libppm, and libpnm.  'maxval' argument to 
              pgm_readpgmrow() and ppm_readppmrow() already accomplishes
              this.  pnm_readpnmrow() changed to do same.  external data
              symbols like this do not work with Mingw.
         
              various changes to accomodate Mingw (native Windows)
              and DLLs with Cygwin (Windows).

              eyuvtoppm: rewrite.  Uses Netpbm libraries now.

              pstopnm: Remove gratuitous 5% margin.  Add -equalpixels,
              -imageheight, and -imagewidth options.

              pnmtopng: Read only one row at a time, not the whole image,
              into memory.  Do multiple passes through the (hopefully
              fully cached) file.  This saves memory because pnmtopng's
              internal format may use 96 times as much space per pixel 
              as the file.

              libpbm: Add pm_openr_seekable(), pm_seek(), pm_tell().

              libppm: Add ppm_computecolorhash2(), ppm_computecolorhist2().

              configure: fix bug with Solaris/Sun compiler.

              Split pbmplus.h into pm_config.h and pbm/pm.h to prepare
              for automatic generation of pm_config.h.  Move pm_*()
              subroutines from libpbm1.c to new libpm.c for clarity.

              Remove malloc.h from 411toppm.  malloc is included by
              pm_config.h, in platform-dependent way.

01.05.13 BJH  Release 9.14

              fix bug in shhopt causing wild branches.

              winicontoppm: Make alpha mask ("and") output PBM instead
              of PPM; correct sense so white is opaque, black transparent.

              ppmtoxpm: Add --alphamask option.  Remove 256 color limit.
         
              xpmtoppm: Add --alphaout option
         
              ppmtogif: Add "=" to -transparent option to specify exact
              color.

              configure: change /bin/perl to /usr/bin/perl.  Red Hat Linux
              doesn't have /bin/perl.

              pnm/Makefile: correct bugs in link.  Thanks J Scott Berg 
              <jsberg@bnl.gov>

              Make it build on Unixware.

              Make it build on OpenBSD.

              document color indexing and histogram functions.

01.04.22 BJH  Release 9.13

              ppmtogif: fix divide by zero

              move much of README file into a new master man page, netpbm.1.

              pnmcomp: add -align and -valign options.
              
              Add thinkjettopbm.  Thanks Eric Norum <eric.norum@usask.ca>.

              Builds with Sun compiler.

01.03.25 BJH  Release 9.12

              Add 411toppm.  Thanks Steve Allen <sla@alumni.caltech.edu>.

              pnmcrop:  add -sides option (does what was default
              behavior until July 2000)

              ppmtoeyuv: Use netpbm libraries, deal with multi-image
              input.

              Add color row color map and Floyd-Steinberg functions from
              ilbm package to libppm.

              ilbmtoppm, ppmtoilbm: replace with Ingo Wilken's version from
              April 13, 1995.

              jpegtopnm: fix crash with B&W JPEG input.

              pnmcomp: fix bug: invalid output image when overlay image
              is "higher" format than underlying image.

              ppmchange: fix bug: wouldn't work with maxval != 255.

              pnmtojbig: fix bug: it always says invalid maxval. 
              Thanks Bill Davidsen.

              pbmtext: fix bug: output is sometimes "not implemented"
              because of uninitialized variable.

              pnmpsnr: rewritten so as not to use Fiasco library.
              Correctly handles maxval != 255.  Works with PAM.

              Add IRIX to the configure program.  Thanks Neil Franklin 
              <franklin@arch.ethz.ch>.

              make files: add ZLIB_DIR and ZHDR_DIR variables to
              Makefile.config.  Thanks Bill Janssen.  
              <janssen@parc.xerox.com>

              pcdindex: convert from csh to sh.  Thanks Steve McIntyre.

01.02.20 BJH  Release 9.11

              pnmtopalm: Handle 16 bit direct color format.

              pnmtotiff: Add -xresolution and -yresolution options.
              Thanks Tim Ruehsen.

              Add error message to GNUMakefile for when GNU Make is too old.

              pnmpsnr: fix bug: PGM files always compared equal.

              libpbm: improve --version to reflect that libraries are
              usually dynamically linked now, so it's the version of
              libpbm, not the program itself.

              pbmtext: add -space option.

              asciitopgm: fix crash due to memcpy that should be memset.
              Thanks Philipp Knirsch <pknirsch@redhat.com>.

              pktopbm: fix numerous bugs.  Copied from Red Hat.  By
              jcn <janneke@gnu.org> 1998.09.22.

              pstopnm.csh: fix bomb when xres=yres.  This program is
              obsolete (use pstopnm.c instead), but the patch was free,
              so why not?  Copied from Red Hat.  By Nalin Dahyabhai
              <nalin@redhat.com> 2000.02.14.

              pnmtotiff: Make photometric for G3/G4 fax MINISWHITE 
              instead of MINISBLACK.  Add -minisblack option.  Thanks
              Eric Smith <eric@brouhaha.com>.

              libppm/ppm_parsecolor: fix rounding error for very small
              maxvals (e.g. PBM files -- maxval = 1).
         
              pnmtopalm, palmtopnm: minor updates
              
              bmptoppm: handle BMPs that use ColorsUsed instead of
              bits per pixel to determine color map size.

              bmptoppm: add -verbose option.

              ppmquant: fix bug with maxval > 255 causing arithmetic
              overflow and arbitrary colors in output.

01.01.10 BJH  Release 9.10

              giftopnm: add -alphaout.

              ppmchange: Add -remainder option.

              Add pnmtopalm, palmtopnm.  Thanks Bill Janssen 
              <bill@janssen.org>.

              Add pnmmontage.  Thanks Ben Olmstead <bem@mad.scientist.com>.

              ppmtogif: Add -comment option.

              ppmtogif: fix bug: created GIF89 when it should have created
              GIF87.

              giftopnm: fix bug in displaying of comment extensions.

              jpegtopnm: Add -comments option.

              ppmtojpeg: Add -comment option.

              ppmtompeg: fix crash.  Thanks  Roger Southwick 
              <rogers@mediaforte.com>

              More work on separating source and build directories.
              GNU Make 3.77 or better now required.

00.11.20 BJH  Release 9.9

              add ppmtolj: color HP Laserjet graphics (PCL).  Thanks
              Jonathan.Melvin@heywood.co.uk.

              ppmfade: add -mix option.

              ppmhist: add -noheader option.

              rawtopgm: Add --bpp, --maxval, and --littleendian options.

              pnmindex: Add -noquant, -title options.

              pnmtotiff: create 16 bits-per-sample Tiff files when 
              maxval > 255 instead of crash.

              tifftopnm: handle 16 bits-per-sample Tiff files.

              pnmscale: Use floating point arithmetic instead of 12 bit
              fixed point to reduce distortion at right and bottom edge of
              large images with weird scaling factors.  Add pnmscalefixed,
              which is the old fixed point pnmscale, which goes faster.  But
              also fix bug in the fixed point version so the distortion 
              isn't as bad.  Add -verbose option.

              pnmcut: fix bug: right edge wrong or subscript out of bounds.
              Thanks MURAKAMI Masahiko <muramasa@np.catv.ne.jp>,
              Sven Over <sven.over@web.de>, Frederic Vivien 
              <vivien@lcs.mit.edu>, Pete Weisz <pete@pw34.resnet.cornell.edu>.

              xpmtoppm: fix reading of 4-character color codes; handles
              "NONE" color (transparent background); add -v.  Thanks
              Martin Vermeer <martin.vermeer@hut.fi>.

              ppm/Makefile: fix bug: ppmtompeg, hpcdtoppm not installed.
              Thanks Mike Castle <dalgoda@ix.netcom.com>.

              ppmpspread: fix bug: invalid memory reference crash.  Thanks
              digger <jfk666@poczta.onet.pl>, john joseph iii casey 
              <jjcasey@midway.uchicago.edu>.

              ppmchange: fix bug: every other argument pair ignored.
              Thanks Sven Over <sven.over@web.de>.

              Fix error message in pXmmerge (no pm_error()).  Thanks
              Pete Weisz <pete@pw34.resnet.cornell.edu>, 
              <g031w503@soft.iwate-pu.ac.jp>

              libppm: add /usr/X11R6/lib/X11/rgb.txt as default rgb.txt file.
              Thanks ceder@lysator.liu.se (Per Cederqvist).

              Replace hpcdtoppm version 0.3 (1992) with 0.6 (1994).  Add
              pcdindex.

              Build fixes for Tru64.  Thanks Phil Benchoff <benchoff@vt.edu>.

              Makefile.config: option to not strip binaries on install.

00.09.01 BJH  Release 9.8

              jpegtopnm: Add -adobe, -notadobe options.

              ppmchange:  Add -closeness.

              giftopnm: report transparency information.

              jpegtopnm: Accept single-hyphen options.

              Make it build on DJGPP.

00.08.12 BJH  Release 9.7

              Add PAM format, Pamchannel, Pamtopnm.

              sgitopnm: add -channel option to access more than 3 channels.
              Thanks Smarasderagd.
         
              pnmcut: Add -pad option

              ppmtobmp: change default from -os2 to -windows.

              pnmcut: fix bug: height argument misinterpreted.

              ppmquantall: fix bug: don't crop white borders off images

              yuvtoppm: fix bugs: don't depend on bigendian representation
              of integers.  reject odd-width images.

              ppmtoyuv: fix bug: reject odd-width images.

              anytopnm: fix bug: required nonstandard shell feature.

              giftopnm: fix bug: when image consists of two gray colors,
              program converted them to black or white and created PBM
              file.  Thanks Smarasderagd.  Also fix memory leak.

              Make changes since 9.2 build on Cygwin.

00.07.12 BJH  Release 9.6

              Add pnmtofiasco, fiascotopnm, psnpsnr.  Thanks to Ullrich
              Hafner.

              Make Pnmcrop use a temporary file instead of huge amounts
              of memory.

              bmptoppm: fix crash when OS/2 BMP file has > 8 bits per pixel.

              anytopnm: fix bug (from 9.0) wherein program almost
              always crashed.  Add gzip, bzip, bzip2 capability.
              Thanks Charles Howes.

              parallel.c: Work around SunOS libc problem.

              Define some newer libtiff macros so it compiles against
              older libtiff.

00.07.01 BJH  Release 9.5

              Extend formats to allow multiple images per file.  Add
              -allimages option to pnmfile.  Add pnmsplit.  Extend
              pnmtops.

              Add pbmtowbmp, wbmptopbm.  Thanks Terje Sannum.

              ppmtobmp: Add 24 bit (truecolor) capability.  Remove Release 8.3
              colormap size update.

              pnmcut: easier, more expressive syntax for specifying what
              to cut.

              pnminterp: handle maxval != 255, convert to use Netpbm
              libraries.

              Translate pstopnm from Csh to C, eliminate dependency
              on the 'bc' program.

              Fix bug in tiff library build which caused null soname.

              Add optParseopt2() to shhopt.a so you can use long options
              with one hyphen instead of two.

              giftopnm: fix bug with variable used before set.  Fix bug
              (coding error -- 0=>i).  Unknown impact.

              bmptoppm: fix bug with 24 bit (truecolor) Windows BMPs.

              xwdtopnm: fix one more bug with bits_per_item <> bits_per_pixel.

              Fix ppmtompeg build bug with static libraries.

              Make build clean with gcc -ansi (albeit with some files
              that need extensions declaring the _BSD_SOURCE etc.).

00.06.04 BJH  Release 9.4

              Rebase pnmtopng, pngtopnm on Pnmtopng 2.37.4.

              pbmtolj: fix bug where blank lines get discarded.  Thanks
              Charles Howes.

              ppmtompeg: fix bug with "PNM" format files with maxval != 255.
              Get rid of built-in PPM file parsing.

              Fix 'make install' where mkinstalldirs is not found.

              Fix bug where rle_global.c would not compile with GNU C 
              Library 2.

00.06.01 BJH  Release 9.3

              pnmfile: check for file size error.

              ppmhist: handle larger maxvals, image sizes

              xwdtopnm: Use color map with DirectColor to fix wrong color
              bug on some DirectColor xwds.

              xwdtopnm: Correct bug with 24/32 DirectColor LSBfirst xwds.

              Add pXmcheck() library function.

              Add leaftoppm and ppmtoleaf.  Thanks Bill O'Donnell.

              Add winicontoppm and ppmtowinicon.  Thanks Lee Benfield 
              <lee@benf.org>.

              Add pgmslice.  Thanks to Jos Dingjan.
              
              Include subset of RLE library in the package.

              stamp-date doesn't rely on whoami.

              Make file fixes to accomodate more install programs.
         
              Replace tmpnam() with mkstemp().

              Add pXm_init() into all programs that didn't have it.

00.05.15 BJH  Release 9.2

              Shared libraries now build properly for Solaris, SunOS, NetBSD.

              Add jbigtopnm, pnmtojbig.  Thanks to Markus Kuhn.

              Add pnminterp, pnminterp-gen by Russell Marks.

              Add pbm_writepbmrow_packed() and pbm_readpbmrow_packed() to
              libpbm.

              ppmdither: fix bug with input maxval != 255.  Make output
              maxval the LCM of the requested numbers of primary levels.

              xwdtopnm: works with files where there aren't an integeral
              number of pixels per storage unit (e.g. 24 bits per pixel)
              
              Add some missing pXm_init()

              Make pXmmerge source code automatically generated.

00.05.06 BJH  Release 9.1

              Add pbmtoppa (renamed from pbm2ppa, renamed from print-pbm).
              Thanks Tim Norman.

              Add pbmpage.  Thanks Tim Norman.

              Add pbmtomda, mdatopbm.  Thanks John Elliott.

              Replace gemtopbm with gemtopnm.  Thanks to John Elliott.

              Add ppmntsc: change colors to those acceptable for ntsc or pal.

              Rename old ppmntsc to ppmtv.

              pbmtolj: Add compression (-delta, -packbits, -compress) by
              Dave Platt

              Look for both /usr/lib/X11/rgb.txt and /usr/openwin/lib/rgb.txt
              by default.  Improved error messages if file not found.

              pbmtext: renders character codes 0x80-0xff and 0x00-0x1f as
              whatever the font says, rather than always blank.  Thanks
              Helge Oldach.

              Fix bug in parsing of rgb.txt file in ppm_colorname().

              Add optional static library build to make files.

              Fix a bunch of build bugs for Solaris, SunOS.  Still not all 
              the way there.  Thanks Richard Curnow, Philippe Brieu, 
              Benjamin Kuit.

              Make it build on Cygwin.  Thanks Pierre Humblet.

              Use rm -f;ls instead of ls -sf in make files; some systems don't
              have ln -f.
              
00.04.15 BJH  Release 9.0

              Add the 16-bit-per-sample format for maxval > 255.
              Change size of samples in the library interface from 8
              bits to 32 bits.  Library write routines now create the
              new 16 bit format instead of plain format when you
              request a maxval > 255 and not 'forceplain'.  Make all
              programs read the new format, and all programs that
              convert to PNM from a >8 bit input generate it instead
              of failing or normalizing.  Make pnmdepth generate it.

              pnm_readpnminit(), etc. fails if you request a maxval >
              65535 and not 'forceplain'.  It used to generate plain
              format in that case, but you couldn't actually specify    
              a sample value > 255.

              Add pnmtorle and rletopnm from the Army High Performance 
              Computing Research Center.

              add ppmcolormask - creates a mask of areas of a certain 
              color in an image.

              anytopnm: fix infinite loop
              
              pbmtext:  Ignore non-8-bit characters in bdf files instead
              of crashing.

              ppmdither: fix crash with large dithering matrix dimensions.

              Rename ppmtompeg/headers/search.h to motion_search.h to avoid
              possible confusion with the OSF system file search.h
         
              Fix erroneous shhopt.h dependency in build.
              
00.04.03 BJH  Release 8.4

              Add ppmtompeg, adapted from Berkeley's mpeg_encode.
         
              Add eyuvtoppm and ppmtoeyuv, and vidtoppm, from Berkeley
              mpeg tools.

              Add ppmfade, adapted from Wesley C. Barris' pbmfade. 

              Add ability to extract the alpha channel to tifftopnm,
              tgatoppm, and ximtoppm.  (It's already in pngtoppm,
              and still missing from ilbmtoppm).

              pnmtotiff: Change default compression to none, due to
              removal of LZW capability from Tiff library.

              Make merge build use symbolic links instead of hard links.

              Include dependent libraries in the link of the
              libraries.  This is necessary on some systems, and a
              good idea on others.

              Use strerror() instead of sys_errlist[] everywhere.  If
              some systems do not have the former, we need to do some
              work, because strerror() was already used in some
              places.  We do have a report of a BeOS system with no
              sys_errlist[].

00.03.24 BJH  Release 8.3

              Add ppmshadow, by John Walker <http://www.fourmilab.ch/>,
              dated 1997.08.15.

              Add ppmlabel, by John Walker, dated June 1995.

              Add ppmcie by John Walker, dated September 1994.

              Add character drawing routines by John Walker to libppm.

              Add sbigtopgm by John Walker, dated January 1998.

              Handle BMP file color map size parameter in ppmtobmp, bmptoppm.
              Thanks Marc Moorcroft.

              Rewrite make files, fix lots of make install bugs.

00.03.20 BJH  Release 8.2

              Add ppmtojpeg and jpegtopnm.

              Rename pnmnoraw to pnmtoplainpnm.

              Add CMYK capability to tifftopnm.
 
              Major make file rewrite, especially making install work.
              Pnmmerge is no longer the default.  Shared libraries are.
 
              Add pnmtotiffcmyk.  Written by Andrew Cooke  (Jara Software)
              jara@andrewcooke.free-online.co.uk

00.03.02 BJH  Release 8.1

00.03.02 BJH  Add pnmtopng and pngtopnm.  I got these from 
              ftp://ftp.au.netbsd.org/pub/NetBSD/packages/distfiles
              today.  Release 2.37.3.  I added an "unsigned" and
              changed the type of 'scaleval' to quiet compiler warnings.

00.03.01 BJH  Fix xwdtopnm interpretation of 16 bit TrueColor files.
              Thanks to Martin Kroeker, mk@daveg.com.

99.09.23 BJH  Update xbmtopbm to recognize newer xbm format.




CHANGES TO NETPBM THROUGH MARCH 1994
------------------------------------

Functional changes to Netpbm since 13 October 1993.
Minor bug fixes and compatibility fixes are not documented in this file.

PBM

libpbm1.c	strstr() added to libpbm1.c.
libpbm5.c	BDF font support added.
pbmtext		BDF font support added.
pbmto4425	New filter.
pbmtoln03	Command line parsing changed to Pbmplus standard.


PGM

pgmnoise	New filter.


PPM

picttoppm	Updated
ppm3d		New facility.
ppmchange	New filter.
ppmdim		New filter.
ppmflash	New filter.
ppmmix		New filter.
ppmntsc		New filter.
ppmqvga		Option parsing changed to Pbmplus standard.
ppmshift	New filter.
ppmspread	New filter.
ppmtoxpm	Prototypes added.
xpmtoppm	Prototypes added.
ilbmtoppm	Updated.
ppmtoilbm	Updated.


PNM

pnmtoddif	New filter.
pnmhistmap	New facility.
pnmtops		New option (-nocenter) added.


Functional changes to Netpbm since 7 December 1993.
Minor bug fixes and compatibility fixes are not documented in this file.

PGM

asciitopgm	New filter.
fitstopgm	Replaced by fitstopnm.
pgmtofits	Replaced by pnmtofits.
pgmtopbm	Upgraded.
pgmkernel	New filter.

PPM

ppmchange	Upgraded.
xvminitoppm	New filter.

PNM

pnmalias	New filter.
pnmtofits	Replacement for pgmtofits.
fitstopnm	Replacement for fitstopgm.
pnmtosgi	New filter.
sgitopnm	New filter.
pstopnm		New filter.



CHANGES BETWEEN PBMPLUS AND THE ORIGINAL NETPBM
-----------------------------------------------

The following is new in Netpbm (compared to Pbmplus):

PBM

pbmtext		BDF font support added.

pbmto4425	Display on an AT&T 4425 Ascii terminal.

pbmtoascii	A new improved version.

pbmtoln03	Convert to DEC LN03+.

pbmtolps	Fast PostScript creator.

pbmtopk		Conversion to/from a packed (PK) format font.
pktopbm

pbmclean	Flip isolated pixels.

pbmpscale	Enlarge pbm image with edge smoothing.


PGM

asciitopgm	Convert an ascii image into pgm.

pbmtopgm	Convert pbm to pgm by averaging areas.

rawtopgm	Handles input files without specification of the file size,
		assuming the input image is quadratic. It also supports a
		-tb (top bottom flip) option.

bioradtopgm	Conversion utility for files created by Biorad confocal
		microscopes.

spottopgm	Convert SPOT satellite images to pgm.

pgmkernel	Generate a convolution kernel.

pgmnoise	Create a pgm file with random pixels.


PPM

bmptoppm	Conversion to/from windows bitmap format.
ppmtobmp

ppmtogif	Updated version.
giftoppm	Removed (see giftopnm).

ppmtoilbm	Updated version.
ilbmtoppm

picttoppm	Updated version.
ppmtopict

ppmtoxpm	Updated version, which supports xpm version 3.
xpmtoppm

ppmtomap	Extract all colors from a ppm file.

ppmtomitsu	Convert to Mitsubishi S340-10 printer format.

xvminitoppm	Convert an XV thumbnail picture to ppm.

ppmtoyuvsplit	Conversion to/from YUV triplets. (MPEG / JPEG).
yuvsplittoppm

ppm3d		Create a red/blue stereo image.

ppmbrighten	Change image saturation and value on an HSV map.

ppmchange	Change all pixels of one color to another in a portable pixmap

ppmdim		Dim a ppm file down to total blackness.

ppmdist		Simplistic grayscale assignment for machine generated
		color images.

ppmflash	Brighten a picture up to complete white-out

ppmmix		Blend together two portable pixmaps.

ppmnorm		Normalize the contrast in a portable pixmap.

ppmntsc		Make a portable pixmap look like taken from an American TV.

ppmqvga		Eight plane quantization.

ppmshift	Shift lines of a portable pixmap left or right by a random amount.

ppmspread	Displace a portable pixmap's pixels by a random amount.

ppmtopjxl	Convert a ppm file into an HP PaintJet XL PCL file.


PNM

pnmtops		New option (-nocenter) added.

pnmtofits	Replacement for pgmtofits/fitstopgm
fitstopnm

pnmtosgi	Conversion to/from sgi image format.
sgitopnm

pnmtosir	Conversion to/from Solitaire image recorder format.
sirtopnm

giftopnm	Replaces giftoppm. Examines the input image and produces
		a pbm, pgm, or ppm output.

pstopnm		Convert PostScript to pnm. Requires Ghostscript.

zeisstopnm	Conversion utility for files created by Zeiss confocal
		microscopes (the old standard).

pnmalias	Anti aliasing filter.

pnmcomp		Composite two portable anymaps together.

pnmcrop		New options added.

pnmpad		Add borders to anymap.


LIBTIFF

A new release of libtiff is included. Please read its supporting
documentation.


CHANGE LOG FROM PBMPLUS
-----------------------

Changes since the 30oct91 patch version:

    Fixed uninitialized variable in ppmtotga.  (John Walker)
    Added pgmcrater, ppmforge, ppmtoacad, sldtoppm.  (John Walker)
    Slight change to the p?mmerge.c front-ends to allow for main programs
      that return instead of exitting.
    Minor clarifications to the pnmconvol man page.
    Fixed xwdtopnm to read some 16-bit True/Direct files. (David Elliott)
    Fixed uninitialized variables in pnmtotiff.  (Larry Rosenstein, Bayles Holt)
    Added a couple of checks for \r while reading whitespace. (Larry Rosenstein)
    Removed all the BROKENPUTC stuff.  Now we ignore all return values from
      putc(), and check ferror() in pm_close().  Added pm_close() calls to
      many of the filters.
    Fixed pnmdepth to check for too-large newmaxvals.  Improved rounding
      in pnmdepth and PPM_DEPTH macro.  (Tom Lane)
    Minor fix to ppmtouil.  (Mohsen Banan)
    Added new Imakefiles.  (Rainer Klute)

Changes since the 05oct91 X11R5 contrib tape version:

    Fixed minor SysV config error in pbmplus.h.  (Tom Lane)
    Fixed tifftopnm so that BITSPERSAMPLE and SAMPLESPERPIXEL default
      correctly.  Fixed possible bug in tgatoppm line-interleaving code.
      (Arthur David Olson)
    Fixed tifftopnm so that colormapped files are read correctly.
      (PauL Drews, Mike Wade)
    Corrected use of DefaultRGBDatabase / RGB_DB for imake sites.
      (Randal L. Schwartz)
    Bugfix to pnmtops color PostScript in -rle mode.  (Angus Duggan)
    Added auto-turning to pnmtops.
    Added run-length encoding to ppmtotga.
    Space optimization to pgmoil.

Changes since the 27sep91 comp.sources.misc distribution:

    Fixed spelling error in giftoppm.  Fixed ppmrelief to not shrink the
      image by 2 rows and columns.  Minor fix to pgmramp.  Fixed off-by-one
      error in pnmtoxwd.  Man page fix for pnmgamma.  (Arthur David Olson)
    Converted ANSI trigraphs in ppmtosixel into good old octal.  (Jeff Glover)
    Fix to 24/32 bit case in rasttopnm.  (Behr de Ruiter)
    Float/double portability fix to libppm4.  (Bruce Holmer, Ronald Khoo)
    Fixed typo in compat.ksh.  (Larry Virden)
    Fixed int/short incompatibility in tifftopnm.  (Salik Rafiq)

Changes during the extended beta test period, starting on 15jan91:

    Lots of fixes from: Anthony A. Datri, Arthur David Olson, David Brooks,
      David Elliott, Doug Claar, Duncan Sinclair, Francois Pinard, Gerard
      Leurs, Jim Hanko, Ken Laprade, Klaus U. Schallhorn, Markus Bolz, Mike
      Hench, Philip Gladstone, R C Smith, Selden E. Ball, Jr., Stephen Uitti,
      Steve Allen, Tom Lane, update.kpj-jaakkola@athena.dsv.su.se,
      Charles Karney, Unmesh Agarwala, Ed Pendzik, Juha Sarlin, Tom Tulinsky,
      Phillip Smith, Lai-King Mau, David Koblas, Mark Donovan.
    Added a global -version flag.
    Added bunches of statics and prototypes.  Now compiles with zero
      warnings under gcc -ansi -pedantic.
    Changed #ifdef __STDC__ to #if __STDC__, since some non-compliant
      compilers define it as 0.
    Changed pm_message and pm_error to be varargs routines.  Added a
      portable version of vfprintf for those systems which don't have it.
    Removed the option of not compiling the pgm and ppm parts.  Very few
      people used it, and it added amazing complexity to the pnm programs,
      turning them into maintenance nightmares.
    Merged pbmpaste into pnmpaste.
    Merged pgmtops and ppmtops into pnmtops.
    Added auto-scaling and dpi / page size flags to pnmtops.
    Changed the interpretation of bits in pbmlife to conform with other
      tools.
    Changed xwdtopnm to ignore the pixel number in the xwd color structure.
    Added a -pseudodepth flag to pnmtoxwd.
    Updated tifftopnm for libtiff 2.4.
    Added many option flags to pnmtotiff.  (J.T. Conklin)
    Added support for X11R5's new color specifiers rgb: and rgbi:.
    Added pgmtexture.  (James Darrell McCauley)
    Added ppmtopj, pjtoppm, and ppmdither.  (Christos Zoulas)
    Added ppmtotga.  (Mark Shand)
    Added ppmtosixel.  (Rick Vinci)
    Added pbmtoatk and atktopbm.  (Bill Janssen)
    Added ppmtoyuv and yuvtoppm.  (Marc Boucher)
    Fixes to picttoppm.  (George Phillips)
    Added 24-bit support to ilbmtoppm.  (Mark Thompson)

Changes since the X.V11R4 / comp.sources.misc distribution of 22nov89:

    Added pgmramp, pgmedge, pgmtoppm, rgb3toppm, ppmtoxpm, pnmgamma,
      ximtoppm, pgmtofs, picttoppm, ppmtopict, ppmquantall, anytopnm,
      pi1toppm, ppmtopi1, sputoppm, spctoppm, pbmto10x, ppmtoicr, ppmmake,
      xpmtoppm, ppmtopuzz, ppmtouil, ybmtopbm, pbmtoybm, lispmtopgm,
      pgmtolispm, pbmtogem, pi3topbm, pbmtopi3, pbmtoepson, pbmtoplot,
      pbmtozinc, pbmtext, pnmnoraw, pnmmargin, pnmfile, pnmindex,
      ppmtorgb3, gouldtoppm, pgmbentley, pgmoil, ppmrelief, pnmtotiff,
      ppmtopcx.
    Merged some filters:
      rasttopbm and rasttoppm into rasttopnm;
      pbmtorast and ppmtorast into pnmtorast;
      xwdtopbm and xwdtoppm into xwdtopnm;
      pbmtoxwd and ppmtoxwd into pnmtoxwd.
    Promoted some filters:
      pcxtopbm to pcxtoppm;
      ppmarith to pnmarith;
      ppmconvol to pnmconvol;
      ppmcscale to pnmdepth;
      ppmrotate to pnmrotate;
      ppmscale to pnmscale;
      ppmshear to pnmshear;
      ppmsmooth to pnmsmooth;
      tifftopgm to tifftopnm - new version based on Sam Leffler's libtiff.
    Bugfixes to pbmtoicon, ppmtops.
    The Makefiles now have a "merge" option.
    All flags are now case-insensitive.
    Added $(MAKE) stuff to Makefile.
    Changed pnmsmooth from a csh script to a sh script.
    Made macro use in pbmtox10bm and pbmtoxbm more portable.
    Moved compataliases to compat.csh, and added compat.ksh.
    Made ppmtoilbm less Amiga-specific.
    Added -headerskip and -rowskip flags to rawtopgm.
    Enhanced rasttopnm to interpret 8-bit rasters with no colormap as grayscale.
    Changed sscanf %g to %f - some systems can't handle %g on input.
    Added -expand flag to pbmmask.
    Speedup to pnmflip - don't buffer if possible.
    Added color-name-to-value routine to ppm - uses X11's rgb.txt if present.
    Updated Imakefile support to reflect X.V11R4.
    Removed picttopbm.
    Improved pnmcut argument syntax so that negative coords work like pnmpaste.
    Added "magic" file, for use with the "file" program.
    40% speedup for pgmnorm from Robert Stockton (rgs@cs.cmu.edu).
    Fixed long-standing bug involving colormaps on SPARCstations when
      compiled with gcc -- had to do with passing structs by value.
    Removed the -x flag from pnmtorast -- it's not really needed.
    Fixed subtle bug in the pnm reading code that caused pnmcat to blow
      it on images that differed greatly in width or height.
    New version of giftoppm that handles the GIF89a standard, and doesn't
      use fseek.
    Fixed fitstopgm to handle three-axis images, such as the Hubble pix.
    Xwdtopnm and pnmtoxwd finally handle byte-order properly.
    Added -xysize flag to pnmscale.
    Added conditional ANSI function prototypes to library routines.
    Added -noantialias flag to pnmrotate and pnmshear.
    Removed the TIPS file.  No one ever sent in any new tips, so I just
      moved the few I had into the relevant man pages.  That's probably
      where they belonged in the first place.
    Added justification flags to pnmcat.
    Added -map flag to ppmquant - user-specifiable colormap.  Also, the
      Floyd-Steinberg error diffusion finally works right.
    Added -map flag to pgmtoppm.
    Added DirectColor support to xwdtopnm and pnmtoxwd.
    Speedup to pgmtolj from Arthur David Olson: avoid sending whitespace.
    Fix to pbmtogo from Bo Thide': 2D compression now works.

Patch 1 to the X.V11R4 / comp.sources.misc distribution of 22nov89:

    Fixed bug in pgmtops -rle.

Changes since the alt.sources distribution of 13sep89:

    Small corrections to ppmtorast, pgmtops.
    Moved pbm/tifftopbm to pgm/tifftopgm - it now handles grayscale TIFF files.
    Fixed tifftopgm to handle non-native byte order.
    Changes to tifftopgm to handle bogus AppleScan TIFF files, to have
      better command syntax, and to use stdio.
    Optimizations to xbmtopbm, pbmtoxbm, and pbmtox10bm, courtesy of
      Juha Sarlin, to make them go about three times as fast.
    Optimization to pgmtops and ppmtops to make them go three times as fast.
    Optimization to pnmcrop.
    Added PBMPLUS_BROKENPUTC defines in pbmplus.h to handle systems (such as
      ULTRIX) which have broken putc() macros.
    Rewrote ppmscale, pnmcat, and pgmhist to operate line-by-line, instead
      of reading in the whole image.
    Rewrote pnmflip to keep only one copy of the image in memory.
    Added pgmtofits, courtesy of Wilson H. Bent, plus bugfixes to fitstopgm
      and a patch to giftoppm to handle black&white GIF files.
    Added picttopbm and rawtopgm.
    Fixes to xwdtoppm and ppmtoxwd so they compile with SunOS cc as well as gcc.
    Another small change to ppmtoxwd having to do with colormap size.
    Changed macptopbm's -headersize flag to be -extraskip.
    Changed tgatoppm to read color values as BGRA instead of ARGB; the Targa
      documentation is apparently wrong about the order.
    Some changes to the Makefiles, partially to work around bugs in gnumake.
    Got g3topbm working, and added pbmtog3, courtesy of Paul Haeberli.
    Added some pixrect work-alike code so that rasttopbm, pbmtorast, rasttoppm,
      and ppmtorast can be used on non-Sun systems.  This also provides a
      final solution to the persistent byte- and bit-order problems on 386's.
    Moved the SYSV-checking #ifdefs to *after* the include of pbm.h, which
      defines SYSV.
    Made all the #else's and #endif's ANSI-compliant.
    Added manual pages for libpbm, libpgm, libppm, and libpnm, courtesy
      of Tony Hansen.
    Changed man page installation so that pages from different sections
      can go in different directories.
    Fixed Imakefiles.

Changes since the expo.lcs.mit.edu FTP distribution of 06sep89:

    Added #ifdefs to pnm/libpnm3.c to allow the PBM-PNM-only configuration.
    Small corrections to TIPS, pnm/Makefile, pnm/Imakefile, ppm/ppmrotate.1,
      ppm/ppmshear.1, ppm/ppmtoilbm.c, pbm/xwdtopbm.c, ppm/xwdtoppm.c,
      ppm/ppmtoxwd.c, ppm/ppmtoxwd.1, pbm/x11wd.h.

Changes since the comp.sources.misc distribution of 31oct88:

    Added pbmreduce, pbmlife, pbmmask, and pbmupc.
    Added gemtopbm, tifftopbm, pcxtopbm, pbmtogo, mgrtopbm, pbmtomgr,
      cmuwmtopbm, pbmtocmuwm, g3topbm, and pbmtobg.
    Minor bugfix to pbmtolj.
    Slight restructuring of most of the programs to use vastly less memory.
    Various other minor optimizations.
    Fixed pbmtorast and rasttopbm to handle byte-swapped big-endian 386 boxes.
    Slight changes to argument syntax of pbmcrop, pbmmake, pbmreduce.
    Moved to the new PGM package: pbmtops (which now produces Conforming PS).
    Moved to the new PPM package: giftopbm.
    Moved to the new PNM package: pbmcrop pbmcut pbmenlarge pbminvert.
    Consolidated into a single pnmflip tool: pbmfliplr pbmfliptb pbmtrnspos.
    Consolidated into a single pnmcat tool: pbmcatlr pbmcattb.
    Added compataliases script for upward compatability with changed tools.
    Removed xxxtopbm.
    Added a -headersize flag to macptopbm, to help get around annoying
      problems in MacPaint file format.
    Added the RAWBITS compilation-time option, to use a more compact and
      much faster (but less portable) external format.
    Removed the CBM format - use compress(1) and / or RAWBITS instead.
    Pbmpaste (and the new pnmpaste) now accepts negative x and y coords,
      which are interpreted relative to the right and bottom sides.
    Changed all programs to accept a "-" file argument as meaning standard
      input.
    Removed pbmtox10wd, since it was never very useful (X10 doesn't have xwud).
    Added Imakefiles, for X11 types to use.

Changes since the X.V11R3 distribution of 31aug88:

    The cbm format has been revised to support run-length encoding.
    Pbmtops now does run-length encoding.

Major changes since the X.V11R2 distribution of 28mar88:

    The pbm format now has a "magic number".
    New conversion filters: brushtopbm, giftopbm, pbmtolj, pbmtomacp,
      pbmtoxwd, and pbmtox10wd.
    Icontopbm converter has a better parser -- it knows to skip over
      any extraneous comments at the beginning of the icon file.
    Pbmtops generates a different PostScript wrapper program -- it should
      handle huge bitmaps better.
    Xwdtopbm now handles byte-swapping correctly.
    Pbmmake takes a flag to specify the color of the new bitmap.
    Pbmpaste now implements 'or', 'and', and 'xor' operations as well
      as the default 'replace'.