oksh-noxz

[fork] Portable OpenBSD ksh, based on the Public Domain Korn Shell (pdksh).
git clone https://noxz.tech/git/oksh-noxz.git
oksh-noxz

commit: 315aa92c71eb6ab1167140af5fbbdb3600b5e299
parent: 246e6829e06e34565b9e2d416c330450740ce0b0
author: Brian Callahan <ibara@users.noreply.github.com>
date:   Sun, 7 Jun 2020 20:43:02 -0400
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"