1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* configure.in (--enable-frame-address): removed.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@24939 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2009-09-15 12:48:54 +00:00
parent 840fd72f33
commit 2c7d6b50e4
2 changed files with 4 additions and 14 deletions

View file

@ -1,3 +1,7 @@
Tue Sep 15 21:48:12 2009 Tanaka Akira <akr@fsij.org>
* configure.in (--enable-frame-address): removed.
Tue Sep 15 15:21:01 2009 NAKAMURA Usaku <usa@ruby-lang.org>
* win32/{configure.bat,Makefile.sub} (RDOCTARGET): the meaning of this

View file

@ -231,19 +231,6 @@ EOF
fi
])
AC_DEFUN([RUBY_USE_BUILTIN_FRAME_ADDRESS], [
case $target_cpu in
when(i?86) frame_address=yes;;
when(*) frame_address=no;;
esac
AC_ARG_ENABLE(frame-address,
AS_HELP_STRING([--enable-frame-address], [use GCC __builtin_frame_address()]),
[frame_address=$enableval])
if test $frame_address = yes; then
AC_DEFINE(USE_BUILTIN_FRAME_ADDRESS)
fi
])
AC_ARG_ENABLE(load-relative,
AS_HELP_STRING([--enable-load-relative], [resolve load paths at run time]),
[load_relative=$enableval])
@ -290,7 +277,6 @@ AC_SUBST(COUTFLAG)
RUBY_MINGW32
RUBY_UNIVERSAL_ARCH
RUBY_USE_BUILTIN_FRAME_ADDRESS
AC_CHECK_TOOL(RANLIB, ranlib, :)
AC_CHECK_TOOL(AR, ar)