~ubuntu-branches/ubuntu/intrepid/libgd2/intrepid-updates

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
2007-11-27 08:48  pajoye

	* configure.ac: - #133, yet another fix the fix

2007-11-27 00:14  pajoye

	* CMakeLists.txt: - let make my life easier for 2.0.x too

2007-11-26 23:17  pajoye

	* ChangeLog: - update changelog

2007-11-25 20:45  mattias

	* gd_gd2.c: -MFB, Nuked unused label

2007-11-25 20:39  mattias

	* gd_gd2.c: - Nuked unused label

2007-11-23 17:14  pajoye

	* ChangeLog: - update changelog

2007-11-23 17:13  pajoye

	* configure.ac: - version++

2007-11-23 17:07  pajoye

	* configure.ac: - version++

2007-11-23 12:47  scottmac

	* configure.ac: - #133, MFH, configure script ignores
	  --with-png=DIR option

2007-11-23 12:45  scottmac

	* NEWS, configure.ac: - #133, configure script ignores
	  --with-png=DIR option

2007-11-21 22:16  pajoye

	* tests/gdimageline/: CMakeLists.txt, bug00111.c, bug00111_exp.png:
	  - #111, MFH: add test case

2007-11-21 13:27  pajoye

	* tests/freetype/bug00132.c: - MFH: add sanity check

2007-11-21 13:22  pajoye

	* tests/gdimagecopy/bug00081.c: - MFH:	- add sanity check  - nuke
	  unused variabl

2007-11-21 10:09  pajoye

	* gdft.c: - #132, MFB, fixed decoding of the html entity ϑ

2007-11-21 10:06  pajoye

	* tests/freetype/bug00132.c: - #132, fix test take 2

2007-11-21 10:05  pajoye

	* tests/freetype/DejaVuSans.ttf: - #132, add font (DejaVu) and fix
	  test

2007-11-21 10:01  pajoye

	* ChangeLog: - update changelog

2007-11-21 10:00  pajoye

	* NEWS, gdft.c, tests/CMakeLists.txt,
	  tests/freetype/CMakeLists.txt, tests/freetype/bug00132.c,
	  tests/freetype/bug00132_exp.png: - #132, Fixed decoding of the
	  html entity ϑ

2007-11-20 14:43  pajoye

	* gd.c: - #81, MFB, gdImageCopy ignores the transparent color

2007-11-20 14:42  pajoye

	* NEWS, gd.c, tests/gdimagecopy/CMakeLists.txt,
	  tests/gdimagecopy/bug00081.c, tests/gdimagecopy/bug00081_exp.png:
	  - #81, gdImageCopy ignores the transparent color

2007-11-18 21:16  pajoye

	* CMakeLists.txt, gd.h, index.html, tests/png/bug00088.c: - #88,
	  add test - update version to .36-dev

2007-11-18 16:09  pajoye

	* ChangeLog: - update changelog

2007-11-18 16:08  pajoye

	* NEWS: - update NEWS

2007-11-18 15:49  pajoye

	* tests/png/: CMakeLists.txt, bug00088_1.png, bug00088_1_exp.png,
	  bug00088_2.png, bug00088_2_exp.png: - #88, MFH: add test case

2007-11-18 15:46  pajoye

	* gd_png.c: - #88, MFB: Bug loading png images in grayscale + alpha
	  - add test

2007-11-17 22:55  pajoye

	* gd_png.c: - #88, Fix loading of grayscale png image with alpha

2007-11-17 22:44  pajoye

	* gd_png.c: - WS / CS

2007-11-03 11:41  pajoye

	* gd_tga.c: - #122, tga,  add support for image flip (tga images
	  can be stored   fliped)

2007-11-03 11:40  pajoye

	* CMakeLists.txt, Makefile.am, gd_transform.c: - #129, Add flip
	  functions, horizontally, vertically

2007-10-29 00:09  mattias

	* gd_gif_out.c, gd_io.c, gd_io_dp.c, gd_tiff.c: - According to the
	  standard, the '#' char must be at column 0 (Thanks Nuno)

2007-10-28 23:04  mattias

	* gd_io.c, gd_io_dp.c: - ws + cs

2007-10-28 22:15  mattias

	* gd_io.c: - ws + cs

2007-10-24 22:15  mattias

	* gd_gif_out.c: - ws + cs

2007-10-24 15:50  scottmac

	* NEWS, gd_wbmp.c: MFH: #127,  segfault when createwbmp fails

2007-10-24 15:46  scottmac

	* gd_wbmp.c: - #127,  segfault when createwbmp fails

2007-10-23 07:35  mattias

	* gd_gif_in.c: - ws + cs

2007-10-23 02:38  mattias

	* gd_tiff.c: - mark all non-exported functions as static (Nuno
	  Lopes)

2007-10-23 02:33  mattias

	* gd_tiff.c: - Removed todo

2007-10-17 00:05  mattias

	* gd_tga.c: - Overflow check

2007-10-16 23:59  mattias

	* gd_tga.c: - Avoid unnessessary alloc

2007-10-16 23:51  mattias

	* gd_tga.c, gd_tga.h: - ws + comment

2007-10-16 23:36  mattias

	* gd_tga.c: - Performance hit

2007-10-13 20:18  scottmac

	* gd_tga.c, gd_tga.h, gd_tiff.c: Make the spelling of color
	  consistent with the rest of libgd, though colour is the correct
	  way... :)

2007-10-09 13:13  scottmac

	* gd_io.c, gd_io.h: Add two new IO functions to fetch a word or
	  integer when the format is LSB first.

2007-10-08 09:21  pajoye

	* gd.h, gd_tga.c, gd_tga.h: - #122:  - export new TGA functions  -
	  fix alpha support (32bit) in TGA  - Add EOF macro (will ease our
	  work while merging to php)

2007-10-07 21:41  pajoye

	* CMakeLists.txt, gd_io.c, gd_tga.c, gd_tga.h: - #122, initial TGA
	  support (read only)

2007-10-07 19:23  pajoye

	* gd_tiff.c: - stop if the tiff ctx handler cannot be created

2007-10-07 18:48  pajoye

	* gd_tiff.c: - drop unused var - update (c)

2007-10-07 16:18  pajoye

	* gd_tiff.c: - #121, rewamp it almost completely  - add support for
	  1..8bit, 24 and 32bit pixels	- replace black&white and gray
	  support  - add default rgba import for unknown/unsupported format
	  - detect which mode is better to be used (save us double or
	  triple alloc	  of a complete image buffer)  - fix alpha support
	  (extra alpha in extra planes are not supported)

2007-10-07 00:19  guenter

	* gdft.c: fixed FS#83 — re-defines within gdft.c when compiled with
	  MingW32; added int casts for the gdft_draw_bitmap() pen params.

2007-10-06 21:02  guenter

	* gdft.c: fixed FS#83 — re-defines within gdft.c when compiled with
	  MingW32; added int casts for the gdft_draw_bitmap() pen params.

2007-10-06 12:52  nlopess

	* gd_tiff.c: replace pow(2, ) with a bitwise shift add comment to
	  note that no overflow check is necessary in the colorMap*
	  allocations

2007-10-06 12:42  nlopess

	* gd_tiff.c: mark all non-exported functions as static

2007-10-06 12:39  nlopess

	* gd.h: export the TIFF API

2007-10-05 07:49  pajoye

	* readme.jpn: - move jpn docs to docs/

2007-10-05 07:42  pajoye

	* gd_tiff.c: - missing ; - add casting - fix logic in malloc test

2007-10-05 07:35  pajoye

	* config.h.cmake: - fix build - add HAVE_LIBTIFF config

2007-10-05 00:01  mattias

	* gd_tiff.c: - ws + cs

2007-10-04 23:49  mattias

	* gd_tiff.c: - Added checking for allocation

2007-10-04 23:37  mattias

	* gd_tiff.c: - Use gdMalloc and gdFree

2007-10-04 23:34  mattias

	* gd_tiff.c: - ws + cs

2007-10-04 21:47  pajoye

	* gd_tiff.c: - fix 32bit read support, inverted vertically

2007-10-04 20:53  pajoye

	* CMakeLists.txt, gd_tiff.c: - #121, TIFF support initial import

2007-10-04 16:26  pajoye

	* windows/.cvsignore: - remove .cvsignore

2007-10-04 15:06  pajoye

	* VMS/: CONFIGURE.COM, README.VMS: - has been moved

2007-10-04 15:02  pajoye

	* windows/: Makefile, libgd.rc: - has been moved

2007-10-04 14:14  pajoye

	* CMakeLists.txt: - CMake test should work now

2007-10-04 13:46  pajoye

	* CMakeLists.txt: - now it builds (tests to come)

2007-10-04 13:22  pajoye

	* ChangeLog, NEWS: - mv ChangeLog and NEWS

2007-10-04 13:21  pajoye

	* CMakeLists.txt, cmake/modules/AC_HEADER_STDC.cmake,
	  cmake/modules/CheckDIRSymbolExists.cmake,
	  cmake/modules/CheckPrototypeExists.cmake,
	  cmake/modules/FindFontconfig.cmake,
	  cmake/modules/FindFreetype.cmake, cmake/modules/FindGD.cmake,
	  cmake/modules/FindPNG.cmake, cmake/modules/FindPTHREAD.cmake,
	  cmake/modules/FindXPM.cmake,
	  cmake/modules/TestForHighBitCharacters.c,
	  cmake/modules/TestForHighBitCharacters.cmake,
	  cmake/modules/TestForStandardHeaderwait.cmake,
	  cmake/modules/gd.cmake, netware/Makefile, netware/get_exp.awk,
	  netware/get_ver.awk, netware/keepscreen.c, netware/nwlibc.c,
	  netware/tests/Makefile: - mv cmake, netware, vms and windows
	  build script to root dir

2007-10-02 11:17  pajoye

	* INSTALL, README-JPEG.TXT, README.TESTING, README.TXT: - mv docs
	  to docs/

