aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2015-08-22 15:45:36 +0000
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2015-08-22 15:45:36 +0000
commit0d2688a98bfc4f32b393fc581ec04e97d9b11449 (patch)
tree51509e78f003722145a051f86b10368bc7ede2cd
parent4680ad00f7441d6b40e2310700a4bab18048bcad (diff)
downloadlibmicrohttpd-0d2688a98bfc4f32b393fc581ec04e97d9b11449.tar.gz
libmicrohttpd-0d2688a98bfc4f32b393fc581ec04e97d9b11449.zip
fix file names, include missing files to Makefile
-rw-r--r--src/microhttpd/Makefile.am1
-rw-r--r--src/microhttpd/daemon.c2
-rw-r--r--src/microhttpd/md5.c2
-rw-r--r--src/microhttpd/mhd_byteorder.h (renamed from src/microhttpd/MHD_byteorder.h)2
-rw-r--r--src/microhttpd/mhd_limits.h (renamed from src/microhttpd/MHD_limits.h)2
-rw-r--r--src/microhttpd/response.c2
-rw-r--r--w32/VS2013/libmicrohttpd.vcxproj4
-rw-r--r--w32/VS2013/libmicrohttpd.vcxproj.filters4
8 files changed, 10 insertions, 9 deletions
diff --git a/src/microhttpd/Makefile.am b/src/microhttpd/Makefile.am
index 40879036..020579d6 100644
--- a/src/microhttpd/Makefile.am
+++ b/src/microhttpd/Makefile.am
@@ -62,6 +62,7 @@ libmicrohttpd_la_SOURCES = \
62 daemon.c \ 62 daemon.c \
63 internal.c internal.h \ 63 internal.c internal.h \
64 memorypool.c memorypool.h \ 64 memorypool.c memorypool.h \
65 mhd_limits.h mhd_byteorder.h \
65 response.c response.h 66 response.c response.h
66libmicrohttpd_la_CPPFLAGS = \ 67libmicrohttpd_la_CPPFLAGS = \
67 $(AM_CPPFLAGS) $(MHD_LIB_CPPFLAGS) \ 68 $(AM_CPPFLAGS) $(MHD_LIB_CPPFLAGS) \
diff --git a/src/microhttpd/daemon.c b/src/microhttpd/daemon.c
index f4da2c8c..d8540abe 100644
--- a/src/microhttpd/daemon.c
+++ b/src/microhttpd/daemon.c
@@ -36,7 +36,7 @@
36#include "response.h" 36#include "response.h"
37#include "connection.h" 37#include "connection.h"
38#include "memorypool.h" 38#include "memorypool.h"
39#include "MHD_limits.h" 39#include "mhd_limits.h"
40#include "autoinit_funcs.h" 40#include "autoinit_funcs.h"
41 41
42#if HAVE_SEARCH_H 42#if HAVE_SEARCH_H
diff --git a/src/microhttpd/md5.c b/src/microhttpd/md5.c
index 906ac356..d92a42ee 100644
--- a/src/microhttpd/md5.c
+++ b/src/microhttpd/md5.c
@@ -18,7 +18,7 @@
18/* Based on OpenBSD modifications */ 18/* Based on OpenBSD modifications */
19 19
20#include "md5.h" 20#include "md5.h"
21#include "MHD_byteorder.h" 21#include "mhd_byteorder.h"
22 22
23#define PUT_64BIT_LE(cp, value) do { \ 23#define PUT_64BIT_LE(cp, value) do { \
24 (cp)[7] = (uint8_t)((value) >> 56); \ 24 (cp)[7] = (uint8_t)((value) >> 56); \
diff --git a/src/microhttpd/MHD_byteorder.h b/src/microhttpd/mhd_byteorder.h
index 9cce33e5..66689804 100644
--- a/src/microhttpd/MHD_byteorder.h
+++ b/src/microhttpd/mhd_byteorder.h
@@ -18,7 +18,7 @@
18*/ 18*/
19 19
20/** 20/**
21 * @file microhttpd/MHD_byteorder.h 21 * @file microhttpd/mhd_byteorder.h
22 * @brief macro definitions for host byte order 22 * @brief macro definitions for host byte order
23 * @author Karlson2k (Evgeny Grin) 23 * @author Karlson2k (Evgeny Grin)
24 */ 24 */
diff --git a/src/microhttpd/MHD_limits.h b/src/microhttpd/mhd_limits.h
index 2236b08e..5ce2f9c4 100644
--- a/src/microhttpd/MHD_limits.h
+++ b/src/microhttpd/mhd_limits.h
@@ -18,7 +18,7 @@
18*/ 18*/
19 19
20/** 20/**
21 * @file microhttpd/MHD_limits.h 21 * @file microhttpd/mhd_limits.h
22 * @brief limits values definitions 22 * @brief limits values definitions
23 * @author Karlson2k (Evgeny Grin) 23 * @author Karlson2k (Evgeny Grin)
24 */ 24 */
diff --git a/src/microhttpd/response.c b/src/microhttpd/response.c
index 12948352..2cca3c74 100644
--- a/src/microhttpd/response.c
+++ b/src/microhttpd/response.c
@@ -28,7 +28,7 @@
28 28
29#include "internal.h" 29#include "internal.h"
30#include "response.h" 30#include "response.h"
31#include "MHD_limits.h" 31#include "mhd_limits.h"
32 32
33#if defined(_WIN32) && defined(MHD_W32_MUTEX_) 33#if defined(_WIN32) && defined(MHD_W32_MUTEX_)
34#ifndef WIN32_LEAN_AND_MEAN 34#ifndef WIN32_LEAN_AND_MEAN
diff --git a/w32/VS2013/libmicrohttpd.vcxproj b/w32/VS2013/libmicrohttpd.vcxproj
index 3a2e3128..d5beffe8 100644
--- a/w32/VS2013/libmicrohttpd.vcxproj
+++ b/w32/VS2013/libmicrohttpd.vcxproj
@@ -92,8 +92,8 @@
92 <ClInclude Include="..\..\src\microhttpd\internal.h" /> 92 <ClInclude Include="..\..\src\microhttpd\internal.h" />
93 <ClInclude Include="..\..\src\microhttpd\md5.h" /> 93 <ClInclude Include="..\..\src\microhttpd\md5.h" />
94 <ClInclude Include="..\..\src\microhttpd\memorypool.h" /> 94 <ClInclude Include="..\..\src\microhttpd\memorypool.h" />
95 <ClInclude Include="..\..\src\microhttpd\MHD_byteorder.h" /> 95 <ClInclude Include="..\..\src\microhttpd\mhd_byteorder.h" />
96 <ClInclude Include="..\..\src\microhttpd\MHD_limits.h" /> 96 <ClInclude Include="..\..\src\microhttpd\mhd_limits.h" />
97 <ClInclude Include="..\..\src\microhttpd\reason_phrase.h" /> 97 <ClInclude Include="..\..\src\microhttpd\reason_phrase.h" />
98 <ClInclude Include="..\..\src\microhttpd\response.h" /> 98 <ClInclude Include="..\..\src\microhttpd\response.h" />
99 <ClInclude Include="..\..\src\microhttpd\tsearch.h" /> 99 <ClInclude Include="..\..\src\microhttpd\tsearch.h" />
diff --git a/w32/VS2013/libmicrohttpd.vcxproj.filters b/w32/VS2013/libmicrohttpd.vcxproj.filters
index 5c221f0b..50a9b4d3 100644
--- a/w32/VS2013/libmicrohttpd.vcxproj.filters
+++ b/w32/VS2013/libmicrohttpd.vcxproj.filters
@@ -105,10 +105,10 @@
105 <ClInclude Include="..\..\src\include\autoinit_funcs.h"> 105 <ClInclude Include="..\..\src\include\autoinit_funcs.h">
106 <Filter>Header Files</Filter> 106 <Filter>Header Files</Filter>
107 </ClInclude> 107 </ClInclude>
108 <ClInclude Include="..\..\src\microhttpd\MHD_limits.h"> 108 <ClInclude Include="..\..\src\microhttpd\mhd_limits.h">
109 <Filter>Source Files</Filter> 109 <Filter>Source Files</Filter>
110 </ClInclude> 110 </ClInclude>
111 <ClInclude Include="..\..\src\microhttpd\MHD_byteorder.h"> 111 <ClInclude Include="..\..\src\microhttpd\mhd_byteorder.h">
112 <Filter>Source Files</Filter> 112 <Filter>Source Files</Filter>
113 </ClInclude> 113 </ClInclude>
114 </ItemGroup> 114 </ItemGroup>