mirror of
https://github.com/php/php-src.git
synced 2024-11-27 11:53:33 +08:00
1b969a74d0
- HAVE_NET_SNMP removed viacab643f615
- HAVE_CRYPTO_AEAD_AES256GCMad120c5ae9
- Remove HAVE_FREETDS and HAVE_LIBDNET_STUB (not used in current extension; copy paste from other removed extensions) Closes GH-4448
18 lines
510 B
JavaScript
18 lines
510 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) > 0) {
|
|
if (CHECK_LIB("netsnmp.lib", "snmp", PHP_SNMP)) {
|
|
EXTENSION('snmp', 'snmp.c');
|
|
AC_DEFINE('HAVE_SNMP', 1);
|
|
} else {
|
|
WARNING("snmp not enabled; libraries and headers not found");
|
|
}
|
|
} else {
|
|
WARNING("snmp not enabled; libraries and headers not found");
|
|
}
|
|
}
|