changeset 15823:cc69a672efa3

sys_select tests: Fix link error on MSVC 9. * modules/sys_select-c++-tests (Makefile.am): Link test-sys_select-c++ with $(LIB_SELECT) instead of $(LIBSOCKET).
author Bruno Haible <bruno@clisp.org>
date Tue, 04 Oct 2011 03:02:05 +0200
parents c1b5752b5e8d
children 3a4d1597833c
files ChangeLog modules/sys_select-c++-tests
diffstat 2 files changed, 7 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2011-10-03  Bruno Haible  <bruno@clisp.org>
+
+	sys_select tests: Fix link error on MSVC 9.
+	* modules/sys_select-c++-tests (Makefile.am): Link test-sys_select-c++
+	with $(LIB_SELECT) instead of $(LIBSOCKET).
+
 2011-10-03  Bruno Haible  <bruno@clisp.org>
 
 	sys_select: Fix compilation error on mingw.
--- a/modules/sys_select-c++-tests
+++ b/modules/sys_select-c++-tests
@@ -15,5 +15,5 @@
 TESTS += test-sys_select-c++
 check_PROGRAMS += test-sys_select-c++
 test_sys_select_c___SOURCES = test-sys_select-c++.cc
-test_sys_select_c___LDADD = $(LDADD) $(LIBINTL) $(LIBSOCKET) $(LIB_NANOSLEEP)
+test_sys_select_c___LDADD = $(LDADD) $(LIBINTL) $(LIB_SELECT) $(LIB_NANOSLEEP)
 endif