mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* ext/openssl/extconf.rb: check again after pkg-config for MinGW on
Cygwin. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4192 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
dea1baa169
commit
906ab8e25d
2 changed files with 8 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
Mon Jul 28 18:53:03 2003 WATANABE Hirofumi <eban@ruby-lang.org>
|
||||||
|
|
||||||
|
* ext/openssl/extconf.rb: check again after pkg-config for MinGW on
|
||||||
|
Cygwin.
|
||||||
|
|
||||||
Mon Jul 28 15:32:04 2003 Yukihiro Matsumoto <matz@ruby-lang.org>
|
Mon Jul 28 15:32:04 2003 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||||
|
|
||||||
* ext/stringio/stringio.c (strio_gets): only "gets" should set $_.
|
* ext/stringio/stringio.c (strio_gets): only "gets" should set $_.
|
||||||
|
|
|
@ -79,7 +79,9 @@ if !result
|
||||||
$CFLAGS += " " << `#{pkgconfig} --cflags openssl`.chomp
|
$CFLAGS += " " << `#{pkgconfig} --cflags openssl`.chomp
|
||||||
$DLDFLAGS += " " << `#{pkgconfig} --libs-only-L openssl`.chomp
|
$DLDFLAGS += " " << `#{pkgconfig} --libs-only-L openssl`.chomp
|
||||||
$LIBS += " " << `#{pkgconfig} --libs-only-l openssl`.chomp
|
$LIBS += " " << `#{pkgconfig} --libs-only-l openssl`.chomp
|
||||||
else
|
result = have_header("openssl/ssl.h")
|
||||||
|
end
|
||||||
|
if !result
|
||||||
message "=== Checking for required stuff failed. ===\n"
|
message "=== Checking for required stuff failed. ===\n"
|
||||||
message "Makefile wasn't created. Fix the errors above.\n"
|
message "Makefile wasn't created. Fix the errors above.\n"
|
||||||
exit 1
|
exit 1
|
||||||
|
|
Loading…
Add table
Reference in a new issue