1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* ext/openssl/extconf.rb: better support MinGW. add

dir_config("kerberos") and with_config("pkg-config).


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4181 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
eban 2003-07-27 12:19:18 +00:00
parent f5b3d426c8
commit 39bc97b078
2 changed files with 20 additions and 10 deletions

View file

@ -1,3 +1,8 @@
Sun Jul 27 21:16:30 2003 WATANABE Hirofumi <eban@ruby-lang.org>
* ext/openssl/extconf.rb: better support MinGW. add
dir_config("kerberos") and with_config("pkg-config).
Sun Jul 27 14:43:37 2003 NAKAMURA, Hiroshi <nahi@ruby-lang.org>
* lib/debug.rb: fix breakpoint parameter parsing/checking.

View file

@ -17,7 +17,8 @@
require "mkmf"
dir_config("openssl")
dir_config("kerberos")
pkgconfig = with_config("pkg-config", !CROSS_COMPILING && "pkg-config")
message "=== OpenSSL for Ruby configurator ===\n"
@ -66,15 +67,19 @@ have_header("unistd.h")
have_header("sys/time.h")
message "=== Checking for required stuff... ===\n"
if find_executable("pkg-config") and system("pkg-config", "--exists", "openssl")
$CFLAGS += " " << `pkg-config --cflags openssl`.chomp
$DLDFLAGS += " " << `pkg-config --libs-only-L openssl`.chomp
$LIBS += " " << `pkg-config --libs-only-l openssl`.chomp
else
result = have_header("openssl/crypto.h")
result &= %w[crypto libeay32].any? {|lib| have_library(lib, "OpenSSL_add_all_digests")}
result &= %w[ssl ssleay32].any? {|lib| have_library(lib, "SSL_library_init")}
if !result
if $mingw
have_library("wsock32")
have_library("gdi32")
end
result = have_header("openssl/ssl.h")
result &&= %w[crypto libeay32].any? {|lib| have_library(lib, "OpenSSL_add_all_digests")}
result &&= %w[ssl ssleay32].any? {|lib| have_library(lib, "SSL_library_init")}
if !result
if find_executable(pkgconfig) and system(pkgconfig, "--exists", "openssl")
$CFLAGS += " " << `#{pkgconfig} --cflags openssl`.chomp
$DLDFLAGS += " " << `#{pkgconfig} --libs-only-L openssl`.chomp
$LIBS += " " << `#{pkgconfig} --libs-only-l openssl`.chomp
else
message "=== Checking for required stuff failed. ===\n"
message "Makefile wasn't created. Fix the errors above.\n"
exit 1