* configure.in (warnflags): add -Wno-long-long.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@25697 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2009-11-09 02:28:31 +00:00
parent 9c197735be
commit e8e477f209
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Mon Nov 9 11:28:29 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
* configure.in (warnflags): add -Wno-long-long.
Mon Nov 9 01:55:10 2009 Marc-Andre Lafortune <ruby-core@marc-andre.ca> Mon Nov 9 01:55:10 2009 Marc-Andre Lafortune <ruby-core@marc-andre.ca>
* eval.c (method_inspect, method_name, mnew): Bug fix when * eval.c (method_inspect, method_name, mnew): Bug fix when

View file

@ -165,7 +165,7 @@ AC_PROG_GCC_TRADITIONAL
test $ac_cv_prog_cc_g = yes && : ${debugflags=-g} test $ac_cv_prog_cc_g = yes && : ${debugflags=-g}
if test "$GCC" = yes; then if test "$GCC" = yes; then
linker_flag=-Wl, linker_flag=-Wl,
: ${optflags=-O2} ${warnflags="-Wall -Wno-parentheses"} : ${optflags=-O2} ${warnflags="-Wall -Wno-parentheses -Wno-long-long"}
else else
linker_flag= linker_flag=
fi fi