mirror of
https://github.com/php/php-src.git
synced 2024-11-23 09:54:15 +08:00
f66feaec0f
This syncs all help texts of extension preprocessor macros to the same style "Define to 1 if the PHP extension '<ext>' is available.". [skip ci]
18 lines
539 B
JavaScript
18 lines
539 B
JavaScript
// vim:ft=javascript
|
|
|
|
ARG_WITH("bz2", "BZip2", "no");
|
|
|
|
if (PHP_BZ2 != "no") {
|
|
if (CHECK_LIB("libbz2_a.lib;libbz2.lib", "bz2", PHP_BZ2) &&
|
|
CHECK_HEADER_ADD_INCLUDE("bzlib.h", "CFLAGS_BZ2")) {
|
|
EXTENSION("bz2", "bz2.c bz2_filter.c");
|
|
AC_DEFINE('HAVE_BZ2', 1, "Define to 1 if the PHP extension 'bz2' is available.");
|
|
// BZ2 extension does this slightly differently from others
|
|
if (PHP_BZ2_SHARED) {
|
|
ADD_FLAG("CFLAGS_BZ2", "/D PHP_BZ2_EXPORTS ");
|
|
}
|
|
} else {
|
|
WARNING("bz2 not enabled; libraries and headers not found");
|
|
}
|
|
}
|