Hi, coders. There are some problems running "make test" on other platforms. Specifically, win32.
When testing for CPP defines, in order to adjust test parameters, the test scripts could do a better job of matching. At the present, the following line will match : /* #define USE_OPENSSL */ Which is clearly intended to not be defined. That construct appears when using the Perl Configure script to build the win32 MSVC versions of the Net-SNMP applications. To alleviate the problem, the "grep" lines in testing/eval_tools.sh testing/tests/Sv3config were changed from : grep "define yadda" to grep "^#define yadda" This is not a complete solution, as the tests search for CPP define "HAVE_AES" , which always match this fragment from acconfig.h, net-snmp-config.h.in: #if defined(USE_OPENSSL) && defined(HAVE_OPENSSL_AES_H) && defined(HAVE_AES_CFB128_ENCRYPT) #define HAVE_AES 1 #endif ------------------------------------------------------- This SF.Net email is sponsored by: YOU BE THE JUDGE. Be one of 170 Project Admins to receive an Apple iPod Mini FREE for your judgement on who ports your project to Linux PPC the best. Sponsored by IBM. Deadline: Sept. 13. Go here: http://sf.net/ppc_contest.php _______________________________________________ Net-snmp-coders mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/net-snmp-coders
