File tree Expand file tree Collapse file tree 3 files changed +12
-1
lines changed
Expand file tree Collapse file tree 3 files changed +12
-1
lines changed Original file line number Diff line number Diff line change 1+ Sun Jun 16 01:22:35 2013 Eric Hodel <
[email protected] >
2+
3+ * ext/socket/extconf.rb: Enable RFC 3542 IPV6 socket options for OS X
4+ 10.7+. [ruby-trunk - Bug #8517]
5+
16Sun Jun 16 01:11:10 2013 Koichi Sasada <
[email protected] >
27
38 * compile.c (rb_iseq_compile_node): fix location of a `trace'
Original file line number Diff line number Diff line change 2323 have_library ( "socket" , "socket" )
2424end
2525
26+ if /darwin/ =~ RUBY_PLATFORM
27+ # For IPv6 extension header access on OS X 10.7+ [Bug #8517]
28+ $CFLAGS << " -D__APPLE_USE_RFC_3542"
29+ end
30+
31+ headers = [ ]
2632unless $mswin or $bccwin or $mingw
2733 headers = %w< sys/types.h netdb.h string.h sys/socket.h netinet/in.h >
2834end
Original file line number Diff line number Diff line change 11#define RUBY_VERSION "2.0.0"
22#define RUBY_RELEASE_DATE "2013-06-16"
3- #define RUBY_PATCHLEVEL 219
3+ #define RUBY_PATCHLEVEL 220
44
55#define RUBY_RELEASE_YEAR 2013
66#define RUBY_RELEASE_MONTH 6
You can’t perform that action at this time.
0 commit comments