We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb8c3cb commit 09957abCopy full SHA for 09957ab
NEWS
@@ -14,6 +14,9 @@ PHP NEWS
14
- Dom:
15
. Fixed bug GH-14702 (DOMDocument::xinclude() crash). (nielsdos)
16
17
+- Gd:
18
+ . ext/gd/tests/gh10614.phpt: skip if no PNG support. (orlitzky)
19
+
20
- LibXML:
21
. Fixed bug GH-14563 (Build failure with libxml2 v2.13.0). (nielsdos)
22
ext/gd/tests/gh10614.phpt
@@ -5,6 +5,9 @@ gd
5
--SKIPIF--
6
<?php
7
if (!GD_BUNDLED && version_compare(GD_VERSION, '2.3.4', '>=')) die("skip test requires GD 2.3.4 or older");
8
+if (!(imagetypes() & IMG_PNG)) {
9
+ die("skip No PNG support");
10
+}
11
?>
12
--FILE--
13
0 commit comments