forked from Lainports/freebsd-ports
- Install some additional documentation [1] - Fix WITH_MYSQL, WITH_ODBC and WITH_POSTGRES knobs [2] PR: 60400 [1], 59445 [2] Submitted by: Nicolas Jombart <ecu@ipv42.net> [1], Ken Stailey <kstailey@yahoo.com> [2]
17 lines
339 B
C
17 lines
339 B
C
--- src/preprocessors/flow/flow_stat.h.orig Fri Dec 19 14:37:49 2003
|
|
+++ src/preprocessors/flow/flow_stat.h Fri Dec 19 14:39:27 2003
|
|
@@ -2,8 +2,13 @@
|
|
#define _FLOW_STAT_H
|
|
|
|
#include <stdio.h>
|
|
-#include <stdint.h>
|
|
#include <time.h>
|
|
+
|
|
+#if HAVE_STDINT_H
|
|
+ #include <stdint.h>
|
|
+#else
|
|
+ #include <inttypes.h>
|
|
+#endif
|
|
|
|
#include "flow.h"
|
|
|