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

* configure.in (--with-valgrind): Fixed r29683. Now this option

is really default on.



git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30701 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
kosaki 2011-01-28 04:05:23 +00:00
parent e5971e8c7e
commit aea93cbed8
2 changed files with 8 additions and 3 deletions

View file

@ -1,3 +1,8 @@
Fri Jan 28 13:04:38 2011 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
* configure.in (--with-valgrind): Fixed r29683. Now this option
is really default on.
Fri Jan 28 12:05:48 2011 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
* configure.in: Add #include<sys/stat.h> when struct stat is

View file

@ -1836,9 +1836,9 @@ AS_CASE(["$target_os"],
AC_CHECK_FUNCS(backtrace)
AC_ARG_WITH(valgrind,
AS_HELP_STRING([--with-valgrind],[enable valgrind memcheck support]),
ruby_cv_with_valgrind=yes,ruby_cv_with_valgrind=no)
AS_IF([test x$ruby_cv_with_valgrind != xno],
AS_HELP_STRING([--without-valgrind],[disable valgrind memcheck support]),
[], with_valgrind=yes)
AS_IF([test x$with_valgrind != xno],
[AC_CHECK_HEADERS(valgrind/memcheck.h)])
dnl }