summaryrefslogtreecommitdiff
path: root/www/lighttpd/patches/patch-ac
blob: 61154bd437bf05314854e7ceef340a81fd70cf52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
$NetBSD: patch-ac,v 1.3 2007/09/10 13:59:51 jlam Exp $

--- src/etag.c.orig	Mon Aug 27 21:54:45 2007
+++ src/etag.c
@@ -1,5 +1,15 @@
+#ifdef HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include <string.h>
-#include <stdint.h>
+
+#ifdef HAVE_STDINT_H
+# include <stdint.h>
+#endif
+#ifdef HAVE_INTTYPES_H
+# include <inttypes.h>
+#endif
 
 #include "buffer.h"
 #include "etag.h"