remove ruby and valgrind checks from configure.in

This commit is contained in:
Joe Thornber 2011-12-15 12:56:16 +00:00
parent e4d987c883
commit 8210387b11

View File

@ -117,14 +117,6 @@ AC_ARG_ENABLE(testing,
TESTING=$enableval, TESTING=no)
AC_MSG_RESULT($TESTING)
if test "$TESTING" = yes; then
AC_PATH_PROG(RUBY19, ruby1.9)
AC_PATH_PROG(VALGRIND, valgrind)
if test -z "$RUBY19" -o -z "$VALGRIND"; then
AC_MSG_ERROR([ruby1.9 and valgrind are required for testing])
fi
fi
################################################################################
dnl -- Check for getopt
AC_CHECK_HEADERS(getopt.h, AC_DEFINE([HAVE_GETOPTLONG], 1, [Define to 1 if getopt_long is available.]))