changeset 14848:701eb96461de

Fix link errors in tests: wait-process uses gettext-h. * modules/nonblocking-pipe-tests (Makefile.am): Set test_nonblocking_pipe_main_LDADD. * modules/nonblocking-socket-tests (Makefile.am): Link test-nonblocking-socket-main against $(LIBINTL). Reported by Tom G. Christensen <tgc@jupiterrise.com>.
author Bruno Haible <bruno@clisp.org>
date Tue, 31 May 2011 00:44:51 +0200
parents 5afc11b3902a
children 0ea75dff5595
files ChangeLog modules/nonblocking-pipe-tests modules/nonblocking-socket-tests
diffstat 3 files changed, 11 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2011-05-31  Bruno Haible  <bruno@clisp.org>
+
+	Fix link errors in tests: wait-process uses gettext-h.
+	* modules/nonblocking-pipe-tests (Makefile.am): Set
+	test_nonblocking_pipe_main_LDADD.
+	* modules/nonblocking-socket-tests (Makefile.am): Link
+	test-nonblocking-socket-main against $(LIBINTL).
+	Reported by Tom G. Christensen <tgc@jupiterrise.com>.
+
 2011-05-29  Paul Eggert  <eggert@cs.ucla.edu>
 
 	assert-h: work around 'verify' incompatibility
--- a/modules/nonblocking-pipe-tests
+++ b/modules/nonblocking-pipe-tests
@@ -32,3 +32,4 @@
 Makefile.am:
 TESTS += test-nonblocking-pipe.sh
 check_PROGRAMS += test-nonblocking-pipe-main test-nonblocking-pipe-child
+test_nonblocking_pipe_main_LDADD = $(LDADD) @LIBINTL@
--- a/modules/nonblocking-socket-tests
+++ b/modules/nonblocking-socket-tests
@@ -42,5 +42,5 @@
 Makefile.am:
 TESTS += test-nonblocking-socket.sh
 check_PROGRAMS += test-nonblocking-socket-main test-nonblocking-socket-child
-test_nonblocking_socket_main_LDADD = $(LDADD) $(LIBSOCKET)
+test_nonblocking_socket_main_LDADD = $(LDADD) $(LIBSOCKET) @LIBINTL@
 test_nonblocking_socket_child_LDADD = $(LDADD) $(LIBSOCKET)