mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-28 04:34:54 -04:00
Merge branch '629-fix-isc_md-on-windows' into 'master'
Resolve "Windows Build Errors After !355 (Refactor Message Digest and HMAC API)" Closes #629 See merge request isc-projects/bind9!908
This commit is contained in:
commit
89b186b604
2 changed files with 4 additions and 0 deletions
|
|
@ -26,7 +26,9 @@
|
|||
#include <config.h>
|
||||
|
||||
#include <stdbool.h>
|
||||
#ifndef WIN32
|
||||
#include <arpa/inet.h>
|
||||
#endif /* WIN32 */
|
||||
|
||||
#include <isc/buffer.h>
|
||||
#include <isc/hmac.h>
|
||||
|
|
|
|||
|
|
@ -327,6 +327,7 @@ copy InstallFiles ..\Build\Release\
|
|||
<ClInclude Include="..\include\isc\list.h" />
|
||||
<ClInclude Include="..\include\isc\log.h" />
|
||||
<ClInclude Include="..\include\isc\magic.h" />
|
||||
<ClInclude Include="..\include\isc\md.h" />
|
||||
<ClInclude Include="..\include\isc\mem.h" />
|
||||
<ClInclude Include="..\include\isc\meminfo.h" />
|
||||
<ClInclude Include="..\include\isc\msgcat.h" />
|
||||
|
|
@ -437,6 +438,7 @@ copy InstallFiles ..\Build\Release\
|
|||
<ClCompile Include="..\lfsr.c" />
|
||||
<ClCompile Include="..\lib.c" />
|
||||
<ClCompile Include="..\log.c" />
|
||||
<ClCompile Include="..\md.c" />
|
||||
<ClCompile Include="..\mem.c" />
|
||||
<ClCompile Include="..\mutexblock.c" />
|
||||
<ClCompile Include="..\netaddr.c" />
|
||||
|
|
|
|||
Loading…
Reference in a new issue