From c0374c55d49d099b0c4f26fdf92ca576ebbff947 Mon Sep 17 00:00:00 2001 From: Amar Takhar Date: Sat, 27 Dec 2008 09:42:31 +0000 Subject: [PATCH] Set with_cv_(perl|ruby) = no if --without-(perl|ruby) is set. Originally committed to SVN as r2533. --- configure.in | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/configure.in b/configure.in index 4ff5948aa..3d74463d4 100644 --- a/configure.in +++ b/configure.in @@ -748,6 +748,8 @@ fi if test "$with_cv_perl" = "yes"; then with_automation="yes" AC_DEFINE(WITH_PERL, 1, [Enable PERL support.]) +else + with_cv_perl="no" fi AC_SUBST(PERL_CFLAGS) @@ -813,6 +815,8 @@ fi if test "$with_cv_ruby" = "yes"; then with_automation="yes" AC_DEFINE(WITH_RUBY, 1, [Enable RUBY Automation.]) +else + with_cv_ruby="no" fi AC_SUBST(RUBY_CFLAGS)