aboutsummaryrefslogtreecommitdiff
path: root/src/examples
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2010-07-24 15:24:50 +0000
committerChristian Grothoff <christian@grothoff.org>2010-07-24 15:24:50 +0000
commit58d06b22557a9d06dfeff5975c8241def4f88680 (patch)
treea524c1984b580911d614ee84cc35872beaa34c7e /src/examples
parent29529aefd1a38449647a3cea724635e87d01d3ea (diff)
downloadlibmicrohttpd-58d06b22557a9d06dfeff5975c8241def4f88680.tar.gz
libmicrohttpd-58d06b22557a9d06dfeff5975c8241def4f88680.zip
towards using libgnutls directly
Diffstat (limited to 'src/examples')
-rw-r--r--src/examples/Makefile.am1
-rw-r--r--src/examples/https_fileserver_example.c3
2 files changed, 1 insertions, 3 deletions
diff --git a/src/examples/Makefile.am b/src/examples/Makefile.am
index 9ed9aaaf..ae577cec 100644
--- a/src/examples/Makefile.am
+++ b/src/examples/Makefile.am
@@ -2,7 +2,6 @@ SUBDIRS = .
2 2
3AM_CPPFLAGS = \ 3AM_CPPFLAGS = \
4 -I$(top_srcdir)/src/include \ 4 -I$(top_srcdir)/src/include \
5 -I$(top_srcdir)/src/daemon/https \
6 @LIBGCRYPT_CFLAGS@ 5 @LIBGCRYPT_CFLAGS@
7 6
8if USE_COVERAGE 7if USE_COVERAGE
diff --git a/src/examples/https_fileserver_example.c b/src/examples/https_fileserver_example.c
index 63658d5f..2e9db4c2 100644
--- a/src/examples/https_fileserver_example.c
+++ b/src/examples/https_fileserver_example.c
@@ -35,8 +35,7 @@
35#include "platform.h" 35#include "platform.h"
36#include <microhttpd.h> 36#include <microhttpd.h>
37#include <sys/stat.h> 37#include <sys/stat.h>
38 38#include <gnutls/gnutls.h>
39#include "gnutls.h"
40#include <gcrypt.h> 39#include <gcrypt.h>
41 40
42#define BUF_SIZE 1024 41#define BUF_SIZE 1024