Project

General

Profile

Bug #9817

Updated by nobu (Nobuyoshi Nakada) almost 9 years ago

It appears that the extconf.rb file for openssl assumes mingw. The problem is that gdi32 and wsock32 need to be linked, even for Visual Studio. 

 The simple fix is to change "`if $mingw`" "if $mingw" to "`if File::ALT_SEPARATOR`" "if File::ALT_SEPARATOR" on line 40. 

Back