3 # Exit with status 0 if a supported version of libpthread is found (NPTL or
4 # non-Linux libpthread) and exit with status 1 if a non-supported version of
5 # libpthread is found (LinuxThreads).
7 if [ "$(uname)" = "Linux" ]; then
8 if [ ! -x /usr
/bin
/getconf
]; then
9 echo "Error: could not find the program /usr/bin/getconf."
10 echo "Please install the glibc-common package."
14 libpthread_version
="$(/usr/bin/getconf GNU_LIBPTHREAD_VERSION 2>/dev/null)"
15 if [ "${libpthread_version#NPTL}" != "${libpthread_version}" ]; then
19 if [ -x /lib
/ld-musl-
*.so
.1 ] ; then
23 # configuration string is empty or does start with "linuxthreads".
27 # Another OS than Linux, which is also fine.