From 7cdfc3f09d207bed097ec1580200ca530b96e692 Mon Sep 17 00:00:00 2001 From: Petteri Räty Date: Sun, 6 Mar 2011 14:38:06 +0200 Subject: Fix running ./configure without arguments Fixed googletest autoconf support so that giving --enable-gtest is not required to run the tests successfully. --- m4/gtest.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'm4') diff --git a/m4/gtest.m4 b/m4/gtest.m4 index 6598ba7..e96650b 100644 --- a/m4/gtest.m4 +++ b/m4/gtest.m4 @@ -15,7 +15,7 @@ AC_ARG_ENABLE([gtest], [Enable tests using the Google C++ Testing Framework. (Default is enabled.)])], [], - [enable_gtest=]) + [enable_gtest=yes]) AC_ARG_VAR([GTEST_CONFIG], [The exact path of Google Test's 'gtest-config' script.]) AC_ARG_VAR([GTEST_CPPFLAGS], -- cgit v1.2.3-65-gdbad