From 3f255ce1312d0828ffb5f011c6efb42a4d385e36 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Mon, 23 Nov 2009 14:33:23 +0000 Subject: 2009-11-23 Joel Sherrill * mghttpd/mongoose.c: crypto_sw table is not used when SSL is disabled. RTEMS does not have flockfile/funlockfile. --- cpukit/mghttpd/mongoose.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'cpukit/mghttpd') diff --git a/cpukit/mghttpd/mongoose.c b/cpukit/mghttpd/mongoose.c index b5cbb957d0..f863847491 100644 --- a/cpukit/mghttpd/mongoose.c +++ b/cpukit/mghttpd/mongoose.c @@ -168,6 +168,10 @@ typedef struct DIR { #if HAVE_SYS_MMAN_H #include #endif +#if defined(__rtems__) +#define flockfile(x) (void) 0 +#define funlockfile(x) (void) 0 +#endif #include #include #include @@ -307,6 +311,7 @@ static struct ssl_func ssl_sw[] = { {NULL, NULL} }; +#if !defined(NO_SSL) /* * Similar array as ssl_sw. These functions are located in different lib. */ @@ -316,6 +321,7 @@ static struct ssl_func crypto_sw[] = { {"CRYPTO_set_id_callback", NULL}, {NULL, NULL} }; +#endif /* * Month names -- cgit v1.2.3