RE: Compiler does not find INT_MAX - thank you!
Thank to all who responeded! Regards, Martin __ OpenSSL Project http://www.openssl.org User Support Mailing List[EMAIL PROTECTED] Automated List Manager
RE: Compiler does not find INT_MAX
Title: RE: Compiler does not find INT_MAX Hi, As far as I know, it comes from /usr/include/limits.h in Linux (probably the same on other Unix'es), unless it has been redefined somewhere else in openssl. INT_MAX is defined as: #define INT_MAX 2147483637 Hope this helps, Re