From: Bruno Haible Date: Mon, 30 May 2011 22:44:51 +0000 (+0200) Subject: Fix link errors in tests: wait-process uses gettext-h. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=224c034db62061450d1e01ec4b2696682cb65c17;p=pspp 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 . --- diff --git a/ChangeLog b/ChangeLog index f287f4b241..7baa007bb9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2011-05-31 Bruno Haible + + 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 . + 2011-05-29 Paul Eggert assert-h: work around 'verify' incompatibility diff --git a/modules/nonblocking-pipe-tests b/modules/nonblocking-pipe-tests index 428452f78e..fa3b771f77 100644 --- a/modules/nonblocking-pipe-tests +++ b/modules/nonblocking-pipe-tests @@ -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@ diff --git a/modules/nonblocking-socket-tests b/modules/nonblocking-socket-tests index 368bed8828..2eb883ed33 100644 --- a/modules/nonblocking-socket-tests +++ b/modules/nonblocking-socket-tests @@ -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)