aboutsummaryrefslogtreecommitdiffstats
path: root/erts/configure.in
diff options
context:
space:
mode:
authorRickard Green <[email protected]>2010-08-19 19:17:19 +0200
committerRickard Green <[email protected]>2010-08-19 19:17:19 +0200
commit738f6b071c2031f80a382b316e20c9c079f904ed (patch)
treedb2e6b26efc9ab9efb0ed6293c64a6996f488419 /erts/configure.in
parent2ed3221969fa12b238f493a0cda95d7b0e443b92 (diff)
downloadotp-738f6b071c2031f80a382b316e20c9c079f904ed.tar.gz
otp-738f6b071c2031f80a382b316e20c9c079f904ed.tar.bz2
otp-738f6b071c2031f80a382b316e20c9c079f904ed.zip
Fix propagation of nptl info
Diffstat (limited to 'erts/configure.in')
-rw-r--r--erts/configure.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/erts/configure.in b/erts/configure.in
index 157163fe0b..72655e171b 100644
--- a/erts/configure.in
+++ b/erts/configure.in
@@ -1177,14 +1177,14 @@ else
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