K 10 svn:author V 7 sunpoet K 8 svn:date V 27 2015-01-01T16:10:48.488369Z K 7 svn:log V 598 - Fix OSVERSION and WITH_OPENSSL_PORT check We have 4 cases: 1. OSVERSION >= 1000000 and WITH_OPENSSL_PORT undefined 2. OSVERSION >= 1000000 and WITH_OPENSSL_PORT defined 3. OSVERSION < 1000000 and WITH_OPENSSL_PORT undefined 4. OSVERSION < 1000000 and WITH_OPENSSL_PORT defined nghttp2 builds fine in first 2 cases, and it fails in last 2 cases. The ".elif defined(WITH_OPENSSL_PORT)" in r347801 matches case 2 and 4, therefore users of case 2 are affected. We simplify the check to OSVERSION only since there is no need to check OpenSSL version. Notified by: Beeblebrox END