summaryrefslogtreecommitdiff
path: root/libphobos/configure.ac
diff options
context:
space:
mode:
authorIain Buclaw <ibuclaw@gdcproject.org>2020-04-09 00:16:57 +0200
committerIain Buclaw <ibuclaw@gdcproject.org>2020-04-09 00:16:57 +0200
commit6e286c8df452787fffe4fb4bd3dbba4d80bc6c12 (patch)
treee29c2928a095b57c9bf9de822f87ac68a633e42a /libphobos/configure.ac
parent48242b2c3ac96c0bd5265e77013583ac9ceee97d (diff)
downloadgcc-6e286c8df452787fffe4fb4bd3dbba4d80bc6c12.tar.gz
libphobos: Remove --enable-thread-lib configure option.
This is another old option that doesn't make sense as a configurable. So the option has been removed, and the check for AC_SEARCH_LIBS moved into the main configure.ac file. libphobos/ChangeLog: * configure: Regenerate. * configure.ac: Use AC_SEARCH_LIBS for pthread_create. * m4/druntime/libraries.m4: Remove DRUNTIME_LIBRARIES_THREAD.
Diffstat (limited to 'libphobos/configure.ac')
-rw-r--r--libphobos/configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/libphobos/configure.ac b/libphobos/configure.ac
index 594d2001b06..e6148f07519 100644
--- a/libphobos/configure.ac
+++ b/libphobos/configure.ac
@@ -133,7 +133,7 @@ DRUNTIME_LIBRARIES_CLIB
WITH_LOCAL_DRUNTIME([
AC_LANG_PUSH([D])
AC_SEARCH_LIBS([malloc], [c])
- DRUNTIME_LIBRARIES_THREAD
+ AC_SEARCH_LIBS([pthread_create], [pthread])
AC_SEARCH_LIBS([cosf], [m])
AC_SEARCH_LIBS([clock_gettime], [rt])
DRUNTIME_ENABLE_ATOMIC_BUILTINS