From 1497959ef5b69c9680931237c7558010130de166 Mon Sep 17 00:00:00 2001 From: yugui Date: Wed, 22 Aug 2012 01:14:14 +0000 Subject: [PATCH] * nacl/pepper_main.c (init_loadpath): Pushes the correct load path on other architectures than x86_64. Fixes #6873. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36769 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ nacl/pepper_main.c | 6 ++++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index f2c3cfb1d9..b05abadebb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Thu Aug 16 12:09:51 2012 Yuki Yugui Sonoda + + * nacl/pepper_main.c (init_loadpath): Pushes the correct load path on + other architectures than x86_64. Fixes #6873. + Wed Aug 15 19:37:33 2012 Yuki Yugui Sonoda * configure.in (ac_cv_func_shutdown): shutdown(2) has a dummy diff --git a/nacl/pepper_main.c b/nacl/pepper_main.c index 25087e995a..c0e497b387 100644 --- a/nacl/pepper_main.c +++ b/nacl/pepper_main.c @@ -26,7 +26,9 @@ #include "ppapi/c/ppp_instance.h" #include "ppapi/c/ppp_messaging.h" +#include "verconf.h" #include "ruby/ruby.h" +#include "version.h" #include "gc.h" #ifdef HAVE_STRUCT_PPB_CORE @@ -339,8 +341,8 @@ pruby_post_value(void* data) static void init_loadpath(void) { - ruby_incpush("lib/ruby/2.0.0"); - ruby_incpush("lib/ruby/2.0.0/x86_64-nacl"); + ruby_incpush("lib/ruby/"RUBY_LIB_VERSION); + ruby_incpush("lib/ruby/"RUBY_LIB_VERSION"/"RUBY_PLATFORM); ruby_incpush("."); }