From: MySQL y. m. <my...@us...> - 2006-05-05 08:32:13
|
Update of /cvsroot/yassl/yassl/testsuite In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18195 Modified Files: test.hpp Log Message: Only define socklen_t if not already defined Index: test.hpp =================================================================== RCS file: /cvsroot/yassl/yassl/testsuite/test.hpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** test.hpp 24 Apr 2006 21:55:04 -0000 1.2 --- test.hpp 5 May 2006 08:32:04 -0000 1.3 *************** *** 28,32 **** ! #if defined(__MACH__) || defined(_WIN32) typedef int socklen_t; #endif --- 28,32 ---- ! #if !defined(_SOCKLEN_T) && (defined(__MACH__) || defined(_WIN32)) typedef int socklen_t; #endif |