Fix compile problems without ssl
git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-1.4.x@2656 152afb58-edef-0310-8abb-c4023f1b3aa9
This commit is contained in:
parent
b987643307
commit
1aaa67bb9b
|
@ -311,7 +311,9 @@ int config_setup_connection(server *srv, connection *con) {
|
|||
PATCH(is_ssl);
|
||||
|
||||
PATCH(ssl_pemfile);
|
||||
#ifdef USE_OPENSSL
|
||||
PATCH(ssl_ctx);
|
||||
#endif
|
||||
PATCH(ssl_ca_file);
|
||||
PATCH(ssl_cipher_list);
|
||||
PATCH(ssl_use_sslv2);
|
||||
|
@ -372,7 +374,9 @@ int config_patch_connection(server *srv, connection *con, comp_key_t comp) {
|
|||
PATCH(etag_use_size);
|
||||
} else if (buffer_is_equal_string(du->key, CONST_STR_LEN("ssl.pemfile"))) {
|
||||
PATCH(ssl_pemfile);
|
||||
#ifdef USE_OPENSSL
|
||||
PATCH(ssl_ctx);
|
||||
#endif
|
||||
} else if (buffer_is_equal_string(du->key, CONST_STR_LEN("ssl.ca-file"))) {
|
||||
PATCH(ssl_ca_file);
|
||||
} else if (buffer_is_equal_string(du->key, CONST_STR_LEN("ssl.use-sslv2"))) {
|
||||
|
|
Loading…
Reference in New Issue