mirror of
https://github.com/ruby/ruby.git
synced 2025-09-21 11:33:58 +02:00
merge revision(s) 33577:
* configure.in: check -fno-omit-frame-pointer acceptance and usage under MinGW. [ruby-core:39957] [Bug #5407] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_3@34189 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
b3b5650307
commit
bade2a2d38
3 changed files with 12 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
Mon Jan 2 21:36:56 2012 Luis Lavena <luislavena@gmail.com>
|
||||
|
||||
* configure.in: check -fno-omit-frame-pointer acceptance and usage
|
||||
under MinGW. [ruby-core:39957] [Bug #5407]
|
||||
|
||||
Mon Jan 2 20:05:10 2012 NARUSE, Yui <naruse@ruby-lang.org>
|
||||
|
||||
* include/ruby/ruby.h (SIZE_MAX): define SIZE_MAX if not defined.
|
||||
|
|
|
@ -503,6 +503,12 @@ if test "$GCC" = yes; then
|
|||
test "$visibility_option" = no || OBJCOPY=:
|
||||
fi
|
||||
|
||||
if test "$GCC" = yes; then
|
||||
AS_CASE(["$target_os"], [mingw*], [
|
||||
RUBY_TRY_CFLAGS(-fno-omit-frame-pointer, [optflags="${optflags+$optflags }-fno-omit-frame-pointer"])
|
||||
])
|
||||
fi
|
||||
|
||||
test -z "${ac_env_CFLAGS_set}" -a -n "${cflags+set}" && eval CFLAGS="\"$cflags $ARCH_FLAG\""
|
||||
test -z "${ac_env_CXXFLAGS_set}" -a -n "${cxxflags+set}" && eval CXXFLAGS="\"$cxxflags $ARCH_FLAG\""
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#define RUBY_VERSION "1.9.3"
|
||||
#define RUBY_PATCHLEVEL 12
|
||||
#define RUBY_PATCHLEVEL 13
|
||||
|
||||
#define RUBY_RELEASE_DATE "2012-01-03"
|
||||
#define RUBY_RELEASE_YEAR 2012
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue