changeset 15655:b156fb9969f7

accept, accept4 tests: Avoid link error on Solaris. * modules/accept-tests (Makefile.am): Link test-accept against $(LIBSOCKET). * modules/accept4-tests (Makefile.am): Link test-accept4 against $(LIBSOCKET).
author Bruno Haible <bruno@clisp.org>
date Mon, 19 Sep 2011 03:10:16 +0200
parents 22ebda56bdbd
children 54ccb1d64384
files ChangeLog modules/accept-tests modules/accept4-tests
diffstat 3 files changed, 8 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
 2011-09-18  Bruno Haible  <bruno@clisp.org>
 
+	accept, accept4 tests: Avoid link error on Solaris.
+	* modules/accept-tests (Makefile.am): Link test-accept against
+	$(LIBSOCKET).
+	* modules/accept4-tests (Makefile.am): Link test-accept4 against
+	$(LIBSOCKET).
+
 	accept4: Avoid link error on Solaris.
 	* modules/accept4 (Link): New section.
 
--- a/modules/accept-tests
+++ b/modules/accept-tests
@@ -11,3 +11,4 @@
 Makefile.am:
 TESTS += test-accept
 check_PROGRAMS += test-accept
+test_accept_LDADD = $(LDADD) @LIBSOCKET@
--- a/modules/accept4-tests
+++ b/modules/accept4-tests
@@ -13,3 +13,4 @@
 Makefile.am:
 TESTS += test-accept4
 check_PROGRAMS += test-accept4
+test_accept4_LDADD = $(LDADD) @LIBSOCKET@