2007-10-02 11:07  pajoye

	* tests/: .cvsignore, CMakeLists.txt, gd2/.cvsignore,
	  gd2/CMakeLists.txt, gd2/conv_gd2_exp.gd2, gd2/conv_test.gd2,
	  gd2/conv_test_exp.png, gd2/empty.gd2, gd2/gd2_empty_file.c,
	  gd2/gd2_read.c, gdimagearc/.cvsignore, gdimagearc/CMakeLists.txt,
	  gdimagearc/bug00079.c, gdimagearc/bug00079_exp.png,
	  gdimagecolorclosest/.cvsignore,
	  gdimagecolorclosest/CMakeLists.txt,
	  gdimagecolorclosest/gdimagecolorclosest.c,
	  gdimagecolordeallocate/.cvsignore,
	  gdimagecolordeallocate/CMakeLists.txt,
	  gdimagecolordeallocate/gdimagecolordeallocate.c,
	  gdimagecolorexact/.cvsignore, gdimagecolorexact/CMakeLists.txt,
	  gdimagecolorexact/gdimagecolorexact.c,
	  gdimagecolorresolve/.cvsignore,
	  gdimagecolorresolve/CMakeLists.txt,
	  gdimagecolorresolve/gdimagecolorresolve.c,
	  gdimagecolortransparent/CMakeLists.txt,
	  gdimagecolortransparent/gdimagecolortransparent.c,
	  gdimagecopy/.cvsignore, gdimagecopy/CMakeLists.txt,
	  gdimagecopy/bug00007.c, gdimagecopyrotated/.cvsignore,
	  gdimagecopyrotated/CMakeLists.txt, gdimagecopyrotated/bug00020.c,
	  gdimagecopyrotated/bug00020_exp.png, gdimagefill/.cvsignore,
	  gdimagefill/CMakeLists.txt, gdimagefill/bug00002_1.c,
	  gdimagefill/bug00002_1_exp.png, gdimagefill/bug00002_2.c,
	  gdimagefill/bug00002_2_exp.png, gdimagefill/bug00002_3.c,
	  gdimagefill/bug00002_3_exp.png, gdimagefill/bug00002_4.c,
	  gdimagefill/bug00002_4_exp.png, gdimagefilledellipse/.cvsignore,
	  gdimagefilledellipse/CMakeLists.txt,
	  gdimagefilledellipse/bug00010.c,
	  gdimagefilledellipse/bug00010_exp.png,
	  gdimagefilledrectangle/.cvsignore,
	  gdimagefilledrectangle/CMakeLists.txt,
	  gdimagefilledrectangle/bug00004.c,
	  gdimagefilledrectangle/bug00078.c,
	  gdimagefilledrectangle/bug00106.c,
	  gdimagefilltoborder/.cvsignore,
	  gdimagefilltoborder/CMakeLists.txt,
	  gdimagefilltoborder/bug00037.c, gdimageline/.cvsignore,
	  gdimageline/CMakeLists.txt, gdimageline/bug00072.c,
	  gdimageline/bug00072_exp.png, gdimageline/bug00077.c,
	  gdimageline/bug00077_exp.png, gdimageline/gdimageline_aa.c,
	  gdimageline/gdimageline_aa_a_0_exp.png,
	  gdimageline/gdimageline_aa_a_1_exp.png,
	  gdimageline/gdimageline_aa_b_0_exp.png,
	  gdimageline/gdimageline_aa_b_1_exp.png,
	  gdimageline/gdimageline_aa_c_0_exp.png,
	  gdimageline/gdimageline_aa_c_1_exp.png,
	  gdimageline/gdimageline_aa_d_0_exp.png,
	  gdimageline/gdimageline_aa_d_1_exp.png,
	  gdimageline/gdimageline_aa_outofrange.c,
	  gdimagerectangle/.cvsignore, gdimagerectangle/CMakeLists.txt,
	  gdimagerectangle/bug00003.c, gdimagerectangle/bug00106.c,
	  gdtest/.cvsignore, gdtest/CMakeLists.txt, gdtest/gdtest.c,
	  gdtest/gdtest.h, gdtest/test_config.h.cmake, gdtiled/.cvsignore,
	  gdtiled/CMakeLists.txt, gdtiled/bug00032.c,
	  gdtiled/bug00032_exp.png, gif/.cvsignore, gif/CMakeLists.txt,
	  gif/bug00005.c, gif/bug00005_0.gif, gif/bug00005_1.gif,
	  gif/bug00005_2.c, gif/bug00005_2.gif, gif/bug00005_2_exp.png,
	  gif/bug00005_3.gif, gif/bug00006.c, gif/bug00060.c,
	  gif/bug00060.gif, gif/bug00066.c, gif/bug00066.gif,
	  gif/bug00066_exp.png, jpeg/.cvsignore, jpeg/CMakeLists.txt,
	  jpeg/conv_test.jpeg, jpeg/conv_test_exp.png, jpeg/empty.jpeg,
	  jpeg/jpeg_empty_file.c, jpeg/jpeg_read.c, png/.cvsignore,
	  png/CMakeLists.txt, png/bug00011.c, png/bug00033.c,
	  png/bug00033.png, png/bug00086.c, png/emptyfile: - remove (has
	  been moved one level lower)

2007-09-09 21:55  guenter

	* netware/: Makefile, get_exp.awk, get_ver.awk, keepscreen.c,
	  nwlibc.c: added CVS Id tags.

2007-09-09 21:44  guenter

	* netware/: get_exp.awk, get_ver.awk, keepscreen.c, nwlibc.c,
	  tests/Makefile: added CVS Id tags.

2007-09-09 21:39  guenter

	* netware/: Makefile, get_exp.awk, get_ver.awk, keepscreen.c,
	  mkgdimp.pl, nwlibc.c, tests/Makefile: updated NetWare build
	  files.

2007-09-09 15:14  mattias

	* gd.c, tests/CMakeLists.txt,
	  tests/gdimagecolortransparent/CMakeLists.txt,
	  tests/gdimagecolortransparent/gdimagecolortransparent.c: -MFB,
	  #113, gdImageColorTransparent can write outside buffer

2007-09-09 15:12  mattias

	* NEWS, gd.c, tests/CMakeLists.txt,
	  tests/gdimagecolortransparent/CMakeLists.txt,
	  tests/gdimagecolortransparent/gdimagecolortransparent.c: - #113,
	  gdImageColorTransparent can write outside buffer

2007-09-01 14:39  mattias

	* tests/: gdimagecolordeallocate/.cvsignore,
	  gdimagefilledrectangle/.cvsignore, gdimagerectangle/.cvsignore: -
	  Added tests to cvsignore

2007-09-01 14:35  mattias

	* gd.c, tests/gdimagecolordeallocate/gdimagecolordeallocate.c: -MFB
	  #112, More checking

2007-09-01 14:34  mattias

	* gd.c, tests/gdimagecolordeallocate/gdimagecolordeallocate.c: -
	  #112, More checking

2007-08-31 09:43  mattias

	* gd.c, tests/CMakeLists.txt,
	  tests/gdimagecolordeallocate/CMakeLists.txt,
	  tests/gdimagecolordeallocate/gdimagecolordeallocate.c: -MFB #112,
	  gdImageColorDeallocate can write outside buffer

2007-08-31 09:31  mattias

	* NEWS, gd.c, tests/CMakeLists.txt,
	  tests/gdimagecolordeallocate/CMakeLists.txt,
	  tests/gdimagecolordeallocate/gdimagecolordeallocate.c: - #112,
	  gdImageColorDeallocate can write outside buffer

2007-08-30 21:30  mattias

	* NEWS: - Added bug #111

2007-08-30 21:03  mattias

	* gd.c: -MFH #111, Optimization for single pixel line not in
	  correct order

2007-08-30 21:03  mattias

	* gd.c: - #111, Optimization for single pixel line not in correct
	  order

2007-08-26 21:47  pajoye

	* tests/: gdimagefilledrectangle/CMakeLists.txt,
	  gdimagerectangle/CMakeLists.txt: - #106, gdImageRectangle draws
	  1x1 rectangles as 1x3 rectangles   missing cmake change

2007-08-26 21:46  pajoye

	* gd.c, tests/gdimagefilledrectangle/CMakeLists.txt,
	  tests/gdimagefilledrectangle/bug00106.c,
	  tests/gdimagerectangle/CMakeLists.txt,
	  tests/gdimagerectangle/bug00106.c: - MFB: #106, gdImageRectangle
	  draws 1x1 rectangles as 1x3 rectangles

2007-08-26 21:35  pajoye

	* NEWS, gd.c, tests/gdimagefilledrectangle/bug00106.c,
	  tests/gdimagerectangle/bug00106.c: - #106, gdImageRectangle draws
	  1x1 rectangles as 1x3 rectangles

2007-08-14 19:51  guenter

	* netware/: Makefile, keepscreen.c, tests/Makefile: updated NetWare
	  build files (again).

2007-08-14 19:16  guenter

	* netware/tests/Makefile: updated NetWare test build file.

2007-08-14 19:15  guenter

	* netware/get_exp.awk: file get_exp.awk was added on branch GD_2_0
	  on 2007-09-09 19:39:43 +0000

2007-08-14 19:15  guenter

	* netware/: Makefile, get_exp.awk, get_ver.awk, mkgdimp.pl,
	  nwlibc.c: updated NetWare build files.

2007-08-08 21:51  mattias

	* gd.c: - it has come clear that nc can be negative afterall

2007-08-08 20:28  mattias

	* gd.c: - Fixed fix :)

2007-08-08 20:16  mattias

	* gd.c: - nc in gdImageFill sould not be less than 0

2007-08-08 18:58  mattias

	* gd.c: #109, 2.0 are diffrent than HEAD and require more checking

2007-08-08 17:18  mattias

	* gd_security.c: -MFH: Be paranoid and dont allow multiplication
	  with zero

2007-08-08 17:18  mattias

	* gd_security.c: - Be paranoid and dont allow multiplication with
	  zero

2007-08-08 14:57  mattias

	* NEWS, gd.c: -MFH: #109, Possible integer overflow in
	  gdImageFill()

2007-08-08 14:57  mattias

	* gd.c: - #109, Possible integer overflow in gdImageFill()

2007-08-07 22:11  mattias

	* .cvsignore: - Ignore cscope.out

2007-08-07 21:54  mattias

	* gd_gif_in.c: -MFH: file lost in last commit for #105 :)

2007-08-07 21:53  mattias

	* gd_gif_in.c: - file lost in last commit for #105 :)

