aboutsummaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2025-05-29 19:26:21 +0000
committerLaurent Bercot <ska-skaware@skarnet.org>2025-05-29 19:26:21 +0000
commit47602bbffb3bfe0660f2fe6cf5ff085f840767cb (patch)
tree47f436a1b91066b0f0dba5b90466042cb1233104 /configure
parent235b8201afa24c051c48f49cbfa3a183eafb6725 (diff)
downloads6-linux-utils-47602bbffb3bfe0660f2fe6cf5ff085f840767cb.tar.gz
Correctly use pthread_lib sysdep
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure8
1 files changed, 6 insertions, 2 deletions
diff --git a/configure b/configure
index 723ebcb..06f364c 100755
--- a/configure
+++ b/configure
@@ -400,8 +400,10 @@ echo " ... *.$shlibext"
if $allpic ; then
tryflag CPPFLAGS_AUTO -fPIC
fi
-spawn_lib=$(cat $sysdeps/spawn.lib)
+
+pthread_lib=$(cat $sysdeps/pthread.lib)
socket_lib=$(cat $sysdeps/socket.lib)
+spawn_lib=$(cat $sysdeps/spawn.lib)
sysclock_lib=$(cat $sysdeps/sysclock.lib)
timer_lib=$(cat $sysdeps/timer.lib)
util_lib=$(cat $sysdeps/util.lib)
@@ -470,8 +472,10 @@ home := $home
exthome := $exthome
extra_includedirs :=$depincpath
extra_libdirs :=$deplibpath
-SPAWN_LIB := ${spawn_lib}
+
+PTHREAD_LIB := ${pthread_lib}
SOCKET_LIB := ${socket_lib}
+SPAWN_LIB := ${spawn_lib}
SYSCLOCK_LIB := ${sysclock_lib}
TIMER_LIB := ${timer_lib}
UTIL_LIB := ${util_lib}