Skip to content

Commit a949011

Browse files
Merge branch 'master' into 0.9.0
2 parents 41e9b0a + 44f6e62 commit a949011

File tree

53 files changed

+3175
-5722
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+3175
-5722
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
* Click the drop down next to "Preprocessor Definitions" and select <Edit>
6969
* In the text box that pops up, paste
7070
```
71-
_WIN32_WINNT=0x500
71+
_WIN32_WINNT=0x501
7272
```
7373
* Adding to new/existing project:
7474
1. Add the ofxLibwebsockets source files to the C++ Linker
@@ -112,7 +112,7 @@
112112
* Click the drop down next to "Preprocessor Definitions" and select *Edit*
113113
* In the text box that pops up, paste
114114
```
115-
_WIN32_WINNT=0x500
115+
_WIN32_WINNT=0x501
116116
```
117117
118118
* Linux

addon_config.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,8 @@ vs:
9191
# when parsing the file system looking for include paths exclude this for all or
9292
# a specific platform
9393
ADDON_INCLUDES_EXCLUDE
94-
ADDON_LIBS = libs/libwebsockets/lib/win32/Release/websockets_static.lib
95-
ADDON_LIBS += libs/libwebsockets/lib/win32/Release/ZLIB.lib
94+
ADDON_LIBS = libs/libwebsockets/lib/win32/Release/websockets.lib
95+
ADDON_LIBS += libs/libwebsockets/lib/win32/Release/zlib_internal.lib
9696

9797
linuxarmv6l:
9898
ADDON_LDFLAGS = -lssl

check_compile_osx.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/bash
2+
3+
for d in example_*/ ; do
4+
echo "$d"
5+
cd $d
6+
xcodebuild
7+
done

example_client_blob/example_client_blob.vcxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
<Optimization>Disabled</Optimization>
5555
<MinimalRebuild>true</MinimalRebuild>
5656
<BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks>
57-
<PreprocessorDefinitions>_WIN32_WINNT=0x500;%(PreprocessorDefinitions)</PreprocessorDefinitions>
57+
<PreprocessorDefinitions>_WIN32_WINNT=0x501;%(PreprocessorDefinitions)</PreprocessorDefinitions>
5858
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
5959
<WarningLevel>Level3</WarningLevel>
6060
<DebugInformationFormat>EditAndContinue</DebugInformationFormat>
@@ -65,14 +65,14 @@
6565
<GenerateDebugInformation>true</GenerateDebugInformation>
6666
<SubSystem>Console</SubSystem>
6767
<RandomizedBaseAddress>false</RandomizedBaseAddress>
68-
<AdditionalDependencies>%(AdditionalDependencies);websockets_static.lib;ZLIB.lib;turbojpeg-static.lib</AdditionalDependencies>
68+
<AdditionalDependencies>%(AdditionalDependencies);websockets.lib;zlib_internal.lib;turbojpeg-static.lib</AdditionalDependencies>
6969
<AdditionalLibraryDirectories>%(AdditionalLibraryDirectories);..\..\..\addons\ofxLibwebsockets\libs\libwebsockets\lib\win32\Release;..\..\..\addons\ofxTurboJpeg\libs\turbo-jpeg\lib\win32</AdditionalLibraryDirectories>
7070
</Link>
7171
</ItemDefinitionGroup>
7272
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
7373
<ClCompile>
7474
<WholeProgramOptimization>false</WholeProgramOptimization>
75-
<PreprocessorDefinitions>_WIN32_WINNT=0x500;%(PreprocessorDefinitions)</PreprocessorDefinitions>
75+
<PreprocessorDefinitions>_WIN32_WINNT=0x501;%(PreprocessorDefinitions)</PreprocessorDefinitions>
7676
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
7777
<WarningLevel>Level3</WarningLevel>
7878
<AdditionalIncludeDirectories>%(AdditionalIncludeDirectories);src;..\..\..\addons\ofxLibwebsockets\libs\jsoncpp;..\..\..\addons\ofxLibwebsockets\libs\jsoncpp\json;..\..\..\addons\ofxLibwebsockets\libs\libwebsockets\include\;..\..\..\addons\ofxLibwebsockets\libs\ofxLibwebsockets\include;..\..\..\addons\ofxLibwebsockets\libs\ofxLibwebsockets\include\ofxLibwebsockets;..\..\..\addons\ofxLibwebsockets\libs\ofxLibwebsockets\src;..\..\..\addons\ofxLibwebsockets\src;..\..\..\addons\ofxLibwebsockets\libs\libwebsockets\include\win32port;..\..\..\addons\ofxLibwebsockets\libs\libwebsockets\include\win32port\win32helpers;..\..\..\addons\ofxTurboJpeg\src\;..\..\..\addons\ofxTurboJpeg\libs\turbo-jpeg\include</AdditionalIncludeDirectories>
@@ -85,7 +85,7 @@
8585
<OptimizeReferences>true</OptimizeReferences>
8686
<EnableCOMDATFolding>true</EnableCOMDATFolding>
8787
<RandomizedBaseAddress>false</RandomizedBaseAddress>
88-
<AdditionalDependencies>%(AdditionalDependencies);websockets_static.lib;ZLIB.lib;turbojpeg-static.lib</AdditionalDependencies>
88+
<AdditionalDependencies>%(AdditionalDependencies);websockets.lib;zlib_internal.lib;turbojpeg-static.lib</AdditionalDependencies>
8989
<AdditionalLibraryDirectories>%(AdditionalLibraryDirectories);..\..\..\addons\ofxLibwebsockets\libs\libwebsockets\lib\win32\Release;..\..\..\addons\ofxTurboJpeg\libs\turbo-jpeg\lib\win32</AdditionalLibraryDirectories>
9090
</Link>
9191
</ItemDefinitionGroup>

0 commit comments

Comments
 (0)