2007-08-07 21:50  mattias

	* NEWS, gd_gd.c, gd_gd2.c, gd_jpeg.c, gd_png.c, gd_wbmp.c: -MFH:
	  #105, gdImageCreateFrom*Ptr() can crash if gdNewDynamicCtxEx()
	  fails

2007-08-07 21:44  mattias

	* gd_gd.c, gd_gd2.c, gd_jpeg.c, gd_png.c, gd_wbmp.c: - #105,
	  gdImageCreateFrom*Ptr() can crash if gdNewDynamicCtxEx() fails

2007-08-06 20:38  mattias

	* NEWS: - Added #101

2007-08-06 20:35  mattias

	* gd_gd.c: -MFH #101, _gdCreateFromFile() can crash if
	  gdImageCreate fails

2007-08-06 20:32  mattias

	* gd_gd.c: - #101, _gdCreateFromFile() can crash if gdImageCreate
	  fails

2007-06-26 14:10  pajoye

	* NEWS: - add #95 entry

2007-06-26 14:09  pajoye

	* NEWS, gd.h: - MFH: #97, ease the creation of regexps to match
	  symbols/functions

2007-06-26 14:06  pajoye

	* gd.h: - #97, ease the creation of regexps to match
	  symbols/functions

2007-06-24 14:57  pajoye

	* netware/: Makefile, get_ver.awk, keepscreen.c, mkgdimp.pl,
	  nwlibc.c, tests/Makefile: - MFB: #95, add NetWare makefiles to
	  main source tree

2007-06-24 14:56  pajoye

	* netware/: Makefile, get_ver.awk, keepscreen.c, mkgdimp.pl,
	  nwlibc.c, tests/Makefile: - #95, add NetWare makefiles to main
	  source tree

2007-06-21 20:35  pajoye

	* ChangeLog: - update

2007-06-21 20:35  pajoye

	* NEWS: - 2.0.35, here we go

2007-06-21 11:11  pajoye

	* index.html: - 2.1.x+ will not have this file

2007-06-21 11:03  pajoye

	* index.html: - s/2.0.33/2.0.35/ - add a note about reading NEWS
	  instead

2007-06-20 11:12  pajoye

	* tests/gif/bug00060.c: - MFB: fix test (does not return 0 by
	  default)

2007-06-20 11:11  pajoye

	* tests/gif/bug00060.c: - fix test (does not return 0 by default)

2007-06-19 23:15  pajoye

	* ChangeLog: - update

2007-06-19 23:14  pajoye

	* NEWS: - better info

2007-06-19 22:35  pajoye

	* ChangeLog: - update

2007-06-19 22:25  pajoye

	* NEWS, gd.c: - MFH: #94, gdImageCreateXbm can crash if
	  gdImageCreate fails

2007-06-19 22:25  pajoye

	* gd.c: - #94, gdImageCreateXbm can crash if gdImageCreate fails

2007-06-18 00:11  nlopess

	* gd.c, gdtables.c, jisx0208.h: add const to gd internal tables
	  (gdCostT, gdSinT, UnicodeTbl)

2007-06-17 23:53  nlopess

	* tests/png/.cvsignore: ignore bug00086 file

2007-06-17 21:02  nlopess

	* gd.c: now plug the memleak I introduced (because it wont crash)

2007-06-17 20:56  nlopess

	* gd.c: plug a memleak in _gdImageFillTiled() on error condition
	  replace a malloc+memset with calloc instance

2007-06-17 20:49  nlopess

	* gd.c: backport a missing bit of bug #41 (_gdImageFillTiled()
	  crashed if calloc failed)

2007-06-17 17:27  pajoye

	* tests/png/CMakeLists.txt: - missing bug00086 entry

2007-06-15 21:34  nlopess

	* gd.c: improve _gdImageFillTiled() internal function: mark it as
	  static fix possible segfault if calloc() failed save a lot of
	  temporary memory # this is the remaining patch for bug #41

2007-06-15 21:21  nlopess

	* .cvsignore, tests/gdimagearc/.cvsignore,
	  tests/gdimagecopy/.cvsignore,
	  tests/gdimagecopyrotated/.cvsignore,
	  tests/gdimagefill/.cvsignore,
	  tests/gdimagefilledellipse/.cvsignore,
	  tests/gdimagefilledrectangle/.cvsignore,
	  tests/gdimagefilltoborder/.cvsignore,
	  tests/gdimageline/.cvsignore, tests/gdimagerectangle/.cvsignore,
	  tests/gdtest/.cvsignore, tests/gdtiled/.cvsignore,
	  tests/gif/.cvsignore: ignore generated files

2007-06-15 14:18  pajoye

	* README.TESTING: - add doc about building out of the src tree and
	  CMAKE_BUILD_TYPE option

2007-06-15 14:14  nlopess

	* .cvsignore, tests/.cvsignore, tests/gd2/.cvsignore,
	  tests/gdimagecolorclosest/.cvsignore,
	  tests/gdimagecolorexact/.cvsignore,
	  tests/gdimagecolorresolve/.cvsignore, tests/gif/.cvsignore,
	  tests/jpeg/.cvsignore, tests/png/.cvsignore: ignore a few
	  generated files (not complet yet)

2007-06-14 22:02  pajoye

	* ChangeLog: - update

2007-06-14 21:23  pajoye

	* gd.c: - WS

2007-06-14 21:22  pajoye

	* gd.c: - #74, Fix regression introduced by the original fix

2007-06-09 14:55  pajoye

	* ChangeLog: - update changelog

2007-06-09 14:48  pajoye

	* NEWS: - damned bug system posted it two times (our mailserver is
	  on its knies...)

2007-06-09 14:47  pajoye

	* NEWS: - s/89/90/

2007-06-09 14:30  pajoye

	* NEWS, gd.c: - #89, Possible integer overflow in
	  gdImageCreateTrueColor

2007-06-08 07:23  pajoye

	* gd_gif_in.c: - #87, MFB: fix segfault when an invalid color index
	  is present in the   image data

2007-06-08 07:21  pajoye

	* NEWS, gd_gif_in.c: - #87, fix segfault when an invalid color
	  index is present in the   image data

2007-05-17 16:51  pajoye

	* ChangeLog: - update

2007-05-17 16:49  pajoye

	* NEWS, gd_png.c, tests/png/bug00086.c: - MFB: #86, Possible
	  infinite loop in libgd/gd_png.c

2007-05-17 16:38  pajoye

	* NEWS, gd_png.c, tests/png/CMakeLists.txt, tests/png/bug00086.c: -
	  #86, Possible infinite loop in libgd/gd_png.c   (flaw reported by
	  Xavier Roche)

2007-05-15 13:31  pajoye

	* CMakeLists.txt: - fix tests build when used with an external
	  library

2007-05-07 12:26  pajoye

	* gd.c, tests/CMakeLists.txt, tests/gdimagearc/CMakeLists.txt,
	  tests/gdimagearc/bug00079.c, tests/gdimagearc/bug00079_exp.png:
	  - #79, MFB:
	    - fix hline and vline calls
	    - add test case

2007-05-07 12:21  pajoye

	* gd.c, tests/CMakeLists.txt, tests/gdimagearc/CMakeLists.txt,
	  tests/gdimagearc/bug00079.c, tests/gdimagearc/bug00079_exp.png: -
	  #79:	- reverse wrong fix  - fix hline and vline calls  - add
	  test case

2007-05-07 09:08  pajoye

	* gd.c: - #79, regression in gdImageArc when used with
	  gdAntiAliased

2007-05-06 22:21  pajoye

	* NEWS: - #78 entry

2007-05-06 22:15  pajoye

	* ChangeLog: - update changelog

2007-05-06 22:13  pajoye

	* CMakeLists.txt, cmake/modules/FindFreetype.cmake,
	  tests/gdimagefilledrectangle/CMakeLists.txt,
	  tests/gdimagefilledrectangle/bug00078.c: - update cmake  - remove
	  strlcpy.c  - fix HAVE_FREETYPE definitiion

2007-05-06 22:12  pajoye

	* gd.c: - #78, gdImageFilledRectangle with reversed edges does not
	  work

2007-05-06 21:56  pajoye

	* tests/: gdimageline/bug00072_exp.png, gif/bug00060.c,
	  gif/bug00060.gif, gif/bug00066.gif, gif/bug00066_exp.png: - add
	  images as binary - readd bug00060.c

2007-05-06 21:54  pajoye

	* tests/: gdimageline/bug00072_exp.png, gif/bug00060.c,
	  gif/bug00060.gif, gif/bug00066.gif, gif/bug00066_exp.png: -
	  remove badly imported files (must be binary)

2007-05-06 21:53  pajoye

	* CMakeLists.txt, ChangeLog, NEWS, configure.ac, entities.h, gd.c,
	  gd.h, gd_gif_in.c, gdtest.c, VMS/CONFIGURE.COM, VMS/README.VMS,
	  tests/gd2/gd2_empty_file.c, tests/gd2/gd2_read.c,
	  tests/gdimagecopyrotated/bug00020.c,
	  tests/gdimagefill/bug00002_1.c, tests/gdimagefill/bug00002_2.c,
	  tests/gdimagefill/bug00002_3.c, tests/gdimagefill/bug00002_4.c,
	  tests/gdimagefilledellipse/bug00010.c,
	  tests/gdimagefilledrectangle/CMakeLists.txt,
	  tests/gdimagefilledrectangle/bug00078.c,
	  tests/gdimageline/CMakeLists.txt, tests/gdimageline/bug00072.c,
	  tests/gdimageline/bug00072_exp.png, tests/gdimageline/bug00077.c,
	  tests/gdimageline/gdimageline_aa.c, tests/gdtest/CMakeLists.txt,
	  tests/gdtest/gdtest.c, tests/gdtest/gdtest.h,
	  tests/gdtest/test_config.h.cmake, tests/gif/CMakeLists.txt,
	  tests/gif/bug00005.c, tests/gif/bug00060.c,
	  tests/gif/bug00060.gif, tests/gif/bug00066.c,
	  tests/gif/bug00066.gif, tests/gif/bug00066_exp.png,
	  tests/jpeg/jpeg_empty_file.c, tests/jpeg/jpeg_read.c,
	  tests/png/bug00011.c, tests/png/bug00033.c: - Sync HEAD with
	  GD_2_0 - Begin 2.1.0 work (mark it as 2.1.0 :)

