summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAliaksey Kandratsenka <alk@tut.by>2014-01-11 16:28:15 -0800
committerAliaksey Kandratsenka <alk@tut.by>2014-01-11 16:28:15 -0800
commite98371540d63dde53ce4b7c772d78c1da6b59ea8 (patch)
tree831d6d03ba471822a4ecb88bcd2961d8de9bdca1
parent60b12171bc73117c0108b847bb310af095cd2778 (diff)
downloadgperftools-e98371540d63dde53ce4b7c772d78c1da6b59ea8.tar.gz
eliminated gcc warning on __thread configure snippet
gcc complained about lack of matching ' in code that force-fails __thread detection on mingw
-rwxr-xr-xconfigure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 962bb65..d128d13 100755
--- a/configure.ac
+++ b/configure.ac
@@ -308,7 +308,7 @@ AC_MSG_CHECKING([for __thread])
AC_LINK_IFELSE([AC_LANG_PROGRAM([#if defined(__GNUC__) && ((__GNUC__ < 4) || (__GNUC__ == 4 && __GNUC_MINOR__ < 1) || (__GNUC__ == 4 && __GNUC_MINOR__ == 1 && __GNUC_PATCHLEVEL__ < 2))
#error gcc has this bug: http://gcc.gnu.org/ml/gcc-bugs/2006-09/msg02275.html
#elif defined(__MINGW32__)
-#error mingw doesn't really support tls
+#error mingw doesnt really support tls
#elif defined(__APPLE__)
#error OSX __thread support is known to call malloc which makes it unsafe to use from malloc replacement
#endif