gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[libmicrohttpd] 22/22: w32: sync projects with autotools


From: gnunet
Subject: [libmicrohttpd] 22/22: w32: sync projects with autotools
Date: Sun, 25 Sep 2022 17:43:57 +0200

This is an automated email from the git hooks/post-receive script.

karlson2k pushed a commit to branch master
in repository libmicrohttpd.

commit b6dcf9d2596101272f6fd82f4dcc83c2337c4a79
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
AuthorDate: Sat Sep 24 20:14:20 2022 +0300

    w32: sync projects with autotools
---
 w32/common/MHD_config.h                  |  6 ++++++
 w32/common/libmicrohttpd-files.vcxproj   |  4 ++--
 w32/common/libmicrohttpd-filters.vcxproj | 12 ++++++------
 3 files changed, 14 insertions(+), 8 deletions(-)

diff --git a/w32/common/MHD_config.h b/w32/common/MHD_config.h
index d3ac3f7e..04e39ea3 100644
--- a/w32/common/MHD_config.h
+++ b/w32/common/MHD_config.h
@@ -80,6 +80,9 @@
 /* Enable SHA-256 hashing support. */
 #define MHD_SHA256_SUPPORT 1
 
+/* Enable SHA-512/256 hashing support. */
+#define MHD_SHA512_256_SUPPORT 1
+
 /* Enable postprocessor.c */
 #define HAVE_POSTPROCESSOR 1
 
@@ -177,6 +180,9 @@
 #endif /* C11 */
 #endif /* VS 2015 and later */
 
+/* Define to 1 if you have the 'rand' function. */
+#define HAVE_RAND 1
+
 /* *** Headers information *** */
 /* Not really important as not used by code currently */
 
diff --git a/w32/common/libmicrohttpd-files.vcxproj 
b/w32/common/libmicrohttpd-files.vcxproj
index c78a2c7c..0790a3eb 100644
--- a/w32/common/libmicrohttpd-files.vcxproj
+++ b/w32/common/libmicrohttpd-files.vcxproj
@@ -1,7 +1,6 @@
 <?xml version="1.0" encoding="utf-8"?>
 <Project ToolsVersion="4.0" 
xmlns="http://schemas.microsoft.com/developer/msbuild/2003";>
   <ItemGroup>
-    <ClCompile Include="$(MhdSrc)microhttpd\base64.c" />
     <ClCompile Include="$(MhdSrc)microhttpd\basicauth.c" />
     <ClCompile Include="$(MhdSrc)microhttpd\connection.c" />
     <ClCompile Include="$(MhdSrc)microhttpd\daemon.c" />
@@ -10,6 +9,7 @@
     <ClCompile Include="$(MhdSrc)microhttpd\internal.c" />
     <ClCompile Include="$(MhdSrc)microhttpd\md5.c" />
     <ClCompile Include="$(MhdSrc)microhttpd\sha256.c" />
+    <ClCompile Include="$(MhdSrc)microhttpd\sha512_256.c" />
     <ClCompile Include="$(MhdSrc)microhttpd\memorypool.c" />
     <ClCompile Include="$(MhdSrc)microhttpd\mhd_mono_clock.c" />
     <ClCompile Include="$(MhdSrc)microhttpd\postprocessor.c" />
@@ -32,7 +32,6 @@
     <ClInclude Include="$(MhdSrc)include\microhttpd.h" />
     <ClInclude Include="$(MhdSrc)include\mhd_options.h" />
     <ClInclude Include="$(MhdSrc)include\platform.h" />
-    <ClInclude Include="$(MhdSrc)microhttpd\base64.h" />
     <ClInclude Include="$(MhdSrc)microhttpd\basicauth.h" />
     <ClInclude Include="$(MhdSrc)microhttpd\connection.h" />
     <ClInclude Include="$(MhdSrc)microhttpd\digestauth.h" />
@@ -42,6 +41,7 @@
     <ClInclude Include="$(MhdSrc)microhttpd\md5.h" />
     <ClInclude Include="$(MhdSrc)microhttpd\mhd_sha256_wrap.h" />
     <ClInclude Include="$(MhdSrc)microhttpd\sha256.h" />
+    <ClInclude Include="$(MhdSrc)microhttpd\sha512_256.h" />
     <ClInclude Include="$(MhdSrc)microhttpd\memorypool.h" />
     <ClInclude Include="$(MhdSrc)microhttpd\mhd_assert.h" />
     <ClInclude Include="$(MhdSrc)microhttpd\mhd_align.h" />
diff --git a/w32/common/libmicrohttpd-filters.vcxproj 
b/w32/common/libmicrohttpd-filters.vcxproj
index 346fc9d7..27fd6f18 100644
--- a/w32/common/libmicrohttpd-filters.vcxproj
+++ b/w32/common/libmicrohttpd-filters.vcxproj
@@ -40,9 +40,6 @@
     <ClInclude Include="$(MhdW32Common)MHD_config.h">
       <Filter>Internal Headers</Filter>
     </ClInclude>
-    <ClInclude Include="$(MhdSrc)microhttpd\base64.h">
-      <Filter>Internal Headers</Filter>
-    </ClInclude>
     <ClInclude Include="$(MhdSrc)microhttpd\basicauth.h">
       <Filter>Internal Headers</Filter>
     </ClInclude>
@@ -70,6 +67,9 @@
     <ClInclude Include="$(MhdSrc)microhttpd\sha256.h">
       <Filter>Internal Headers</Filter>
     </ClInclude>
+    <ClInclude Include="$(MhdSrc)microhttpd\sha512_256.h">
+      <Filter>Internal Headers</Filter>
+    </ClInclude>
     <ClInclude Include="$(MhdSrc)microhttpd\memorypool.h">
       <Filter>Internal Headers</Filter>
     </ClInclude>
@@ -135,9 +135,6 @@
     </ClInclude>
   </ItemGroup>
   <ItemGroup>
-    <ClCompile Include="$(MhdSrc)microhttpd\base64.c">
-      <Filter>Source Files</Filter>
-    </ClCompile>
     <ClCompile Include="$(MhdSrc)microhttpd\basicauth.c">
       <Filter>Source Files</Filter>
     </ClCompile>
@@ -162,6 +159,9 @@
     <ClCompile Include="$(MhdSrc)microhttpd\sha256.c">
       <Filter>Source Files</Filter>
     </ClCompile>
+    <ClCompile Include="$(MhdSrc)microhttpd\sha512_256.c">
+      <Filter>Source Files</Filter>
+    </ClCompile>
     <ClCompile Include="$(MhdSrc)microhttpd\memorypool.c">
       <Filter>Source Files</Filter>
     </ClCompile>

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]