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)
committerIan Beckwith <ianb@erislabs.net>
Thu, 9 Jun 2011 23:05:51 +0000 (00:05 +0100)
* 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>.
(cherry picked from commit 224c034db62061450d1e01ec4b2696682cb65c17)

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

index 0c1cc03..fb9c992 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  Bruno Haible  <bruno@clisp.org>
 
        wctype-h: Avoid namespace pollution on Solaris 2.6.
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)