1 Makefile.am: link against libpthread for atftp
3 atftp client needs to link against libpthread as static builds do not
6 Signed-off-by: Ryan Barnett <ryan.barnett@rockwellcollins.com>
9 1 file changed, 1 insertion(+), 1 deletion(-)
11 diff --git a/Makefile.am b/Makefile.am
12 index e59592f..200829a 100644
15 @@ -28,7 +28,7 @@ noinst_HEADERS = argz.h logger.h options.h stats.h tftp.h tftp_def.h tftp_io.h
16 tftpd.h tftpd_pcre.h tftpd_mtftp.h
19 -atftp_LDADD = $(LIBTERMCAP) $(LIBREADLINE)
20 +atftp_LDADD = $(LIBTERMCAP) $(LIBREADLINE) $(LIBPTHREAD)
21 atftp_SOURCES = tftp.c tftp_io.c logger.c options.c tftp_def.c tftp_file.c \