X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fafb-hreq.c;fp=src%2Fafb-hreq.c;h=49c1692105e342b46cfd45316d29fb02ef0112d4;hb=0e2b5f5b7fa3a09abf61c8253efce7c7f2b4c444;hp=a2df4b136eee5b0887e23d0742af427f2ae10f13;hpb=f2f086fa99e47ca8b3001831ea3548f8758e1222;p=src%2Fapp-framework-binder.git diff --git a/src/afb-hreq.c b/src/afb-hreq.c index a2df4b13..49c16921 100644 --- a/src/afb-hreq.c +++ b/src/afb-hreq.c @@ -15,6 +15,8 @@ * limitations under the License. */ +#if WITH_LIBMICROHTTPD + #define _GNU_SOURCE #include @@ -31,7 +33,7 @@ #define JSON_C_TO_STRING_NOSLASHESCAPE 0 #endif -#if defined(USE_MAGIC_MIME_TYPE) +#if USE_MAGIC_MIME_TYPE #include #endif @@ -218,7 +220,7 @@ void afb_hreq_reply_free(struct afb_hreq *hreq, unsigned status, size_t size, ch va_end(args); } -#if defined(USE_MAGIC_MIME_TYPE) +#if USE_MAGIC_MIME_TYPE #if !defined(MAGIC_DB) #define MAGIC_DB "/usr/share/misc/magic.mgc" @@ -262,7 +264,7 @@ static const char *mimetype_fd_name(int fd, const char *filename) { const char *result = NULL; -#if defined(INFER_EXTENSION) +#if INFER_EXTENSION /* * Set some well-known extensions * Note that it is mandatory for example for css files in order to provide @@ -307,7 +309,7 @@ static const char *mimetype_fd_name(int fd, const char *filename) } } #endif -#if defined(USE_MAGIC_MIME_TYPE) +#if USE_MAGIC_MIME_TYPE if (result == NULL) result = magic_mimetype_fd(fd); #endif @@ -1001,3 +1003,4 @@ struct afb_hreq *afb_hreq_create() return hreq; } +#endif