2007-05-06 21:43  pajoye

	* tests/gdimageline/bug00077.c: - #77, fix expected image name

2007-05-06 21:37  pajoye

	* gd.h: - remove gd_strlcpy declaration, has been droped already

2007-05-06 21:33  pajoye

	* tests/gdimageline/CMakeLists.txt: - #72, #77, add tests to
	  CMakeLists.txt

2007-05-06 21:15  pajoye

	* cmake/modules/FindPTHREAD.cmake: - Fix PTHREAD config variable
	  (Nuno)

2007-05-06 21:01  pajoye

	* gdft.c: - MFB:  - prevent double lock/unlock for the tween colors
	  cache  - use gdFree not free	- #40, possible Buffer overflow in
	  the gdImageStringFTEx function    in gdft.c (CVE-2007-0455) (Kees
	  Cook)

2007-05-06 20:46  pajoye

	* gd.c, gd_png.c: - MFB: #67, Preferable calls of gdFree() in libgd
	  (tabe at fixedpoint dot jp)

2007-05-06 20:43  pajoye

	* gd.c: - MFB: #74, gdImageFilledArc, huge CPU usage with large
	  angles

2007-05-06 20:41  pajoye

	* gd.c, tests/gdimageline/bug00077.c,
	  tests/gdimageline/bug00077_exp.png: - MFB: #77, gdImageLine does
	  not draw all vertical lines

2007-05-06 20:36  pajoye

	* tests/gdimageline/: bug00077.c, bug00077_exp.png: - #77, add test
	  case

2007-05-06 20:12  pajoye

	* gd.c: - MFB: #78,gdImageFilledRectangle() draws nothing with
	  reversed points   (x1,y1) > (x2,y2)

2007-05-06 19:54  pajoye

	* tests/gdimagefilledrectangle/bug00078.c: - MFB: #78, add test
	  case

2007-05-06 19:52  pajoye

	* tests/gdimagefilledrectangle/bug00078.c: - #78, add test case

2007-04-30 05:55  mloskot

	* gd.h, gdft.c, gdhelpers.h, windows/.cvsignore: #59 Import Windows
	  CE port.

2007-04-26 17:52  pajoye

	* gd.c: - #72 (and #77), fix vertical lines when y2 < y1

2007-04-24 16:24  pajoye

	* windows/Makefile: - remove libgd.dll.res as well on make clean

2007-04-24 09:47  pajoye

	* CMakeLists.txt, configure.ac, gd.h: - prepare 2.0.35

2007-04-22 19:13  pajoye

	* NEWS, gdtest.c, VMS/CONFIGURE.COM, VMS/README.VMS: - #68, add
	  OpenVMS build script

2007-04-19 14:54  scottmac

	* NEWS, gd.h, gdft.c: #73, Fix usage of TTF on Netware

2007-04-17 12:56  pajoye

	* CMakeLists.txt: - MFH: name the dll bgd not gd - make fontconfig
	  optional on win32

2007-04-17 12:50  pajoye

	* windows/Makefile: - user friendly deps path definition

2007-04-14 19:41  pajoye

	* NEWS: - #74 entry

2007-04-14 19:27  pajoye

	* gd.c: - #74, gdImageFilledArc, huge CPU usage with large angles

2007-04-10 23:26  pajoye

	* NEWS: - s/#//

2007-04-10 22:35  pajoye

	* tests/jpeg/jpeg_empty_file.c: - don't use cont

2007-04-10 22:32  pajoye

	* tests/: gd2/gd2_empty_file.c, gd2/gd2_read.c,
	  gdimagecopyrotated/bug00020.c, gdimagefill/bug00002_1.c,
	  gdimagefill/bug00002_2.c, gdimagefill/bug00002_3.c,
	  gdimagefill/bug00002_4.c, gdimagefilledellipse/bug00010.c,
	  gdimageline/bug00072.c, gdimageline/gdimageline_aa.c,
	  gdtest/gdtest.c, gdtest/gdtest.h, gif/bug00005.c, gif/bug00060.c,
	  gif/bug00066.c, jpeg/jpeg_empty_file.c, jpeg/jpeg_read.c,
	  png/bug00011.c, png/bug00033.c: - use a constant to get the top
	  src dir - don't use const when it is not a const...

2007-04-09 18:22  pajoye

	* ChangeLog: - update changelog

2007-04-09 18:21  pajoye

	* NEWS: - #72 entry

2007-04-09 18:18  pajoye

	* gd.c, tests/gdimageline/bug00072.c,
	  tests/gdimageline/bug00072_exp.png: - #72, gdImageAALine draws
	  axis aligned lines two pixels large  . add gdImageVLine and
	  HLine, not exported (will be 2.1.0)

2007-04-09 16:00  pajoye

	* tests/: gdimageline/gdimageline_aa.c, gdtest/gdtest.c,
	  gif/bug00005.c: - always store image diff files in the build dir
	  - store the output result as well - remove c++ comment - be more
	  verbose in the error messages

2007-04-04 14:04  pajoye

	* tests/gif/: CMakeLists.txt, bug00060.c, bug00066.c, bug00066.gif,
	  bug00066_exp.png: - add test for #66 - fix leak in test #60

2007-04-04 13:38  pajoye

	* NEWS: - #70 entry

2007-04-04 13:33  pajoye

	* gd_gif_in.c: - #70, do not try to use the global color map if
	  none exists - free im on error

2007-04-03 19:03  pajoye

	* NEWS: - update NEWS entries for the last commits

2007-04-03 18:38  pajoye

	* gdft.c: - we already lock it earlier, prevent deadlock/double
	  lock

2007-04-01 22:41  pajoye

	* gd.c, gd_png.c, gdft.c: - #67,  Preferable calls of gdFree() in
	  libg (tabe at fixedpoint dot jp)

2007-04-01 22:12  pajoye

	* tests/gdtest/test_config.h.cmake: - add configuration file

2007-04-01 21:54  pajoye

	* gd_gif_in.c: - #52, #60, #66	 - a frame size must be confined to
	  the screen defition	      - consider 00005_2 as invalid (65k x
	  65k frame size for a 400x312 screen)	     - be sure to always
	  read the dimensions in the frame and does not use	the screen
	  size (see #66 for a side effect)

2007-04-01 21:48  pajoye

	* tests/: gd2/gd2_empty_file.c, gd2/gd2_read.c,
	  gdimagecopyrotated/bug00020.c, gdimagefill/bug00002_1.c,
	  gdimagefill/bug00002_2.c, gdimagefill/bug00002_3.c,
	  gdimagefill/bug00002_4.c, gdimagefilledellipse/bug00010.c,
	  gdimageline/gdimageline_aa.c, gdtest/CMakeLists.txt,
	  gdtest/gdtest.c, gif/CMakeLists.txt, gif/bug00005.c,
	  gif/bug00060.c, gif/bug00060.gif, jpeg/jpeg_empty_file.c,
	  jpeg/jpeg_read.c, png/bug00011.c, png/bug00033.c: - allow tests
	  to be launched outside the src tree - #60, add test case for #60

2007-03-31 19:24  pajoye

	* entities.h: - update from entities.tcl

2007-03-31 16:26  pajoye

	* gd_gif_in.c: - #52, #60   - local Pallette are read twice   - Use
	  the local dimension when available   - Rely on the global
	  dimension when the local dimension are invalid and	 the format
	  is GIF87 (no animation)   NB: The #52 TS patch must be applied
	  first

2007-03-15 23:25  nlopess

	* tests/gif/bug00005_2.c: MFB: fix leak in test

2007-03-15 23:23  nlopess

	* tests/gif/bug00005_2.c: fix leak in test

2007-03-12 17:05  pajoye

	* CMakeLists.txt: -MFB:  - generate config.h in the BUIL_DIR
	  instead of the SOURCE_DIR  - drop old commented lines

2007-03-12 17:01  pajoye

	* CMakeLists.txt: - generate config.h in the BUIL_DIR instead of
	  the SOURCE_DIR - drop old commented lines

2007-03-08 21:02  nlopess

	* gd_gif_in.c: MFB: fix bug #52: Reading GIF images is not thread
	  safe (static usage in private functions)

2007-03-08 20:59  nlopess

	* NEWS: fix news, sorry

2007-03-08 20:56  nlopess

	* NEWS, gd_gif_in.c: fix bug #52: Reading GIF images is not thread
	  safe (static usage in private functions)

2007-03-08 20:52  pajoye

	* ISSUES: - we use NEWS now

2007-03-07 20:30  nlopess

	* CMakeLists.txt: set HAVE_FT2BUILD_H when ft2build.h file is found

2007-03-07 16:53  pajoye

	* CMakeLists.txt: - fix windows cmake support - use BGDWIN32 for
	  now, static build and other windows options will follow shortly

2007-03-07 16:52  pajoye

	* cmake/modules/FindFreetype.cmake: - windows may have
	  freetype2.lib

2007-03-05 16:42  pajoye

	* Makefile.am, NEWS, windows/Makefile: - #51  - revert Ilia's patch
	  (was not required)  - Remove strlcpy, we don't need it now (I
	  keep it in cvs just in case	 but it will not be distributed or
	  used in the binaries)

2007-03-02 23:02  nlopess

	* gd_gif_in.c: MFB

2007-03-02 22:59  nlopess

	* cmake/modules/FindPTHREAD.cmake: fix pthread support in cmake
	  toolchain

2007-03-02 22:59  nlopess

	* gd_gif_in.c: merge with php tree: fix access to unitialized
	  memory (introduced with the strlcpy usage) # now gd_strlcpy()
	  becomes useless again :P

2007-03-02 15:36  edink

	* windows/Makefile: Add new file compilation

2007-02-27 21:32  pajoye

	* windows/Makefile: - MFH: fix new lines, vc7 does not like
	  makefile with both unix and windows line ending

2007-02-27 21:32  pajoye

	* windows/Makefile: - fix new lines, vc7 does not like makefile
	  with both unix and windows line ending

2007-02-27 01:38  pajoye

	* NEWS: - andersrum..

