diff options
| author | Laurent Bercot <ska-skaware@skarnet.org> | 2025-05-29 19:26:17 +0000 |
|---|---|---|
| committer | Laurent Bercot <ska-skaware@skarnet.org> | 2025-05-29 19:26:17 +0000 |
| commit | 12706cc8fbba0bc261003d16bb0e46e14b9aa156 (patch) | |
| tree | 8a2d7f9a8206a0c73b8d9cd9462be94d8cc01500 /configure | |
| parent | f59e8974081274bf2bd22fac43c4a1a5625f06e7 (diff) | |
| download | s6-linux-init-12706cc8fbba0bc261003d16bb0e46e14b9aa156.tar.gz | |
Correctly use pthread_lib sysdep
Diffstat (limited to 'configure')
| -rwxr-xr-x | configure | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -404,8 +404,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) @@ -501,8 +503,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} |
