Fix link errors in tests: wait-process uses gettext-h.
authorBruno Haible <bruno@clisp.org>
Mon, 30 May 2011 22:44:51 +0000 (00:44 +0200)
committerBruno Haible <bruno@clisp.org>
Mon, 30 May 2011 22:44:51 +0000 (00:44 +0200)
* 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>.

ChangeLog
modules/nonblocking-pipe-tests
modules/nonblocking-socket-tests

index f287f4b..7baa007 100644 (file)
--- 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
index 428452f..fa3b771 100644 (file)
@@ -32,3 +32,4 @@ configure.ac:
 Makefile.am:
 TESTS += test-nonblocking-pipe.sh
 check_PROGRAMS += test-nonblocking-pipe-main test-nonblocking-pipe-child
+test_nonblocking_pipe_main_LDADD = $(LDADD) @LIBINTL@
index 368bed8..2eb883e 100644 (file)
@@ -42,5 +42,5 @@ configure.ac:
 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)