diff options
author | Remi Collet <remi@php.net> | 2013-04-24 16:15:42 +0200 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2013-04-24 16:15:42 +0200 |
commit | 26bd2cba815e01d9c20beba9b36d64fe27ce5740 (patch) | |
tree | dd1cac1edf2e81481b1cbcef78680e54082db48c | |
parent | 3a8ceed844910146398572d1336ac1c23c5006f2 (diff) | |
download | php-git-26bd2cba815e01d9c20beba9b36d64fe27ce5740.tar.gz |
gd: missing headers in previous
-rw-r--r-- | ext/gd/php_gd.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ext/gd/php_gd.h b/ext/gd/php_gd.h index 3c60007a78..c42ebade13 100644 --- a/ext/gd/php_gd.h +++ b/ext/gd/php_gd.h @@ -123,9 +123,12 @@ PHP_FUNCTION(imagegrabscreen); PHP_FUNCTION(imagerotate); +#ifdef HAVE_GD_IMAGE_FLIP +PHP_FUNCTION(imageflip); +#endif + #ifdef HAVE_GD_BUNDLED PHP_FUNCTION(imageantialias); -PHP_FUNCTION(imageflip); PHP_FUNCTION(imagecrop); PHP_FUNCTION(imagecropauto); PHP_FUNCTION(imagescale); |