https://bz.apache.org/bugzilla/show_bug.cgi?id=62122

            Bug ID: 62122
           Summary: undefined symbol: SSL_COMP_free_compression_methods
           Product: Tomcat Native
           Version: 1.2.14
          Hardware: PC
                OS: Linux
            Status: NEW
          Severity: major
          Priority: P2
         Component: Library
          Assignee: dev@tomcat.apache.org
          Reporter: jbal...@akamai.com
  Target Milestone: ---

OpenSSL 1.1.0 removed this function,
https://www.openssl.org/docs/man1.1.0/ssl/SSL_COMP_free_compression_methods.html
 

native/src/ssl.c

366 #if OPENSSL_VERSION_NUMBER >= 0x1000200fL
367     SSL_COMP_free_compression_methods();
368 #endif

this will need to be patched, suggestion below this is untested:

366 #if OPENSSL_VERSION_NUMBER >= 0x1000200fL && OPENSSL_VERSION_NUMBER <
0x10100000L 
367     SSL_COMP_free_compression_methods();
368 #endif

-- 
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to