Changeset 1903

Show
Ignore:
Timestamp:
08/26/08 11:48:20 (3 months ago)
Author:
alo
Message:

--

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • cherokee/trunk/ChangeLog

    r1896 r1903  
    112008-08-25  Alvaro Lopez Ortega  <alvaro@alobbs.com> 
     2 
     3        * cherokee/virtual_server.c: There was a wrong #ifdef that made 
     4        the build to fail if compiling without OpenSSL. Patch by Rui Lopes 
     5        <rgl@ruilopes.com> 
    26 
    37        * cherokee/http.h (http_method_with_input): PUT has also 
  • cherokee/trunk/cherokee/virtual_server.c

    r1893 r1903  
    284284 
    285285 
    286 #ifdef HAVE_TLS 
     286#ifdef HAVE_GNUTLS 
    287287static int 
    288288gnutls_sni_servername_cb (gnutls_session_t  session,  
     
    338338        return 0; 
    339339} 
    340 #endif 
    341  
    342 # ifdef HAVE_GNUTLS 
     340 
    343341static int 
    344342set_x509_key_file (cherokee_virtual_server_t *vsrv) 
     
    508506        } 
    509507 
     508#  ifndef OPENSSL_NO_TLSEXT 
    510509        /* Enable SNI 
    511510         */ 
     
    523522                return ret_error; 
    524523        } 
     524#  endif /* OPENSSL_NO_TLSEXT */ 
    525525# endif 
    526526#else