雑記。これとほぼ同じ展開。configureでエラーがでた。下のリンクは1.8.7だけど、1.9.3でも同様のエラーが起こる。 openssl周辺で悪さをしているっぽいけど、修正は自己責任で。
--- ruby-1.8.7-p374/ext/openssl/ossl_pkey_ec.c 2010-06-21 04:18:59.000000000 -0500 +++ /root/ruby-1.8.7-p374/ext/openssl/ossl_pkey_ec.c 2013-12-10 13:30:18.919963527 -0600 @@ -757,8 +757,10 @@ method = EC_GFp_mont_method(); } else if (id == s_GFp_nist) { method = EC_GFp_nist_method(); + #if !defined(OPENSSL_NO_EC2M) } else if (id == s_GF2m_simple) { method = EC_GF2m_simple_method(); + #endif } if (method) { @@ -811,8 +813,10 @@ if (id == s_GFp) { new_curve = EC_GROUP_new_curve_GFp; + #if !defined(OPENSSL_NO_EC2M) } else if (id == s_GF2m) { new_curve = EC_GROUP_new_curve_GF2m; + #endif } else { rb_raise(rb_eArgError, "unknown symbol, must be :GFp or :GF2m"); }