summaryrefslogtreecommitdiffstats
path: root/googletest/include/gtest/internal/gtest-port-arch.h
diff options
context:
space:
mode:
authorScott Graham <scottmg@chromium.org>2017-08-29 19:45:26 (GMT)
committerScott Graham <scottmg@chromium.org>2017-08-29 19:45:26 (GMT)
commitc3d1d33560462c923f06adb8e9c2f77ffbafa46c (patch)
treec28876f352a5382c8d285bd18407c584ffd43d76 /googletest/include/gtest/internal/gtest-port-arch.h
parent96f3745e73d5541419617006e9571b572a098f91 (diff)
downloadgoogletest-c3d1d33560462c923f06adb8e9c2f77ffbafa46c.zip
googletest-c3d1d33560462c923f06adb8e9c2f77ffbafa46c.tar.gz
googletest-c3d1d33560462c923f06adb8e9c2f77ffbafa46c.tar.bz2
Detect Fuchsia, and set GTEST_HAS_PTHREAD on GTEST_OS_FUCHSIA
Diffstat (limited to 'googletest/include/gtest/internal/gtest-port-arch.h')
-rw-r--r--googletest/include/gtest/internal/gtest-port-arch.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/googletest/include/gtest/internal/gtest-port-arch.h b/googletest/include/gtest/internal/gtest-port-arch.h
index f32fc06..bb20616 100644
--- a/googletest/include/gtest/internal/gtest-port-arch.h
+++ b/googletest/include/gtest/internal/gtest-port-arch.h
@@ -69,6 +69,8 @@
# endif
#elif defined __FreeBSD__
# define GTEST_OS_FREEBSD 1
+#elif defined __Fuchsia__
+# define GTEST_OS_FUCHSIA 1
#elif defined __linux__
# define GTEST_OS_LINUX 1
# if defined __ANDROID__