about summary refs log tree commit diff
path: root/configure
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2020-11-30 21:08:17 +0000
committerLaurent Bercot <ska-skaware@skarnet.org>2020-11-30 21:08:17 +0000
commitba9c0304144c219fcd641f8907691e6c44625e4e (patch)
tree3b9ddff29fd4b71fbace572b3c48947b8bea77b4 /configure
parent90b819c6d832046840018ff08b9bc5d0e3b69c37 (diff)
downloadskalibs-ba9c0304144c219fcd641f8907691e6c44625e4e.tar.gz
skalibs-ba9c0304144c219fcd641f8907691e6c44625e4e.tar.xz
skalibs-ba9c0304144c219fcd641f8907691e6c44625e4e.zip
Fix sysdep lib filling of config.mak
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure10
1 files changed, 6 insertions, 4 deletions
diff --git a/configure b/configure
index 48af9e5..dec5e15 100755
--- a/configure
+++ b/configure
@@ -315,7 +315,8 @@ detectlibs () {
 
 trylibs () {
   name="$1"
-  libfile="$2"
+  libvar="$2"_lib
+  libfile="$2".lib
   echo "Checking whether system has $3..."
   shift 3
   if args=`iscached $name 3>&1 1>&4 4>&-` 4>&1 ; then :
@@ -330,6 +331,7 @@ trylibs () {
     echo "${name}: no" >> ${sysdeps}/sysdeps
     echo "  ... no"
   fi
+  eval "${libvar}=\"$args\""
   echo "$args" > "${sysdeps}/$libfile"
 }
 
@@ -592,11 +594,11 @@ else
 fi
 echo "$socket_lib" > $sysdeps/socket.lib
 
-trylibs clockrt sysclock.lib 'clock_gettime()' -lrt
+trylibs clockrt sysclock 'clock_gettime()' -lrt
 choose cl clockmon CLOCK_MONOTONIC `cat "${sysdeps}/sysclock.lib"`
 choose cl clockboot CLOCK_BOOTTIME `cat "${sysdeps}/sysclock.lib"`
-trylibs posixspawn spawn.lib 'posix_spawn()' -lrt
-trylibs timer timer.lib 'timer_create()' -lrt
+trylibs posixspawn spawn 'posix_spawn()' -lrt
+trylibs timer timer 'timer_create()' -lrt
 
 tryendianness
 trytypes