17 lines
494 B
Plaintext
17 lines
494 B
Plaintext
$NetBSD: patch-gtest_configure,v 1.3 2015/06/10 01:31:51 wiedi Exp $
|
|
|
|
Fix unportable test(1) construct.
|
|
http://code.google.com/p/protobuf/issues/detail?id=483
|
|
|
|
--- gtest/configure.orig 2014-10-22 20:10:24.000000000 +0000
|
|
+++ gtest/configure
|
|
@@ -15726,7 +15726,7 @@ ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
|
|
|
|
have_pthreads="$acx_pthread_ok"
|
|
fi
|
|
- if test "x$have_pthreads" == "xyes"; then
|
|
+ if test "x$have_pthreads" = "xyes"; then
|
|
HAVE_PTHREADS_TRUE=
|
|
HAVE_PTHREADS_FALSE='#'
|
|
else
|