mirror of
https://github.com/php/php-src.git
synced 2024-11-23 09:54:15 +08:00
41709ac89f
The mbstring extension requires the pcre extension and snmp extension requires the spl extension.
19 lines
605 B
JavaScript
19 lines
605 B
JavaScript
// vim:ft=javascript
|
|
|
|
ARG_WITH("snmp", "SNMP support", "no");
|
|
|
|
if (PHP_SNMP != "no") {
|
|
if (CHECK_HEADER_ADD_INCLUDE("snmp.h", "CFLAGS_SNMP", PHP_PHP_BUILD + "\\include\\net-snmp;" + PHP_SNMP) &&
|
|
SETUP_OPENSSL("snmp", PHP_SNMP) >= 2) {
|
|
if (CHECK_LIB("netsnmp.lib", "snmp", PHP_SNMP)) {
|
|
EXTENSION('snmp', 'snmp.c');
|
|
ADD_EXTENSION_DEP('snmp', 'spl');
|
|
AC_DEFINE('HAVE_SNMP', 1, "Define to 1 if the PHP extension 'snmp' is available.");
|
|
} else {
|
|
WARNING("snmp not enabled; libraries and headers not found");
|
|
}
|
|
} else {
|
|
WARNING("snmp not enabled; libraries and headers not found");
|
|
}
|
|
}
|