2007-02-27 00:55  pajoye

	* ChangeLog: - update Changelog

2007-02-27 00:55  pajoye

	* NEWS: - update NEWS for 2.0.35RC1

2007-02-27 00:46  pajoye

	* gd.c: - #41, fix possible overrun (detected with valgrind) (Nuno
	  Lopes)

2007-02-27 00:39  pajoye

	* CMakeLists.txt, Makefile.am, gd.h, gd_gif_in.c, strlcpy.c: - #51,
	  Use strlcpy instead of strncpy in gd_gif_c   - fix off-by-one

2007-02-26 20:59  pajoye

	* gdft.c: - #48, Race condition in gdImageStringFTEx   It is safe
	  to destroy a unlocked mutex, not a locked one (Nuno Lopes)

2007-02-26 20:58  pajoye

	* gdft.c: - #48, Race condition in gdImageStringFTEx   it is safe
	  to destroy an unlocked mutex, not a locked one (Nuno Lopes)

2007-02-26 20:30  pajoye

	* gdft.c: - MFB: #48, Race condition in gdImageStringFTEx (cache)

2007-02-26 20:30  pajoye

	* gdft.c: - #48, Race condition in gdImageStringFTEx (cache)

2007-02-07 01:32  pajoye

	* ChangeLog: - sync

2007-02-07 01:27  pajoye

	* NEWS: - add CVE ref.

2007-02-07 01:26  pajoye

	* ChangeLog: - sync changelog

2007-02-07 01:26  pajoye

	* gd.h: - go for 2.0.34

2007-02-07 01:24  pajoye

	* gd.c: - MFB: ansi/windows build fix, all declarations must be on
	  top (Edin)

2007-02-07 01:21  pajoye

	* gd.c: - ansi/windows build fix, all declarations must be on top
	  (Edin)

2007-02-07 01:14  pajoye

	* NEWS: - #40

2007-02-07 01:12  pajoye

	* gdft.c: - #40 — possible Buffer overflow in the
	  gdImageStringFTEx   function in gdft.c (patch by Kees Kook)

2007-02-06 23:29  pajoye

	* windows/libgd.rc: - update dll rc

2007-02-06 23:24  pajoye

	* ChangeLog: - sync Changelog

2007-02-03 02:34  pajoye

	* NEWS: - updates

2007-02-03 02:18  pajoye

	* ChangeLog: - update changelog

2007-02-03 02:16  pajoye

	* Makefile.am, configure.ac: - MFB: #31 — Shared library support
	  on cygwin (Dr. Volker Zell)

2007-02-03 02:15  pajoye

	* Makefile.am, configure.ac: - #31 Shared library support on cygwin
	  (Dr. Volker Zell)

2007-02-03 02:11  pajoye

	* gd.h, gdft.c, index.html: - MFB: #30, restores the ability to
	  recognize and handle a font with	  Adobe-specific character
	  encoding

2007-02-03 02:03  pajoye

	* gd.c: - MFB: #14, sanity check

2007-02-03 02:00  pajoye

	* gd.c: - #14, sanity check

2007-02-01 12:01  pajoye

	* gdft.c: - #30, do not extend sign (restores the ability to
	  recognize and handle a   font with Adobe-specific character
	  encoding (Adobe custom) ).

2007-02-01 00:31  pajoye

	* gd.h, gdft.c, index.html: - #30, restores the ability to
	  recognize and handle a font with   Adobe-specific character
	  encoding (Adobe custom) - Fix proto in index.html

2007-01-30 10:11  pajoye

	* NEWS: - 2.0.34RC1 news

2007-01-29 23:22  pajoye

	* ChangeLog: - update

2007-01-29 22:56  pajoye

	* gd.c: - #32, Pattern-fill works incorrectly if tile is created
	  via gdImageCreateTruecolor (Ethan Merritt)

2007-01-29 22:11  pajoye

	* ChangeLog: - update changelog

2007-01-29 22:07  pajoye

	* COPYING, index.html: - update years and (c)

2007-01-25 01:08  pajoye

	* cmake/modules/: FindFontconfig.cmake, FindFreetype.cmake,
	  FindGD.cmake, FindPNG.cmake, FindPTHREAD.cmake, FindXPM.cmake: -
	  add lib64 tests (Chritian Rodriguez)

2007-01-25 00:06  pajoye

	* tests/gif/bug00005.c: - remove version checks

2007-01-24 23:32  pajoye

	* config.h.cmake: - config.h.in for cmake

2007-01-24 23:20  pajoye

	* cmake/modules/: AC_HEADER_STDC.cmake, CheckDIRSymbolExists.cmake,
	  CheckPrototypeExists.cmake, FindFontconfig.cmake,
	  FindFreetype.cmake, FindGD.cmake, FindPNG.cmake,
	  FindPTHREAD.cmake, FindXPM.cmake, TestForHighBitCharacters.c,
	  TestForHighBitCharacters.cmake, TestForStandardHeaderwait.cmake,
	  gd.cmake: - add missing cmake macros/modules

2007-01-24 01:36  pajoye

	* README.TESTING: - WS

2007-01-24 00:57  pajoye

	* tests/: gd2/CMakeLists.txt, gd2/conv_gd2_exp.gd2,
	  gd2/conv_test.gd2, gd2/conv_test_exp.png, gd2/empty.gd2,
	  gd2/gd2_empty_file.c, gd2/gd2_read.c,
	  gdimagecolorclosest/CMakeLists.txt,
	  gdimagecolorclosest/gdimagecolorclosest.c,
	  gdimagecolorexact/CMakeLists.txt,
	  gdimagecolorexact/gdimagecolorexact.c,
	  gdimagecolorresolve/CMakeLists.txt,
	  gdimagecolorresolve/gdimagecolorresolve.c,
	  gdimagecopy/CMakeLists.txt, gdimagecopy/bug00007.c,
	  gdimagecopyrotated/CMakeLists.txt, gdimagecopyrotated/bug00020.c,
	  gdimagecopyrotated/bug00020_exp.png, gdimagefill/CMakeLists.txt,
	  gdimagefill/bug00002_1.c, gdimagefill/bug00002_1_exp.png,
	  gdimagefill/bug00002_2.c, gdimagefill/bug00002_2_exp.png,
	  gdimagefill/bug00002_3.c, gdimagefill/bug00002_3_exp.png,
	  gdimagefill/bug00002_4.c, gdimagefill/bug00002_4_exp.png,
	  gdimagefilledellipse/CMakeLists.txt,
	  gdimagefilledellipse/bug00010.c,
	  gdimagefilledellipse/bug00010_exp.png,
	  gdimagefilledrectangle/CMakeLists.txt,
	  gdimagefilledrectangle/bug00004.c,
	  gdimagefilltoborder/CMakeLists.txt,
	  gdimagefilltoborder/bug00037.c, gdimageline/CMakeLists.txt,
	  gdimageline/gdimageline_aa.c,
	  gdimageline/gdimageline_aa_a_0_exp.png,
	  gdimageline/gdimageline_aa_a_1_exp.png,
	  gdimageline/gdimageline_aa_b_0_exp.png,
	  gdimageline/gdimageline_aa_b_1_exp.png,
	  gdimageline/gdimageline_aa_c_0_exp.png,
	  gdimageline/gdimageline_aa_c_1_exp.png,
	  gdimageline/gdimageline_aa_d_0_exp.png,
	  gdimageline/gdimageline_aa_d_1_exp.png,
	  gdimageline/gdimageline_aa_outofrange.c,
	  gdimagerectangle/CMakeLists.txt, gdimagerectangle/bug00003.c,
	  gdtest/CMakeLists.txt, gdtest/gdtest.c, gdtest/gdtest.h,
	  gdtiled/CMakeLists.txt, gdtiled/bug00032.c,
	  gdtiled/bug00032_exp.png, gif/CMakeLists.txt, gif/bug00005.c,
	  gif/bug00005_0.gif, gif/bug00005_1.gif, gif/bug00005_2.c,
	  gif/bug00005_2.gif, gif/bug00005_2_exp.png, gif/bug00005_3.gif,
	  gif/bug00006.c, jpeg/CMakeLists.txt, jpeg/conv_test.jpeg,
	  jpeg/conv_test_exp.png, jpeg/empty.jpeg, jpeg/jpeg_empty_file.c,
	  jpeg/jpeg_read.c, png/CMakeLists.txt, png/bug00011.c,
	  png/bug00033.c, png/bug00033.png, png/emptyfile: - initial commit
	  of the GD test suites    See README.TESTING for more details or
	  how to run it

2007-01-24 00:55  pajoye

	* tests/CMakeLists.txt: - initial commit of the GD test suites
	  See README.TESTING for more details or how to ru

2007-01-24 00:54  pajoye

	* CMakeLists.txt, README.TESTING: - initial commit of the GD test
	  suites   See README.TESTING for more details or how to run it

2007-01-24 00:45  pajoye

	* tests/: README, bug00001.c, bug00002_1.c, bug00002_2.c,
	  bug00002_3.c, bug00003.c, bug00004.c, bug00005.c, bug00005_1.gif,
	  bug00005_2.gif, bug00005_3.gif, bug00007.c, bug00008.c,
	  bug00010.c, bug00011.c, emptyfile: - remove temporary tests
	  before adding the tests suite

2007-01-20 03:09  pajoye

	* gd.c: - #4, gdImageFill rewrite fix, small images (< 4 pixels)
	  crash

2007-01-20 03:02  pajoye

	* gd.c: #37, gdImageFillToBorder crashes when used with alpha

2007-01-12 14:02  pajoye

	* gd.h: - prepare snap

2007-01-12 14:00  pajoye

	* circletexttest.c: - double config.h include removed (Edin)

2007-01-11 21:58  pajoye

	* gd_gif_in.c: - #7, part of the patch required for
	  http://bugs.php.net/bug.php?id=33220	 was missing. Thanks to
	  Nuno Lopes for the head up

2007-01-11 03:24  pajoye

	* gdcache.c: #14, another sanity check (catched by Takeshi
	  (tabe[at]fixedpoint[dot]jp))

2007-01-09 17:08  pajoye

	* ChangeLog: - update

2007-01-07 19:18  pajoye

	* gd_png.c: - #32, malformed PNG image crashes (CRC error)   test
	  is following

