diff options
| author | foobar <sniper@php.net> | 2002-10-17 06:39:55 +0000 |
|---|---|---|
| committer | foobar <sniper@php.net> | 2002-10-17 06:39:55 +0000 |
| commit | 9870028d05c8bea71f2b08bcfa156cab7a790284 (patch) | |
| tree | ba6e18e70697a4c0a7b8c2a0a2987fe491c61d75 /ext/snmp/snmp.c | |
| parent | de597eb3c675f315ff26092cc012693f534a0fd7 (diff) | |
| download | php-git-9870028d05c8bea71f2b08bcfa156cab7a790284.tar.gz | |
Fix this for Wez and his antique ucd-snmp
Diffstat (limited to 'ext/snmp/snmp.c')
| -rw-r--r-- | ext/snmp/snmp.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ext/snmp/snmp.c b/ext/snmp/snmp.c index 32f104ccd6..5a0ee9dffe 100644 --- a/ext/snmp/snmp.c +++ b/ext/snmp/snmp.c @@ -90,6 +90,11 @@ #include "version.h" #endif +/* For really old ucd-snmp versions.. */ +#ifndef HAVE_SNMP_PARSE_OID +#define snmp_parse_oid read_objid +#endif + /* ucd-snmp 3.3.1 changed the name of a few #defines... They've been changed back to the original ones in 3.5.3! */ #ifndef SNMP_MSG_GET #define SNMP_MSG_GET GET_REQ_MSG |
