aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.6/libstdc++-v3/configure
diff options
context:
space:
mode:
authorAndrew Hsieh <andrewhsieh@google.com>2013-03-07 21:27:51 +0800
committerAndrew Hsieh <andrewhsieh@google.com>2013-03-07 21:27:51 +0800
commitfe1a20404b19d5dd0cd0988d080cff8a455c2a76 (patch)
treeae89a88a696462ead95f5ac6c6c622d4806f885f /gcc-4.6/libstdc++-v3/configure
parent1ed1c0506a4b26ebffb0e52e068c25cef2f4dfad (diff)
downloadtoolchain_gcc-fe1a20404b19d5dd0cd0988d080cff8a455c2a76.tar.gz
toolchain_gcc-fe1a20404b19d5dd0cd0988d080cff8a455c2a76.tar.bz2
toolchain_gcc-fe1a20404b19d5dd0cd0988d080cff8a455c2a76.zip
GNU libstdc++ --enable-linux-futex
Change-Id: Ib97053768252b05decd513825ae45757b220f7d4
Diffstat (limited to 'gcc-4.6/libstdc++-v3/configure')
-rwxr-xr-xgcc-4.6/libstdc++-v3/configure12
1 files changed, 12 insertions, 0 deletions
diff --git a/gcc-4.6/libstdc++-v3/configure b/gcc-4.6/libstdc++-v3/configure
index 9aedd4fb7..73dcdb536 100755
--- a/gcc-4.6/libstdc++-v3/configure
+++ b/gcc-4.6/libstdc++-v3/configure
@@ -63546,6 +63546,12 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
#include <sys/syscall.h>
int lk;
+#if !defined(SYS_gettid)
+#define SYS_gettid __NR_gettid
+#endif
+#if !defined(SYS_futex)
+#define SYS_futex __NR_futex
+#endif
int
main ()
{
@@ -63604,6 +63610,12 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext
/* end confdefs.h. */
#include <sys/syscall.h>
int lk;
+#if !defined(SYS_gettid)
+#define SYS_gettid __NR_gettid
+#endif
+#if !defined(SYS_futex)
+#define SYS_futex __NR_futex
+#endif
int
main ()
{