Skip to content

Commit

Permalink
merge revision(s) 23240:
Browse files Browse the repository at this point in the history
?\012
	* lib/mkmf.rb (init_mkmf): needs default library path even if
	  cross compiling.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@23240 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Signed-off-by: URABE, Shyouhei <shyouhei@ruby-lang.org>



git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8_7@30081 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
shyouhei committed Dec 4, 2010
1 parent 3b86ac2 commit a7e8938
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
@@ -1,3 +1,8 @@
Sat Dec 4 11:35:15 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>

* lib/mkmf.rb (init_mkmf): needs default library path even if
cross compiling.

Sat Dec 4 11:25:02 2010 NAKAMURA Usaku <usa@ruby-lang.org> Sat Dec 4 11:25:02 2010 NAKAMURA Usaku <usa@ruby-lang.org>


* re.c (rb_reg_regcomp): should succeed the taint status from the * re.c (rb_reg_regcomp): should succeed the taint status from the
Expand Down
2 changes: 1 addition & 1 deletion lib/mkmf.rb
Expand Up @@ -1710,7 +1710,7 @@ def init_mkmf(config = CONFIG)
$LIBRUBYARG = "" $LIBRUBYARG = ""
$LIBRUBYARG_STATIC = config['LIBRUBYARG_STATIC'] $LIBRUBYARG_STATIC = config['LIBRUBYARG_STATIC']
$LIBRUBYARG_SHARED = config['LIBRUBYARG_SHARED'] $LIBRUBYARG_SHARED = config['LIBRUBYARG_SHARED']
$DEFLIBPATH = $extmk ? ["$(topdir)"] : CROSS_COMPILING ? [] : ["$(libdir)"] $DEFLIBPATH = [$extmk ? "$(topdir)" : "$(libdir)"]
$DEFLIBPATH.unshift(".") $DEFLIBPATH.unshift(".")
$LIBPATH = [] $LIBPATH = []
$INSTALLFILES = [] $INSTALLFILES = []
Expand Down
2 changes: 1 addition & 1 deletion version.h
Expand Up @@ -2,7 +2,7 @@
#define RUBY_RELEASE_DATE "2010-12-04" #define RUBY_RELEASE_DATE "2010-12-04"
#define RUBY_VERSION_CODE 187 #define RUBY_VERSION_CODE 187
#define RUBY_RELEASE_CODE 20101204 #define RUBY_RELEASE_CODE 20101204
#define RUBY_PATCHLEVEL 328 #define RUBY_PATCHLEVEL 329


#define RUBY_VERSION_MAJOR 1 #define RUBY_VERSION_MAJOR 1
#define RUBY_VERSION_MINOR 8 #define RUBY_VERSION_MINOR 8
Expand Down

0 comments on commit a7e8938

Please sign in to comment.