Server IP : 23.254.227.96 / Your IP : 216.73.216.7 Web Server : Apache/2.4.62 (Unix) OpenSSL/1.1.1k System : Linux hwsrv-1277026.hostwindsdns.com 4.18.0-477.13.1.el8_8.x86_64 #1 SMP Tue May 30 14:53:41 EDT 2023 x86_64 User : viralblo ( 1001) PHP Version : 8.1.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/local/src/imagick/util/ |
Upload File : |
<?php // Run with something like: // export CFLAGS=$(php util/calculate_cflags.php "8.1" "7.1.0-17") // where the first number is the PHP version, and the second number // is the ImageMagick version number if ($argc !== 3) { fwrite(STDERR, "usage php calculate_cflags.php \$PHP_VERSION \$IMAGEMAGICK_VERSION \n"); exit(-1); } $PHP_VERSION = $argv[1]; $IMAGEMAGICK_VERSION = $argv[2]; $message = sprintf( "Calculating for PHP_VERSION [%s] IMAGEMAGICK_VERSION [%s]\n", $PHP_VERSION, $IMAGEMAGICK_VERSION ); fwrite(STDERR, $message); $CFLAGS = array( "-Wno-deprecated-declarations", "-Werror", "-Wall", "-Wextra", "-Wimplicit-function-declaration", "-Wno-variadic-macros", "-Wformat" ); if (strpos($IMAGEMAGICK_VERSION, "7.1.1") === 0 || strpos($IMAGEMAGICK_VERSION, "git7") === 0) { // The definition of channel changed to be a non-negative number, which // results in this code: // // if (((ssize_t) channel < 0) || ((ssize_t) channel >= MaxPixelChannels)) // // giving this error: // error: comparison is always false due to limited range of data type [-Werror=type-limits] $CFLAGS[] = "-Wno-type-limits"; } if (strpos($IMAGEMAGICK_VERSION, "6") === 0 || strpos($IMAGEMAGICK_VERSION, "git6") === 0) { $CFLAGS[] = "-Wno-sign-compare"; $CFLAGS[] = "-Wno-unused-parameter"; } if (strpos($IMAGEMAGICK_VERSION, "6.8") === 0) { $CFLAGS = array("-Wno-deprecated-declarations"); } if (strpos($IMAGEMAGICK_VERSION, "6.9") === 0) { $CFLAGS[] = "-Wno-unused-variable"; } if ($PHP_VERSION == "5.6") { $CFLAGS = array( "-Wno-deprecated-declarations", "-Wdeclaration-after-statement", "-Werror", "-Wall", "-Wimplicit-function-declaration" ); } $result = implode(" ", $CFLAGS); echo $result; fwrite(STDERR, "Ok. CFLAGS are: $result\n");