sys_select tests: Fix link error on MSVC 9.
authorBruno Haible <bruno@clisp.org>
Tue, 4 Oct 2011 01:02:05 +0000 (03:02 +0200)
committerBruno Haible <bruno@clisp.org>
Tue, 4 Oct 2011 01:02:05 +0000 (03:02 +0200)
* modules/sys_select-c++-tests (Makefile.am): Link test-sys_select-c++
with $(LIB_SELECT) instead of $(LIBSOCKET).

ChangeLog
modules/sys_select-c++-tests

index 3df0838..28a1811 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
 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.
        * lib/sys_select.in.h: On native Windows, include <io.h>.
 
index cd9c85e..e9f0b25 100644 (file)
@@ -15,5 +15,5 @@ if ANSICXX
 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