Files
pkgsrc-ng/devel/protobuf/patches/patch-gtest_configure
2016-01-21 23:41:46 +01:00

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