diff options
author | Christian Grothoff <christian@grothoff.org> | 2013-03-30 21:23:42 +0000 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2013-03-30 21:23:42 +0000 |
commit | bd3f0576c86f2dec6ef0103458b2028e1e4c9524 (patch) | |
tree | 35d74c3086ebc2e8c5bd955c2965ecb19246b246 | |
parent | 9989a7fdf8e90416cb4cbf71c46bb8342a56a35d (diff) | |
download | libmicrohttpd-bd3f0576c86f2dec6ef0103458b2028e1e4c9524.tar.gz libmicrohttpd-bd3f0576c86f2dec6ef0103458b2028e1e4c9524.zip |
-fix build issue
-rw-r--r-- | doc/examples/Makefile.am | 5 | ||||
-rw-r--r-- | src/examples/Makefile.am | 3 | ||||
-rw-r--r-- | src/include/microhttpd.h | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/doc/examples/Makefile.am b/doc/examples/Makefile.am index 5c1ec7f5..bf356eb5 100644 --- a/doc/examples/Makefile.am +++ b/doc/examples/Makefile.am | |||
@@ -18,15 +18,14 @@ noinst_PROGRAMS = \ | |||
18 | basicauthentication \ | 18 | basicauthentication \ |
19 | hellobrowser \ | 19 | hellobrowser \ |
20 | logging \ | 20 | logging \ |
21 | responseheaders \ | 21 | responseheaders |
22 | sessions | ||
23 | 22 | ||
24 | if ENABLE_HTTPS | 23 | if ENABLE_HTTPS |
25 | noinst_PROGRAMS += \ | 24 | noinst_PROGRAMS += \ |
26 | tlsauthentication | 25 | tlsauthentication |
27 | endif | 26 | endif |
28 | if HAVE_POSTPROCESSOR | 27 | if HAVE_POSTPROCESSOR |
29 | noinst_PROGRAMS += simplepost largepost | 28 | noinst_PROGRAMS += simplepost largepost sessions |
30 | endif | 29 | endif |
31 | 30 | ||
32 | if HAVE_W32 | 31 | if HAVE_W32 |
diff --git a/src/examples/Makefile.am b/src/examples/Makefile.am index 717490bb..5d5ed5bd 100644 --- a/src/examples/Makefile.am +++ b/src/examples/Makefile.am | |||
@@ -28,7 +28,8 @@ if ENABLE_HTTPS | |||
28 | noinst_PROGRAMS += https_fileserver_example | 28 | noinst_PROGRAMS += https_fileserver_example |
29 | endif | 29 | endif |
30 | if HAVE_POSTPROCESSOR | 30 | if HAVE_POSTPROCESSOR |
31 | noinst_PROGRAMS += post_example | 31 | noinst_PROGRAMS += \ |
32 | post_example | ||
32 | endif | 33 | endif |
33 | 34 | ||
34 | if ENABLE_DAUTH | 35 | if ENABLE_DAUTH |
diff --git a/src/include/microhttpd.h b/src/include/microhttpd.h index ff7e2785..0d30d74a 100644 --- a/src/include/microhttpd.h +++ b/src/include/microhttpd.h | |||
@@ -106,7 +106,7 @@ extern "C" | |||
106 | /** | 106 | /** |
107 | * Current version of the library. | 107 | * Current version of the library. |
108 | */ | 108 | */ |
109 | #define MHD_VERSION 0x00091900 | 109 | #define MHD_VERSION 0x00092000 |
110 | 110 | ||
111 | /** | 111 | /** |
112 | * MHD-internal return code for "YES". | 112 | * MHD-internal return code for "YES". |