configure: improve clock_gettime diagnostic messages
Makes the configure script output a little less confusing here.315aa92c71eb6ab1167140af5fbbdb3600b5e299
configure | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/configure b/configure
@@ -717,13 +717,13 @@ else
echo "no"
fi
-printf "checking for clock_gettime... "
+printf "checking for clock_gettime in libc... "
clockgettimecheck
if [ $? -eq 0 ] ; then
echo "yes"
else
echo "no"
- printf "checking if clock_gettime needs -lrt... "
+ printf "checking for clock_gettime in librt... "
clockgettimertcheck
if [ $? -eq 0 ] ; then
libs="$libs -lrt"