blob: d42ea1a398239a367a1b742554de6758511c071e [file] [log] [blame]
bartb1c44122008-03-19 17:12:01 +00001#!/bin/sh
2
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).
6
7if [ "$(uname)" = "Linux" ]; then
bart303dbe82008-05-03 08:34:52 +00008 if [ ! -x /usr/bin/getconf ]; then
9 echo "Error: could not find the program /usr/bin/getconf."
bart5b148162008-05-03 09:35:01 +000010 echo "Please install the glibc-common package."
bart303dbe82008-05-03 08:34:52 +000011 # Assume NPTL.
12 exit 0
13 fi
bartb1c44122008-03-19 17:12:01 +000014 libpthread_version="$(/usr/bin/getconf GNU_LIBPTHREAD_VERSION 2>/dev/null)"
15 if [ "${libpthread_version#NPTL}" != "${libpthread_version}" ]; then
16 # NPTL
17 exit 0
18 fi
19 # configuration string is empty or does start with "linuxthreads".
20 exit 1
21fi
22
23# Another OS than Linux, which is also fine.
24exit 0