From 0a894c9cb379e5a86f7f7f3a4c15c0d9b1949250 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20B=C3=BChler?= Date: Tue, 26 Feb 2008 16:21:20 +0000 Subject: [PATCH] r2094@chromobil: stefan | 2008-02-26 17:10:49 +0100 Fix #1413: including of stdint.h/inttypes.h in etag.c git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-1.4.x@2089 152afb58-edef-0310-8abb-c4023f1b3aa9 --- src/etag.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/etag.c b/src/etag.c index c1146c30..630956ff 100644 --- a/src/etag.c +++ b/src/etag.c @@ -1,5 +1,14 @@ #include + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + +#if defined HAVE_STDINT_H #include +#elif defined HAVE_INTTYPES_H +#include +#endif #include "buffer.h" #include "etag.h"