Skip to content

Commit

Permalink
* configure.in (--with-valgrind): Fixed r29683. Now this option
Browse files Browse the repository at this point in the history
	  is really default on.



git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30701 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
kosaki committed Jan 28, 2011
1 parent e5971e8 commit aea93cb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Fri Jan 28 13:04:38 2011 KOSAKI Motohiro <[email protected]>

* configure.in (--with-valgrind): Fixed r29683. Now this option
is really default on.

Fri Jan 28 12:05:48 2011 KOSAKI Motohiro <[email protected]>

* configure.in: Add #include<sys/stat.h> when struct stat is
Expand Down
6 changes: 3 additions & 3 deletions configure.in
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down

0 comments on commit aea93cb

Please sign in to comment.