diff options
| author | Albrecht Schlosser <albrechts.fltk@online.de> | 2018-06-19 09:30:37 +0000 |
|---|---|---|
| committer | Albrecht Schlosser <albrechts.fltk@online.de> | 2018-06-19 09:30:37 +0000 |
| commit | e34c06ffc90fc20258fcf9def7b820fd71a36055 (patch) | |
| tree | fff7c22d25c72d172408e91e4c47285d6368a84f /src/CMakeLists.txt | |
| parent | 9e212ec6f9e30c85d0d59d8265d83e55a23346f8 (diff) | |
Windows: Disable dynamic linking/loading of winsock dll.
This *preliminary* commit disables dynamic linking/loading of winsock
(ws2_32.dll) and links it statically to fluid and all FLTK test
programs. This is done by conditional code (#if 0) that disables the
old code and #defines some macros. This *must* be removed and replaced
with the original socket interface once the code has proved to work as
expected.
Note: example programs in the examples/ folder are not yet modified.
Todo: check and fix examples/Makefile if necessary.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.4@12947 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/CMakeLists.txt')
| -rw-r--r-- | src/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 38fed7bc9..08eb9194f 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -504,7 +504,7 @@ if (USE_SDL) endif(USE_SDL) if (WIN32) - list (APPEND OPTIONAL_LIBS comctl32) + list (APPEND OPTIONAL_LIBS comctl32 ws2_32) endif (WIN32) if (FLTK_HAVE_CAIRO) |
