From 62dd4b63c5dc8c5ea37328f042c4ce4eaf41de9d Mon Sep 17 00:00:00 2001 From: =?utf8?q?P=C3=A1draig=20Brady?= Date: Thu, 15 Apr 2010 17:34:57 +0100 Subject: [PATCH] maint: fix build on platforms that replace strsignal * src/Makefile.am (kill_LDADD): Add $(LIBTHREAD) so that we link with the appropriate libraries to provide Thread Local Storage on platforms that replace strsignal (like AIX for example). Tested-by: Daniel Richard G. --- src/Makefile.am | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Makefile.am b/src/Makefile.am index 44f12378c0..20b306dbce 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -394,6 +394,9 @@ who_LDADD += $(GETADDRINFO_LIB) hostname_LDADD += $(GETHOSTNAME_LIB) uname_LDADD += $(GETHOSTNAME_LIB) +# for strsignal +kill_LDADD += $(LIBTHREAD) + $(PROGRAMS): ../lib/libcoreutils.a # Get the release year from ../lib/version-etc.c. -- 2.47.3