2007-01-06 14:48  pajoye

	* configure.ac: - older versions of auto* need quotes here

2007-01-05 05:11  pajoye

	* gd.c: - add sanity checks for alloc error in gdImageFill

2007-01-05 05:03  pajoye

	* tests/bug00002_3.c: - #2, #32, add transparent color to each
	  image (see #32)

2007-01-05 03:41  pajoye

	* tests/bug00002_3.c: - add a test to conver the case described in
	  issue #32   when a tile is a truecolor image, background of tiled
	  region is painted   black rather than transparent

2007-01-04 15:27  pajoye

	* README.TXT: - add bootstrap.sh note

2007-01-04 15:25  pajoye

	* COPYING: - add myself

2007-01-04 15:23  pajoye

	* makefile.sample: - remove outdated makefile.sample

2007-01-04 15:21  pajoye

	* index.html: - changelog, issues and the release announcements
	  will be used from now on

2007-01-04 15:10  pajoye

	* configure.ac, index.html: - update version nr - update links -
	  update bug report link

2007-01-04 14:45  pajoye

	* ISSUES: - windows build support entry (Edin)

2007-01-04 14:23  pajoye

	* ChangeLog: - update it

2007-01-04 13:52  pajoye

	* gdfx.c: - New line at the end of the file

2007-01-04 13:49  pajoye

	* gd_topal.c: #14, set fserror after the check

2007-01-04 13:44  pajoye

	* ISSUES, gd_gif_out.c: - #14, sanity check in gd_gif_out

2007-01-04 13:40  pajoye

	* gd_gd2.c: - #14, one more sanity check in gd_gd2

2007-01-04 13:36  pajoye

	* ISSUES, gd.c: - #14, sanity check for memory alloc error in
	  gdImageCreateTrueColor

2007-01-04 13:05  pajoye

	* README.TXT, configure.pl: - rm configure.pl, outdated anyway

2007-01-04 02:49  pajoye

	* ISSUES: - Update credentials

2007-01-04 02:24  pajoye

	* gdxpm.c: - #14, some more sanitiy check

2007-01-04 01:40  pajoye

	* ISSUES: - fix to match the issues #

2007-01-03 22:57  pajoye

	* ISSUES, gd_topal.c: #35, Added sanity checks for allocations
	  failure in gd_topal (yet another.)

2007-01-03 22:50  pajoye

	* gd_io.h, gd_io_ss.c: #33, sourceGetbuf must return 0 for errors
	  and EOF #34, Fixed gdSeek declaration, offset argument was
	  missing

2007-01-03 22:47  pajoye

	* ISSUES, gd_io_dp.c: #33, dynamicGetbuf must return 0 for errors
	  and EOF

2007-01-03 22:42  pajoye

	* ISSUES, gd_gd2.c: #32, Added sanity checks for allocations
	  failures in gd_gd2

2007-01-03 22:24  pajoye

	* ISSUES: #31, Added DISABLE_THREADS to permit disabling of thread
	  support      (John Ellson/Graphviz)

2007-01-03 22:21  pajoye

	* ISSUES, gdft.c: #30, uninitialized variable "charmap" and avoid
	  divide-by-zero errors      at very small dpi values (John
	  Ellson/Graphviz)

2007-01-03 22:04  pajoye

	* ISSUES, gdft.c: #28, Fixed gdImageStringFTEx when called with an
	  empty string	    Initialize the bounding box variables to zero
	  (Kevin Scaldeferri)

2007-01-03 21:56  pajoye

	* ISSUES, gdft.c: #26, gdFontCacheSetup returns error when
	  gdCacheCreate fails #27, Added sanity checks for possible
	  failures in fontFetch and	 tweenColorFetch

2007-01-03 21:50  pajoye

	* ISSUES, gdcache.c: #25, Added sanity checks for possible
	  allocation failures in gdCacheCreate	    and main

2007-01-03 21:45  pajoye

	* ISSUES, gd.c: #23,  Added sanity checks  for possible allocation
	  failures in	    gdImageFilledPolygon and gdImageSetStyle #24,
	  Out of range checks in gdImageSetAAPixelColor

2007-01-03 21:38  pajoye

	* gd.c: #22, missing immplementation

2007-01-03 21:34  pajoye

	* ISSUES, gd.c: #22, Fixed transparency preservation in
	  gdImageCopyRotated

2007-01-03 21:31  pajoye

	* ISSUES, gd.c: #21, gdImageCopyResized sanity check for allocation
	  failures

2007-01-03 21:25  pajoye

	* ISSUES, gd.c: #20, Fixed gdImageCopyMergeGray when used with a
	  true color image

2007-01-03 21:18  pajoye

	* ISSUES, gd.c: #19, Use abs instead of fbas in HWB_Diff (Nick
	  Atty)

2007-01-03 21:09  pajoye

	* ISSUES, gd.c: - #18, Removed invalid gdFree call when overflow2
	  fails - #17, Free im->pixels as well on error

2007-01-03 20:48  pajoye

	* ISSUES, entities.tcl: #17, Added "static" to entities_s struct
	  declaration to avoid obscure	    compiler problem on Suns (John
	  Ellson/Graphviz)

2007-01-03 20:42  pajoye

	* ISSUES, gd.c: - #16, Added sanity checks in gdImageCreate for
	  possible allocation	  failures (John Ellson/Graphviz)

2007-01-03 20:14  pajoye

	* ISSUES, gd_topal.c: - #15, gdImageCreatePaletteFromTrueColor(),
	  colors allocated henceforth from	  the resulting image
	  overwrite the palette colors (Rob Leslie)

2007-01-03 19:31  pajoye

	* ISSUES, gd_topal.c: - #14, Fixed leak in jinit_2pass_quantizer
	  (gd_topal.c)

2006-11-08 13:32  lhecking

	* ISSUES: Updated.

2006-11-08 13:23  pajoye

	* gd.c: - #7, gdImageCopy does not respect alpha (2/2)

2006-11-05 16:01  pajoye

	* ISSUES, gd_png.c: - #12, initialize the sig buf not infile, good
	  that we don't use getC...

2006-10-15 19:20  pajoye

	* ChangeLog: - initial cvs ChangeLog, will create a cronjob to
	  update it daily

2006-10-12 13:38  lhecking

	* Makefile.in, aclocal.m4, configure, config/Makefile.in,
	  test/Makefile.in: Remove generated files.

2006-10-12 13:36  lhecking

	* bootstrap.sh: Bootstrap script to generate auto* files.

2006-10-12 13:30  lhecking

	* .cvsignore, config/.cvsignore, test/.cvsignore: Update after
	  removal of generated files.

2006-10-11 11:46  lhecking

	* config/gdlib-config.in: Add @LIBICONV@ wherever @LIBS@ is used.

2006-10-11 02:03  pajoye

	* ISSUES: - #11 entry

2006-10-11 02:02  pajoye

	* gd_png.c, tests/bug00011.c, tests/emptyfile: - #11,
	  gdImageCreateFromPng* possible crash with empty file
	  Thanks to Antony Dovgal to have catched this bug

2006-10-10 02:40  pajoye

	* ISSUES, gd.c, tests/bug00010.c: - #10, gdImageFilledEllipse does
	  not respect transparency (rewriten)

2006-10-09 16:22  pajoye

	* ISSUES, Makefile.am, Makefile.in, aclocal.m4, config.hin,
	  configure, configure.ac, config/Makefile.in, config/config.guess,
	  config/config.sub, config/ltmain.sh, test/Makefile.in: - #9,
	  configure/build script updates auto* lib* (Lars Hecking)

2006-10-09 04:38  pajoye

	* ISSUES, tests/bug00008.c: - port another test for gdImageFill

2006-10-09 04:37  pajoye

	* tests/bug00007.c: - temp fp

2006-10-08 23:43  pajoye

	* ISSUES, gd.c, tests/bug00007.c: - #7, imagecopy doen't copy the
	  alpha channel, palette to truecolor copy

2006-10-08 18:42  pajoye

	* ISSUES, gd_gif_out.c, tests/bug00004.c: - #4, TrueColor
	  transparency with GIF palette output

2006-09-28 17:22  pajoye

	* ISSUES, gd_gif_in.c, tests/bug00005.c, tests/bug00005_1.gif,
	  tests/bug00005_2.gif, tests/bug00005_3.gif: - GIF security fixes

2006-09-28 10:16  pajoye

	* ISSUES, gd.c, tests/bug00003.c: - #3, gdImageRectanle draws the
	  corners twice

2006-09-28 02:32  pajoye

	* tests/bug00002_2.c: - #2, test with gdTile

2006-09-28 02:01  pajoye

	* ISSUES: - #2 entry

2006-09-28 01:58  pajoye

	* gd.c, tests/bug00002_1.c:
	  - #2, imagefill segfaults:  - when call with invalid index color
	  - segfaults or invalid result when used with complex patterns or
	  transparent color  (more tests to come)

2006-09-28 01:07  pajoye

	* tests/bug00001.c: - test case for bug #1

2006-09-28 01:05  pajoye

	* gdft.c: - #1, Initialize values this also provides a 5x speedup
	  in the imagefttext.phpt   test, because without this patch it
	  never got cache hits (Nuno Lopes)

2006-09-28 01:04  pajoye

	* ISSUES: - initial commit   temp file to store issue fixes
	  history. Will be replaced by the issue   tracker asap

2006-09-28 00:50  pajoye

	* aclocal.m4, configure: - Sync the generated version	TODO:
	  remove all generated files from CVS and add an autogen.sh script

2006-05-17 17:53  edink

	* windows/: .cvsignore, Makefile: Added nmake dist target

2006-05-17 17:27  edink

	* gdcmpgif.c: Fixed windows build

2006-05-17 17:26  edink

	* windows/Makefile: Compile more helper tools

2006-05-17 15:05  edink

	* windows/: Makefile, libgd.rc: Use bgd.dll name, and update
	  copyright info

2006-05-17 15:04  edink

	* gd.h: Added version info

2006-05-17 14:39  edink

	* windows/Makefile: "all" target should be the first

2006-05-17 14:34  edink

	* windows/: .cvsignore, Makefile, libgd.rc: Added MSVC++ build file
	  for use with nmake.exe

