1
0
Fork 0
mirror of https://github.com/puma/puma.git synced 2022-11-09 13:48:40 -05:00

Use the correct Windows names for OpenSSL.

This commit is contained in:
Joel Low 2014-07-12 09:49:51 +08:00
parent 79e1f6c7ff
commit 8f9dc99e91

View file

@ -4,8 +4,8 @@ dir_config("puma_http11")
$defs.push "-Wno-deprecated-declarations"
if %w'ssl ssleay'.find {|ssl| have_library(ssl, 'SSL_CTX_new')} and
%w'crypto libeay'.find {|crypto| have_library(ssl, 'BIO_read')}
if %w'ssl ssleay32'.find {|ssl| have_library(ssl, 'SSL_CTX_new')} and
%w'crypto libeay32'.find {|crypto| have_library(ssl, 'BIO_read')}
create_makefile("puma/puma_http11")
end