Fix gettid() on Android, which is defined in unistd.h there.

This commit is contained in:
Tobias Brunner
2012-01-12 11:08:22 +01:00
parent 66f16d9629
commit 17e3a92661
2 changed files with 6 additions and 4 deletions
+2 -1
View File
@@ -390,7 +390,8 @@ AC_CHECK_FUNC(
#include <sys/syscall.h>],
[int main() {
return syscall(SYS_gettid);}],
[AC_MSG_RESULT([yes]); AC_DEFINE([HAVE_SYS_GETTID])],
[AC_MSG_RESULT([yes]); AC_DEFINE([HAVE_GETTID])
AC_DEFINE([HAVE_SYS_GETTID])],
[AC_MSG_RESULT([no])]
)]
)