From 746a8412899aa83495d1919b9a8f6fa4221c599a Mon Sep 17 00:00:00 2001 From: Matej Sekoranja Date: Fri, 31 Jan 2014 11:39:30 +0100 Subject: [PATCH] added missing ws2_32 to build testInetAddressUtils for 64-bit windows --- testApp/utils/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/testApp/utils/Makefile b/testApp/utils/Makefile index 9b68a40..37620d5 100644 --- a/testApp/utils/Makefile +++ b/testApp/utils/Makefile @@ -15,7 +15,10 @@ TESTS += testHexDump TESTPROD_HOST += testInetAddressUtils testInetAddressUtils = testInetAddressUtils.cpp # Avoid errors from inlined htonl() etc. used as template argument +# TODO this is gcc only testInetAddressUtils_CXXFLAGS = -O0 +# needed for 64-bit Windows +testInetAddressUtils_SYS_LIBS_WIN32 += ws2_32 TESTS += testInetAddressUtils TESTSCRIPTS_HOST += $(TESTS:%=%.t)