Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Unity-Technologies/bdwgc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Maidanski <ivmai@mail.ru>2018-03-27 21:27:48 +0300
committerIvan Maidanski <ivmai@mail.ru>2018-03-27 21:29:56 +0300
commitf8709b10f1987b96b8dd235f36835172f587139f (patch)
tree6f59b770d8d9c96a5556200c0ea96609cf12afcf /configure.ac
parent553ed5607385e85f30aefe8d60b737b5c232439c (diff)
Accept Android platform by both CMake and configure
(fix of commit 1680d91) * CMakeLists.txt (_HOST): Adjust FIXME comment. * CMakeLists.txt (HOST): Remove replacement of "android" to "linux". * CMakeLists.txt [CMAKE_USE_PTHREADS_INIT && HOST=*-*-android*]: Define GC_THREADS and _REENTRANT macros. * CMakeLists.txt [CMAKE_USE_PTHREADS_INIT && HOST=*-*-android* && enable_parallel_mark]: Define PARALLEL_MARK macro. * CMakeLists.txt [CMAKE_USE_PTHREADS_INIT && HOST=*-*-android* && enable_thread_local_alloc]: Define THREAD_LOCAL_ALLOC macro. * configure.ac [$THREADS=posix && $host=*-*-android*] (GC_THREADS, _REENTRANT): Define macro. * configure.ac [$THREADS=posix && $host=*-*-android* && $enable_parallel_mark] (PARALLEL_MARK): Likewise. * configure.ac [$THREADS=posix && $host=*-*-android* && $enable_thread_local_alloc] (THREAD_LOCAL_ALLOC): Likewise.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 354ce1b6..b7268e65 100644
--- a/configure.ac
+++ b/configure.ac
@@ -185,7 +185,7 @@ case "$THREADS" in
default_threadlibs=false
# Common defines for most POSIX platforms.
case "$host" in
- *-*-aix* | *-*-cygwin* | *-*-darwin* | *-*-dragonfly* | \
+ *-*-aix* | *-*-android* | *-*-cygwin* | *-*-darwin* | *-*-dragonfly* | \
*-*-freebsd* | *-*-haiku* | *-*-hpux11* | *-*-irix* | \
*-*-kfreebsd*-gnu | *-*-gnu* | *-*-*linux* | *-*-nacl* | \
*-*-netbsd* | *-*-openbsd* | *-*-osf* | *-*-solaris*)