#19124: neon: build failure because openssl does not provide _SSL_SESSION_cmp -------------------------------------+-------------------------------------- Reporter: akim.demaille@… | Owner: macports-tickets@… Type: defect | Status: new Priority: Normal | Milestone: Port Bugs Component: ports | Version: 1.7.1 Keywords: | Port: -------------------------------------+-------------------------------------- Comment(by akim.demaille@…): Replying to [comment:1 dluke@…]:
I think we should roll back openssl to the non-beta 0.9.8k release (and perhaps have openssl-devel for the 1.0.0-beta).
Well, that would be nice, I'm quite stuck now. Subversion is broken etc. I added this in neon to have it compile: {{{ int SSL_SESSION_cmp(const SSL_SESSION *a,const SSL_SESSION *b) { if (a->ssl_version != b->ssl_version) return(1); if (a->session_id_length != b->session_id_length) return(1); return(memcmp(a->session_id,b->session_id,a->session_id_length)); } }}} -- Ticket URL: <http://trac.macports.org/ticket/19124#comment:3> MacPorts <http://www.macports.org/> Ports system for Mac OS