2006-05-17 11:15  edink

	* windows/.cvsignore: Added windows build dir

2006-05-17 10:43  edink

	* .cvsignore, config/.cvsignore, test/.cvsignore: Ignore build
	  files

2006-04-14 02:15  pajoye

	* tests/README: - as reminder, initila commit

2006-04-05 22:46  pajoye

	* gd_jpeg.c, wbmp.c: - URLs

2006-04-05 22:40  pajoye

	* configure.ac: - use the devel list in there

2006-04-05 22:14  pajoye

	* AUTHORS, ChangeLog, HISTORY, Makefile, Makefile.nt, NEWS, README,
	  alphachanneltest.html, antialiased.png, arc, bdf-howto.txt,
	  bresenham_ellipse, bwtest.png, config.guess, config.sub,
	  configure.in, demoout.gif, demoout.png, errs, gd-1.2.lsm, gd.1,
	  gd.ver, gd2tolzw.c, gd_arc_f.c, gd_arc_f_buggy.c, gd_lzw_out.c,
	  gdfonta.c, gdfonta.h, gdft.c.swp, gdparttogif.c, gdprog,
	  gdprog.1, gdtestttf.c, gdtogif.c, gdttf.c, giftogd.c, giftolzw.c,
	  io.c, io.h, io_dp.c, io_file.c, io_ss.c, libgd.so.2.0.0,
	  ltconfig, ltmain.sh, mathmake.c, mtables.c, readme.txt,
	  so_locations, tc, webgif.c: - remove files not present in 2.0.33

2006-04-05 19:21  pajoye

	* alphachanneltest.html: - testing loginfo/cvsspam

2006-04-05 19:12  pajoye

	* index.html: - update URLs and MLs

2006-04-05 17:56  pierre

	* config/Makefile.am, config/Makefile.in, config/config.guess,
	  config/config.rpath, config/config.sub, config/depcomp,
	  config/gdlib-config.in, config/install-sh, config/ltmain.sh,
	  config/missing, config/mkinstalldirs, test/Makefile.am,
	  test/Makefile.in, test/gdtest.gd2, test/gdtest.png,
	  test/gdtest_200_300_150_100.png, test/gdtest_merge.png,
	  test/gdtest_wbmp_to_png.png: - sync with 2.0.33

2006-04-05 17:55  pierre

	* circletexttest.c, configure, configure.ac, fontconfigtest.c,
	  gd2togif.c, gd2topng.c, gd_gif_out.c, gdcmpgif.c, gdft.c,
	  gdkanji.c, gifanimtest.c, index.html: - sync to 2.0.33

2006-04-05 17:55  pierre

	* configure, configure.ac, gd.c, gd_gif_in.c, gdft.c, gdtestft.c,
	  index.html, testtr.c: - sync to 2.0.32

2006-04-05 17:55  pierre

	* Makefile.in, aclocal.m4, configure, configure.ac, gdft.c,
	  index.html: - sync to 2.0.31

2006-04-05 17:54  pierre

	* configure, configure.ac, gd.h, gdft.c, index.html: - sync to
	  2.0.30

2006-04-05 17:54  pierre

	* Makefile.am, Makefile.in, circletexttest.c, config.hin,
	  configure, configure.ac, entities.h, entities.tcl, err.out,
	  fontconfigtest.c, fontsizetest.c, fontwheeltest.c, gd.c, gd.h,
	  gd2togif.c, gd_gd2.c, gd_gif_out.c, gd_io.h, gd_io_dp.c,
	  gd_jpeg.c, gd_png.c, gd_security.c, gd_topal.c, gd_wbmp.c,
	  gdcache.h, gdcmpgif.c, gdfontg.h, gdfontl.h, gdfontmb.h,
	  gdfonts.h, gdfontt.h, gdft.c, gdfx.c, gdfx.h, gdhelpers.c,
	  gdhelpers.h, gdxpm.c, gifanimtest.c, giftogd2.c, index.html,
	  jisx0208.h, makefile.sample, testtr.c, wbmp.c, wbmp.h: - sync to
	  2.0.29

2006-04-05 17:53  pierre

	* Makefile.am, Makefile.in, configure, configure.ac, gd.h,
	  gd_gif_in.c, gd_gif_out.c, gd_topal.c, gddemo.c, index.html,
	  testtr.c: - sync to 2.0.28

2006-04-05 17:53  pierre

	* configure, configure.ac, gd.c, gdft.c, index.html: - sync to
	  2.0.27

2006-04-05 17:53  pierre

	* Makefile.am, Makefile.in, config.hin, configure, configure.ac,
	  entities.h, entities.html, entities.tcl, fontwheeltest.c, gd.c,
	  gd.h, gddemo.c, gdft.c, index.html, testtr.c: - sync to 2.0.26

2006-04-05 17:52  pierre

	* configure, configure.ac, gd.h, gdfontg.h, gdfontl.h, gdfontmb.h,
	  gdfonts.h, gdfontt.h, index.html: - sync to 2.0.25

2006-04-05 17:52  pierre

	* annotate.c, configure, configure.ac, fontsizetest.c, gd.c, gd.h,
	  gd2time.c, gd_gd.c, gd_gd2.c, gd_io_dp.c, gd_io_file.c,
	  gd_io_ss.c, gd_jpeg.c, gd_png.c, gd_ss.c, gd_topal.c, gd_wbmp.c,
	  gdcache.h, gdfontg.c, gdfontg.h, gdfontl.c, gdfontl.h,
	  gdfontmb.c, gdfontmb.h, gdfonts.c, gdfonts.h, gdfontt.c,
	  gdfontt.h, gdft.c, gdfx.c, gdfx.h, gdhelpers.c, gdhelpers.h,
	  gdkanji.c, gdxpm.c, index.html, webpng.c: - sync to 2.0.24

2006-04-05 17:51  pierre

	* circletexttest.c, configure, configure.ac, gd.h, gd_gd2.c,
	  gd_io_dp.c, gd_jpeg.c, gd_png.c, gd_topal.c, gddemo.c, gdfontg.c,
	  gdfontl.c, gdfontmb.c, gdfonts.c, gdfontt.c, gdft.c, gdfx.c,
	  gdtest.c, index.html: - sync to 2.0.23

2006-04-05 17:51  pierre

	* Makefile.in, circletexttest.c, configure, configure.ac, gd.c,
	  gd_jpeg.c, gddemo.c, gdfontg.c, gdfontg.h, gdfontl.c, gdfontl.h,
	  gdfontmb.c, gdfontmb.h, gdfonts.c, gdfonts.h, gdfontt.c,
	  gdfontt.h, index.html: - sync to 2.0.22

2006-04-05 17:50  pierre

	* configure, configure.ac, gd.c, gd.h, gd_gd.c, gd_gd2.c,
	  gd_io_dp.c, gd_jpeg.c, gd_png.c, gd_wbmp.c, gdft.c, gdtest.c,
	  index.html: - sync to 2.0.21

2006-04-05 17:50  pierre

	* configure, configure.ac, gd.h, gdfontg.c, gdfontl.c, gdfontmb.c,
	  gdfonts.c, gdfontt.c, gdft.c, index.html: - sync to 2.0.20

2006-04-05 17:50  pierre

	* configure, configure.ac, gd.h, gdfontg.h, gdfontl.h, gdfonts.h,
	  index.html: - sync to 2.0.19

2006-04-05 17:50  pierre

	* circletexttest.c, configure, configure.ac, gd.h, gd_io.h,
	  gdcache.h, gdfontg.c, gdfontg.h, gdfontl.c, gdfontl.h,
	  gdfontmb.c, gdfontmb.h, gdfonts.c, gdfonts.h, gdfontt.c,
	  gdfontt.h, gdft.c, gdfx.h, gdhelpers.h, index.html: - sync to
	  2.0.18

2006-04-05 17:49  pierre

	* Makefile.am, Makefile.in, circletexttest.c, config.hin,
	  configure, configure.ac, gd.c, gd.h, gd_gd2.c, gd_io.c,
	  gd_io_file.c, gd_jpeg.c, gd_png.c, gd_topal.c, gdft.c, gdfx.c,
	  gdfx.h, gdhelpers.h, index.html: - sync to 2.0.17

2006-04-05 17:49  pierre

	* configure, configure.ac, gd.c, index.html: - sync to 2.0.15

2006-04-05 17:48  pierre

	* configure, configure.ac, gd.c, gd_jpeg.c, index.html: - sync to
	  2.0.14

2006-04-05 17:48  pierre

	* configure, configure.ac, gd.c, gd_gd2.c, gd_png.c, gdft.c,
	  index.html: - sync to 2.0.13

2006-04-05 17:47  pierre

	* Makefile.am, Makefile.in, annotate.c, config.hin, configure,
	  configure.ac, gd.c, gd.h, gd2topng.c, gd_gd.c, gd_gd2.c, gd_io.h,
	  gd_jpeg.c, gd_png.c, gd_topal.c, gdcache.c, gdcache.h, gddemo.c,
	  gdft.c, gdkanji.c, gdtest.c, gdtestft.c, gdtopng.c, index.html: -
	  sync to 2.0.12

2006-04-05 17:47  pierre

	* configure, configure.ac, gd.h, gd2topng.c, gd_gd2.c, gd_io.h,
	  gd_io_file.c, index.html, pngtogd2.c: - sync to 2.0.11

2006-04-05 17:47  pierre

	* Makefile.in, aclocal.m4, configure, configure.ac, depcomp, gd.c,
	  gd.h, gd_jpeg.c, gddemo.c, gdft.c, gdtestft.c, index.html,
	  install-sh, missing, mkinstalldirs: - sync to 2.0.10

2006-04-05 17:46  pierre

	* Makefile.in, aclocal.m4, annotate.c, config.hin, configure,
	  configure.ac, fontsizetest.c, fontwheeltest.c, gd.c, gd.h,
	  gd2time.c, gd2topng.c, gd_gd.c, gd_gd2.c, gd_io.h, gd_io_dp.c,
	  gd_io_file.c, gd_io_ss.c, gd_jpeg.c, gd_png.c, gd_ss.c,
	  gd_topal.c, gd_wbmp.c, gdcache.c, gdcache.h, gddemo.c, gdfontg.c,
	  gdfontg.h, gdfontl.c, gdfontl.h, gdfontmb.c, gdfontmb.h,
	  gdfonts.c, gdfonts.h, gdfontt.c, gdfontt.h, gdft.c, gdhelpers.h,
	  gdkanji.c, gdparttopng.c, gdtables.c, gdtest.c, gdtestft.c,
	  gdtopng.c, index.html, jisx0208.h, mathmake.c, pngtogd.c,
	  pngtogd2.c, testac.c, wbmp.c, wbmp.h, webpng.c: - sync to 2.0.9

