<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">diff -r 6670ea4caf96 -r 5d8d64f95c49 Rakefile
--- a/Rakefile
+++ b/Rakefile
@@ -65,7 +65,7 @@
   "revision"   =&gt; "3224", #&lt; Latest stable
   "cflags"     =&gt; "-Wall -Werror -Wpointer-arith -Wstrict-prototypes -Wunused -Wshadow -std=gnu99",
   "cpppath"    =&gt; "-I. -I$(builddir) -Isrc -Isrc/shared -Isrc/subtle -idirafter$(hdrdir) -idirafter$(archdir)",
-  "ldflags"    =&gt; "-L$(libdir) $(rpath) $(LIBS) -l$(RUBY_SO_NAME)",
+  "ldflags"    =&gt; "$(rpath) -L$(libdir) $(LIBS) -l$(RUBY_SO_NAME)",
   "extflags"   =&gt; "$(LDFLAGS) $(rpath) $(LIBS) -l$(RUBY_SO_NAME)",
   "rpath"      =&gt; "-L$(libdir) -Wl,-rpath=$(libdir)",
   "checksums"  =&gt; []
@@ -258,7 +258,7 @@
     make_config unless checksums
   else
     # Check version
-    if 1 != RbConfig::CONFIG["MAJOR"].to_i or 9 != RbConfig::CONFIG["MINOR"].to_i
+    if 1 == RbConfig::CONFIG["MAJOR"].to_i and 9 &gt; RbConfig::CONFIG["MINOR"].to_i
       fail("Ruby 1.9.0 or higher required")
     end
 
</pre></body></html>