mirror of
https://github.com/php/php-src.git
synced 2026-04-01 13:12:16 +02:00
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]
13 lines
318 B
JavaScript
13 lines
318 B
JavaScript
// vim:ft=javascript
|
|
|
|
ARG_WITH("openssl", "OpenSSL support", "no,shared");
|
|
|
|
if (PHP_OPENSSL != "no") {
|
|
var ret = SETUP_OPENSSL("openssl", PHP_OPENSSL);
|
|
|
|
if (ret >= 2) {
|
|
EXTENSION("openssl", "openssl.c xp_ssl.c");
|
|
AC_DEFINE("HAVE_OPENSSL_EXT", 1, "Define to 1 if the PHP extension 'openssl' is available.");
|
|
}
|
|
}
|