aboutsummaryrefslogtreecommitdiffstats
path: root/erts/configure.in
diff options
context:
space:
mode:
authorRickard Green <[email protected]>2010-08-24 15:54:54 +0200
committerRickard Green <[email protected]>2010-08-24 15:54:54 +0200
commit6b6d93d8cb0af40b04890e1986b05ed793eacde2 (patch)
tree04b7d4421d6517fcedba5a17de7d1e1aaa66d8d0 /erts/configure.in
parenta6742ca55398f6f9003977379faacd11c87906a0 (diff)
parent2b184e71e2df3cd900fb71b4ebb63015253ba240 (diff)
downloadotp-6b6d93d8cb0af40b04890e1986b05ed793eacde2.tar.gz
otp-6b6d93d8cb0af40b04890e1986b05ed793eacde2.tar.bz2
otp-6b6d93d8cb0af40b04890e1986b05ed793eacde2.zip
Merge branch 'rickard/nptl-configure/OTP-8774' into dev
* rickard/nptl-configure/OTP-8774: Removed unused define Fix propagation of nptl info
Diffstat (limited to 'erts/configure.in')
-rw-r--r--erts/configure.in6
1 files changed, 2 insertions, 4 deletions
diff --git a/erts/configure.in b/erts/configure.in
index d1404580fa..5d02fd1ee4 100644
--- a/erts/configure.in
+++ b/erts/configure.in
@@ -1171,17 +1171,15 @@ else
enable_child_waiter_thread=yes
;;
linux*)
- AC_DEFINE(USE_RECURSIVE_MALLOC_MUTEX,[1],
- [Define if malloc should use a recursive mutex])
AC_MSG_CHECKING([whether dlopen() needs to be called before first call to dlerror()])
- if test "x$ETHR_THR_LIB_BASE_NAME" != "xnptl"; then
+ if test "x$ETHR_THR_LIB_BASE_TYPE" != "xposix_nptl"; then
AC_DEFINE(ERTS_NEED_DLOPEN_BEFORE_DLERROR,[1],
[Define if dlopen() needs to be called before first call to dlerror()])
AC_MSG_RESULT(yes)
else
AC_MSG_RESULT(no)
fi
- if test "x$ETHR_THR_LIB_BASE_NAME" != "xnptl"; then
+ if test "x$ETHR_THR_LIB_BASE_TYPE" != "xposix_nptl"; then
# Child waiter thread cannot be enabled
disable_child_waiter_thread=yes
enable_child_waiter_thread=no