cvs: gd /libgd NEWS /libgd/src gdft.c
[email protected] ("Takeshi Abe") Wed, 15 Apr 2009 16:19:15 -0000
| Newsgroups | php.gd.cvs |
|---|---|
| Message-ID | <cvstabe1239812355@cvsserver> |
tabe Wed Apr 15 16:19:15 2009 UTC
Modified files:
/gd/libgd NEWS
/gd/libgd/src gdft.c
Log:
fixed FS#199
http://cvs.php.net/viewvc.cgi/gd/libgd/NEWS?r1=1.8&r2=1.9&diff_format=u
Index: gd/libgd/NEWS
diff -u gd/libgd/NEWS:1.8 gd/libgd/NEWS:1.9
--- gd/libgd/NEWS:1.8 Sat Apr 4 12:00:37 2009
+++ gd/libgd/NEWS Wed Apr 15 16:19:15 2009
@@ -32,6 +32,7 @@
186, Fixed tiling true colour with palette image (Marko Vukovic, Takeshi Abe)
193, Fixed gdImagePng() with no color allocated (Martin McNickle, Takeshi Abe)
196, Fixed a memory leak in newDynamic() (Steve Fossen)
+199, Fixed useFontConfig() to work as documented (Ethan Merritt)
GD 2.0.35 (2007-06-21)
41, Fix valgrind error in gdImageFillTiled (Nuno Lopes)
http://cvs.php.net/viewvc.cgi/gd/libgd/src/gdft.c?r1=1.39&r2=1.40&diff_format=u
Index: gd/libgd/src/gdft.c
diff -u gd/libgd/src/gdft.c:1.39 gd/libgd/src/gdft.c:1.40
--- gd/libgd/src/gdft.c:1.39 Wed Mar 25 17:02:01 2009
+++ gd/libgd/src/gdft.c Wed Apr 15 16:19:15 2009
@@ -1688,7 +1688,7 @@
BGD_DECLARE(int) gdFTUseFontConfig(int flag)
{
#ifdef HAVE_LIBFONTCONFIG
- fontConfigFlag = 1;
+ fontConfigFlag = flag;
return 1;
#else
return 0;