On Windows, the netmod plugin now must be linked with wsock32

This commit is contained in:
Volker Ruppert 2013-08-21 15:19:47 +00:00
parent 8ae2e48693
commit 7783e39b77
2 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@ bx_%.dll: %.o
# special link rules for plugins that require more than one object file
bx_netmod.dll: netmod.o $(NETLOW_OBJS)
$(CXX) $(CXXFLAGS) -shared -o bx_netmod.dll netmod.o $(NETLOW_OBJS) $(WIN32_DLL_IMPORT_LIBRARY)
$(CXX) $(CXXFLAGS) -shared -o bx_netmod.dll netmod.o $(NETLOW_OBJS) $(WIN32_DLL_IMPORT_LIBRARY) -lwsock32
##### end DLL section