+2020-11-17 Bruno Haible <bruno@clisp.org>
+
+ Fix link errors on AIX.
+ * modules/clean-temp (Link): Link with $(LIBTHREAD).
+ * modules/getumask (Link): Link with $(LIBTHREAD).
+ * modules/getumask-tests (Makefile.am): Link test-getumask with
+ $(LIBTHREAD).
+ * modules/supersede (Link): Link with $(LIBTHREAD).
+ * modules/supersede-tests (Makefile.am): Link test-supersede with
+ $(LIBTHREAD).
+ * modules/fatal-signal (Link): New section.
+ * modules/execute (Link): New section.
+ * modules/csharpexec (Link): Link with $(LIBTHREAD).
+ * modules/javaexec (Link): Link with $(LIBTHREAD).
+ * modules/spawn-pipe (Link): New section.
+ * modules/spawn-pipe-tests (Makefile.am): Link test-spawn-pipe-main with
+ $(LIBTHREAD).
+ * modules/csharpcomp (Link): Link with $(LIBTHREAD).
+ * modules/javacomp (Link): Link with $(LIBTHREAD).
+ * modules/javaversion (Link): Link with $(LIBTHREAD).
+ * modules/pipe-filter-gi (Link): New section.
+ * modules/pipe-filter-gi-tests (Makefile.am): Link test-pipe-filter-gi1,
+ test-pipe-filter-gi2-main with $(LIBTHREAD).
+ * modules/pipe-filter-ii (Link): New section.
+ * modules/pipe-filter-ii-tests (Makefile.am): Link test-pipe-filter-ii1,
+ test-pipe-filter-ii2-main with $(LIBTHREAD).
+ * modules/term-style-control (Link): New section.
+ * modules/term-style-control-tests (Makefile.am): Link
+ test-term-style-control-hello, test-term-style-control-yes with
+ $(LIBTHREAD).
+ * modules/wait-process (Link): New section.
+ * modules/nonblocking-pipe-tests (Makefile.am): Link
+ test-nonblocking-pipe-main with $(LIBTHREAD).
+ * modules/nonblocking-socket-tests (Makefile.am): Link
+ test-nonblocking-socket-main with $(LIBTHREAD).
+
2020-11-16 Bruno Haible <bruno@clisp.org>
Fix link errors on platforms with libunistring.
Makefile.am:
TESTS += test-pipe-filter-gi1.sh test-pipe-filter-gi2.sh
check_PROGRAMS += test-pipe-filter-gi1 test-pipe-filter-gi2-main test-pipe-filter-gi2-child
-test_pipe_filter_gi1_LDADD = $(LDADD) @LIBINTL@
-test_pipe_filter_gi2_main_LDADD = $(LDADD) @LIBINTL@
+test_pipe_filter_gi1_LDADD = $(LDADD) @LIBINTL@ $(LIBTHREAD)
+test_pipe_filter_gi2_main_LDADD = $(LDADD) @LIBINTL@ $(LIBTHREAD)
Makefile.am:
TESTS += test-pipe-filter-ii1.sh test-pipe-filter-ii2.sh
check_PROGRAMS += test-pipe-filter-ii1 test-pipe-filter-ii2-main test-pipe-filter-ii2-child
-test_pipe_filter_ii1_LDADD = $(LDADD) @LIBINTL@
-test_pipe_filter_ii2_main_LDADD = $(LDADD) @LIBINTL@
+test_pipe_filter_ii1_LDADD = $(LDADD) @LIBINTL@ $(LIBTHREAD)
+test_pipe_filter_ii2_main_LDADD = $(LDADD) @LIBINTL@ $(LIBTHREAD)
Makefile.am:
TESTS += test-spawn-pipe.sh
check_PROGRAMS += test-spawn-pipe-main test-spawn-pipe-child
-test_spawn_pipe_main_LDADD = $(LDADD) @LIBINTL@
+test_spawn_pipe_main_LDADD = $(LDADD) @LIBINTL@ $(LIBTHREAD)
# The test-spawn-pipe-child program must be a real executable, not a libtool
# wrapper script, and should link against as few libraries as possible.
# Therefore don't link it against any libraries other than -lc.
TESTS += test-term-style-control-hello
check_PROGRAMS += test-term-style-control-hello
noinst_PROGRAMS += test-term-style-control-yes
-test_term_style_control_hello_LDADD = $(LDADD) @LIBINTL@
-test_term_style_control_yes_LDADD = $(LDADD) @LIBINTL@
+test_term_style_control_hello_LDADD = $(LDADD) @LIBINTL@ $(LIBTHREAD)
+test_term_style_control_yes_LDADD = $(LDADD) @LIBINTL@ $(LIBTHREAD)