mirror of git://sourceware.org/git/glibc.git
Recognize nptl add-on name.
This commit is contained in:
parent
29514aade7
commit
1ad484c629
|
|
@ -174,12 +174,21 @@ if test "$prefix" = "/usr" -o "$prefix" = "/usr/"; then
|
||||||
libc_cv_rootsbindir="/sbin"
|
libc_cv_rootsbindir="/sbin"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Under Linux the LinuxThreads add-on should be available.
|
# Under Linux the LinuxThreads or NPTL add-on should be available.
|
||||||
case $add_ons in
|
case $add_ons in
|
||||||
|
# Only one of the add-ons should be available.
|
||||||
|
*linuxthreads*nptl*|*nptl*linuxthreads*)
|
||||||
|
echo "\
|
||||||
|
*** LinuxThreads and NPTL add-ons are both available. Only one must be used."
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
# It is available. Good.
|
# It is available. Good.
|
||||||
*linuxthreads*)
|
*linuxthreads*)
|
||||||
linuxthreads_missing=
|
linuxthreads_missing=
|
||||||
;;
|
;;
|
||||||
|
*nptl*)
|
||||||
|
linuxthreads_missing=
|
||||||
|
;;
|
||||||
*)
|
*)
|
||||||
linuxthreads_missing=yes
|
linuxthreads_missing=yes
|
||||||
;;
|
;;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue