mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* ext/openssl/extconf.rb (HAVE_VA_ARGS_MACRO): need to compile.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4402 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
a8027639b8
commit
c7b5c0489b
3 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
Sun Aug 17 23:39:55 2003 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* ext/openssl/extconf.rb (HAVE_VA_ARGS_MACRO): need to compile.
|
||||
|
||||
Sun Aug 17 17:10:03 2003 GOTOU Yuuzou <gotoyuzo@notwork.org>
|
||||
|
||||
* ext/openssl/lib/openssl/ssl.rb (SSLSocket#sync_close=): add a
|
||||
|
|
|
@ -79,7 +79,7 @@ have_func("BN_mod_sub")
|
|||
have_func("BN_rand_range")
|
||||
have_func("BN_pseudo_rand_range")
|
||||
have_func("CONF_get1_default_config_file")
|
||||
if try_cpp("#define FOO(a, ...) foo(a, ##__VA_ARGS__)\n int x(){FOO(1);FOO(1,2);FOO(1,2,3);}\n")
|
||||
if try_compile("#define FOO(a, ...) foo(a, ##__VA_ARGS__)\n int x(){FOO(1);FOO(1,2);FOO(1,2,3);}\n")
|
||||
$defs.push("-DHAVE_VA_ARGS_MACRO")
|
||||
end
|
||||
have_header("openssl/ocsp.h")
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
int ruby_tcltk_stubs();
|
||||
|
||||
#if defined USE_TCL_STUBS && defined USE_TK_STUBS
|
||||
#include <tcl.h>
|
||||
#include <tk.h>
|
||||
|
|
Loading…
Reference in a new issue