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]
15 lines
328 B
C
15 lines
328 B
C
--- src/preprocessors/flow/flow.h.orig Fri Dec 19 14:43:23 2003
|
|
+++ src/preprocessors/flow/flow.h Fri Dec 19 14:43:48 2003
|
|
@@ -1,7 +1,11 @@
|
|
#ifndef _FLOW_H
|
|
#define _FLOW_H
|
|
|
|
-#include <stdint.h>
|
|
+#if HAVE_STDINT_H
|
|
+ #include <stdint.h>
|
|
+#else
|
|
+ #include <inttypes.h>
|
|
+#endif
|
|
|
|
#include "flow_error.h"
|
|
#include "util_math.h"
|