packages/lang/ruby/patches/001-ignore_wide_getaddrinfo_while_crosscompiling.patch

11 lines
370 B
Diff
Raw Normal View History

--- a/ext/socket/extconf.rb 2013-02-14 23:20:13.581918676 -0200
+++ b/ext/socket/extconf.rb 2013-02-14 23:21:25.761918667 -0200
@@ -254,6 +254,7 @@
end
getaddr_info_ok = (enable_config("wide-getaddrinfo") && :wide) ||
+ (CROSS_COMPILING && :cross) ||
(checking_for("wide getaddrinfo") {try_run(<<EOF)} && :os)
#{cpp_include(headers)}
#include <stdlib.h>