summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2012-10-07 10:14:08 +0300
committerTor Lillqvist <tml@iki.fi>2012-10-11 10:07:09 +0300
commit93bff92a58a252d7def0c0964dbb6e8441aac27f (patch)
treec259e433f5c23b1590c02ca3bb54ccb551946c85
parentd1006596f24dca0186192904200b422d4df15777 (diff)
Unset HAVE_THREADSAFE_STATICS for Android too, for now
The code generated by cppumaker in the comprehensive case is in fact broken, says sberg, and this is a way around it until it is fixed. Change-Id: I0a3950d28e39a83f293f04fad9e0be80e131e3e9
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index ce0b498b747e..c71788100706 100644
--- a/configure.in
+++ b/configure.in
@@ -5310,7 +5310,7 @@ if test "$GCC" = "yes"; then
dnl libstdc++-v3/libsupc++/guard.cc for what #ifdefs actually make a
dnl difference there. Conservative advice from Jakub Jelinek is to assume
dnl it working in GCC >= 4.3:
- if test "$_os" = "Darwin" -o "${GCCVER?}" -lt 040300; then
+ if test "$_os" = "Darwin" -o $_os = Android -o "${GCCVER?}" -lt 040300; then
AC_MSG_RESULT([broken (i.e., no)])
else
HAVE_THREADSAFE_STATICS=TRUE