2006-04-05 17:46  pierre

	* aclocal.m4, configure, configure.ac, gd.c, gd.h, gddemo.c,
	  index.html: - sync to 2.0.8

2006-04-05 17:45  pierre

	* configure, configure.ac, index.html: - sync to 2.0.7

2006-04-05 17:45  pierre

	* README.TXT, configure, configure.ac, gd.c, gd2copypal.c,
	  gd2topng.c, gdft.c, gdtestft.c, gdxpm.c, index.html, mathmake.c,
	  pngtogd.c, testac.c: - sync to 2.0.6

2006-04-05 17:44  pierre

	* COPYING, INSTALL, Makefile.am, Makefile.in, README.TXT,
	  aclocal.m4, annotate.c, config.hin, configure, configure.ac,
	  configure.pl, fontsizetest.c, fontwheeltest.c, gd.c, gd.h,
	  gd2copypal.c, gd2time.c, gd2topng.c, gd_gd.c, gd_gd2.c, gd_io.c,
	  gd_io_dp.c, gd_io_file.c, gd_io_ss.c, gd_jpeg.c, gd_png.c,
	  gd_ss.c, gd_topal.c, gd_wbmp.c, gdcache.c, gdcache.h, gddemo.c,
	  gdft.c, gdhelpers.c, gdkanji.c, gdparttopng.c, gdtest.c,
	  gdtestft.c, gdtopng.c, gdxpm.c, index.html, mathmake.c,
	  pngtogd.c, pngtogd2.c, testac.c, wbmp.c, webpng.c: - sync to
	  2.0.5

2006-04-05 17:44  pierre

	* configure, err.out, fontsizetest.c, fontwheeltest.c, gd.c, gd.h,
	  gd2topng.c, gd_gd.c, gd_gd2.c, gd_io.h, gd_io_dp.c, gd_io_file.c,
	  gd_io_ss.c, gd_jpeg.c, gd_png.c, gd_ss.c, gd_topal.c, gd_wbmp.c,
	  gdcache.h, gddemo.c, gdft.c, gdhelpers.c, gdhelpers.h, gdkanji.c,
	  gdparttopng.c, gdtest.c, gdtestft.c, gdtopng.c, gdxpm.c,
	  index.html, makefile.sample, testac.c, wbmp.c, webpng.c: - sync
	  to 2.0.4

2006-04-05 17:43  pierre

	* annotate.c, configure, gd.c, gd_gd2.c, index.html: - sync to
	  2.0.3

2006-04-05 17:43  pierre

	* README.TXT, configure, gd.c, gd.h, gddemo.c, gdft.c, gdtestft.c,
	  index.html, makefile.sample: - sync to 2.0.2

2006-04-05 17:42  pierre

	* Makefile, arc, bresenham_ellipse, gd.c, gd.h, gd2copypal.c,
	  gd2time.c, gd2topng.c, gd_arc_f_buggy.c, gd_gd.c, gd_gd2.c,
	  gd_io.c, gd_io_dp.c, gd_io_file.c, gd_io_ss.c, gd_jpeg.c,
	  gd_png.c, gd_ss.c, gd_topal.c, gd_wbmp.c, gdcache.c, gddemo.c,
	  gdfontg.c, gdfontl.c, gdfontmb.c, gdfonts.c, gdfontt.c, gdft.c,
	  gdhelpers.c, gdkanji.c, gdparttopng.c, gdtables.c, gdtest.c,
	  gdtestft.c, gdtopng.c, gdxpm.c, index.html, libgd.so.2.0.0,
	  mathmake.c, pngtogd.c, pngtogd2.c, readme.jpn, readme.txt,
	  testac.c, wbmp.c, webpng.c: - sync to 2.0.1

2006-04-05 17:42  pierre

	* Makefile, Makefile.nt, README-JPEG.TXT, alphachanneltest.html,
	  antialiased.png, errs, gd.c, gd.h, gd_arc_f.c, gd_gd.c, gd_gd2.c,
	  gd_jpeg.c, gd_png.c, gd_topal.c, gddemo.c, gdft.c, gdft.c.swp,
	  gdkanji.c, gdtestft.c, index.html, libgd.so.2.0.0, readme.txt,
	  tc, testac.c, webpng.c: - sync to 2.0.0

2006-04-05 17:41  pierre

	* Makefile, Makefile.nt, gd.c, gd.h, gd_gd2.c, gd_io.c, gd_io_dp.c,
	  gd_io_file.c, gd_io_ss.c, gd_jpeg.c, gd_png.c, gd_wbmp.c,
	  gdcache.c, gdft.c, gdhelpers.c, gdhelpers.h, gdkanji.c,
	  gdtestft.c, gdtestttf.c, gdttf.c, gdxpm.c, index.html,
	  readme.txt, wbmp.c, wbmp.h: - sync to 1.8.4

2006-04-05 17:41  pierre

	* Makefile, bwtest.png, gd.c, gd.h, gd_jpeg.c, gd_png.c, gd_wbmp.c,
	  gdtest.c, index.html, install-item, readme.txt, wbmp.c, wbmp.h: -
	  sync to 1.8.3

2006-04-05 17:40  pierre

	* Makefile, Makefile.nt, bdftogd, gd_jpeg.c, gdtest.c, index.html,
	  readme.txt, webpng.c: - sync to 1.8.1

2006-04-05 17:40  pierre

	* Makefile, gd.c, gd.h, gd_jpeg.c, gd_wbmp.c, gdtest.c, index.html,
	  readme.txt: - sync to 1.8.0

2006-04-05 17:39  pierre

	* Makefile, index.html, readme.txt: - sync to 1.7.3

2006-04-05 17:39  pierre

	* Makefile, gdttf.c, index.html, readme.txt: - sync to 1.7.2

2006-04-05 17:38  pierre

	* ChangeLog, Makefile, gdtestttf.c, index.html, readme.txt: - sync
	  to 1.7.1

2006-04-05 17:38  pierre

	* ChangeLog, Makefile, bdftogd, demoout.png, gd.c, gd.h, gd_gd2.c,
	  gd_io_dp.c, gd_io_file.c, gd_io_ss.c, gddemo.c, gdfontg.h,
	  gdfontl.h, gdfontmb.h, gdfonts.h, gdfontt.h, gdkanji.c,
	  gdtables.c, gdtestttf.c, gdttf.c, gdxpm.c, index.html,
	  jisx0208.h, readme.txt: - sync to 1.7.0

2006-04-05 17:37  pierre

	* COPYING, ChangeLog, NEWS, README, configure, configure.in,
	  gd_png.c, index.html, mkinstalldirs: - sync to 1.6.3

2006-04-05 17:37  pierre

	* AUTHORS, COPYING, ChangeLog, INSTALL, Makefile.am, Makefile.in,
	  NEWS, README, aclocal.m4, config.guess, config.sub, configure,
	  configure.in, gd.c, gd.h, gd2copypal.c, gd2time.c, gd2topng.c,
	  gd_gd.c, gd_gd2.c, gd_io_dp.c, gd_png.c, gdcache.c, gdcache.h,
	  gdparttopng.c, gdtest.c, gdtestttf.c, gdtopng.c, gdttf.c,
	  index.html, install-sh, ltconfig, ltmain.sh, missing,
	  mkinstalldirs, pngtogd.c, pngtogd2.c, webpng.c: - sync to 1.6.2

2006-04-05 17:36  pierre

	* HISTORY, gd.h, gd_png.c, index.html, readme.txt: - sync to 1.6.1

2006-04-05 17:35  pierre

	* HISTORY, Makefile, demoin.png, demoout.png, gd.c, gd.h,
	  gd2copypal.c, gd2time.c, gd2topng.c, gd_gd.c, gd_gd2.c, gd_io.c,
	  gd_io.h, gd_io_dp.c, gd_io_file.c, gd_io_ss.c, gd_png.c, gd_ss.c,
	  gddemo.c, gdparttopng.c, gdtest.c, gdtopng.c, index.html,
	  pngtogd.c, pngtogd2.c, readme.txt, webpng.c: - sync to 1.6.0

2006-04-05 17:35  pierre

	* HISTORY, Makefile, bdftogd, gd.c, gd.h, gd2copypal.c, gd2time.c,
	  gd2togif.c, gd2tolzw.c, gd_gd.c, gd_gd2.c, gd_gif_in.c,
	  gd_gif_out.c, gd_lzw_out.c, gdparttogif.c, gdtest.c, gdtogif.c,
	  giftogd2.c, giftolzw.c, index.html, io.c, io.h, io_dp.c,
	  io_file.c, io_ss.c, readme.txt: - sync to 1.5.0

2006-04-05 17:34  pierre

	* Makefile, bdf-howto.txt, bdftogd, gd.c, gd.h, gdfonta.c,
	  gdfonta.h, index.html, readme.txt: - sync to 1.4.0

2006-04-05 17:33  pierre

	* Makefile, bdftogd, demoin.gif, demoout.gif, gd.c, gd.h, gddemo.c,
	  gdfontg.c, gdfontg.h, gdfontl.c, gdfontl.h, gdfontmb.c,
	  gdfontmb.h, gdfonts.c, gdfonts.h, gdfontt.c, gdfontt.h,
	  giftogd.c, index.html, mathmake.c, mtables.c, readme.txt,
	  so_locations, webgif.c: - sync to 1.3.0

2006-04-05 17:28  pierre

	* INSTALL, Makefile, README, gd-1.2.lsm, gd.1, gd.ver, gdprog,
	  gdprog.1: Initial revision

2006-04-05 17:28  pierre

	* INSTALL, Makefile, README, gd-1.2.lsm, gd.1, gd.ver, gdprog,
	  gdprog.1: initial import