Re: missing macro timerisset() while crosscompile
There are also more duplicate timer calc macros: from include/net-snmp/library/tools.h #define NETSNMP_TIMERADD(a, b, res) \ {\ (res)->tv_sec = (a)->tv_sec + (b)->tv_sec; \ (res)->tv_usec = (a)->tv_usec + (b)->tv
missing macro timerisset() while crosscompile
Hi, I had an unresolved function timerisset() with net-snmp v5.4.4 code with our embeded OS. Looking around, I found more then one definitions of this macros, but timerisset() was missing. This patch helps and prevent warnings of unused vars at snmplib/ snmp_api.c. fix_missing_timeri