# HG changeset patch # User Bruno Haible # Date 1316394616 -7200 # Node ID b156fb9969f7ad352a2e09fd5dbe8d8b9f06fc36 # Parent 22ebda56bdbd64be295823c9c135a1b8d69ef202 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). diff --git a/ChangeLog b/ChangeLog --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,11 @@ 2011-09-18 Bruno Haible + 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. diff --git a/modules/accept-tests b/modules/accept-tests --- 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@ diff --git a/modules/accept4-tests b/modules/accept4-tests --- 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@