From: Anatol Belski Date: Wed, 12 Mar 2014 18:30:27 +0000 (+0100) Subject: made libgd recognize the 9 version series X-Git-Tag: php-5.5.11RC1~11 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3f049bcff2e00b118445752f7e651895ba9bea87;p=php made libgd recognize the 9 version series --- diff --git a/ext/gd/libgd/gd_jpeg.c b/ext/gd/libgd/gd_jpeg.c index a882b28c88..7189c28b58 100644 --- a/ext/gd/libgd/gd_jpeg.c +++ b/ext/gd/libgd/gd_jpeg.c @@ -122,6 +122,10 @@ const char * gdJpegGetVersionString() return "8"; break; + case 90: + return "9 compatible"; + break; + default: return "unknown"; }