aboutsummaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2025-05-29 19:26:19 +0000
committerLaurent Bercot <ska-skaware@skarnet.org>2025-05-29 19:26:19 +0000
commit2d9a66e088a728e5320e076f6ebe2712c6bde06c (patch)
tree6a61eda21ae00841d2438d2c21831ac928b7943f /configure
parentbae6509ce0e32a1aee77ac585ff9e7c39cdd12c2 (diff)
downloads6-portable-utils-2d9a66e088a728e5320e076f6ebe2712c6bde06c.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 e4403c4..810b98e 100755
--- a/configure
+++ b/configure
@@ -391,8 +391,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)
@@ -461,8 +463,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}