Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Windows project #119

Merged
merged 2 commits into from
Mar 19, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 2 additions & 3 deletions mk/win32/re.vcxproj
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|Win32">
<Configuration>Debug</Configuration>
Expand Down Expand Up @@ -121,7 +121,6 @@
<ClCompile Include="..\..\src\ice\chklist.c" />
<ClCompile Include="..\..\src\ice\comp.c" />
<ClCompile Include="..\..\src\ice\connchk.c" />
<ClCompile Include="..\..\src\ice\gather.c" />
<ClCompile Include="..\..\src\ice\ice.c" />
<ClCompile Include="..\..\src\ice\icem.c" />
<ClCompile Include="..\..\src\ice\icesdp.c" />
Expand Down Expand Up @@ -316,7 +315,7 @@
<ClCompile>
<AdditionalIncludeDirectories>..\..\include;..\..\..\misc;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32;_CONSOLE;HAVE_INET_PTON;HAVE_INET_NTOP;FD_SETSIZE=1024;HAVE_SELECT;HAVE_IO_H;_CRT_SECURE_NO_DEPRECATE;WIN32_LEAN_AND_MEAN;NDEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
<RuntimeLibrary>MultiThreaded</RuntimeLibrary>
<PrecompiledHeader />
<WarningLevel>Level3</WarningLevel>
<DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
Expand Down
3 changes: 0 additions & 3 deletions mk/win32/re.vcxproj.filters
Original file line number Diff line number Diff line change
Expand Up @@ -731,9 +731,6 @@
<ClCompile Include="..\..\src\ice\connchk.c">
<Filter>src\ice</Filter>
</ClCompile>
<ClCompile Include="..\..\src\ice\gather.c">
<Filter>src\ice</Filter>
</ClCompile>
<ClCompile Include="..\..\src\ice\ice.c">
<Filter>src\ice</Filter>
</ClCompile>
Expand Down
2 changes: 2 additions & 0 deletions src/mqueue/mqueue.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
*
* Copyright (C) 2010 Creytiv.com
*/
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#include <re_types.h>
#include <re_fmt.h>
#include <re_mem.h>
Expand Down