Fix definition for InfluxDB in configure.ac Issue #98
This commit is contained in:
parent
bddfdb1397
commit
eab02996bd
@ -2,6 +2,7 @@
|
|||||||
- Fix bug in sorting when guessing flow direction. Issue #92
|
- Fix bug in sorting when guessing flow direction. Issue #92
|
||||||
- Update nfdump.1 man page for xsrcport & xdstport aggregations. Request #109
|
- Update nfdump.1 man page for xsrcport & xdstport aggregations. Request #109
|
||||||
- Fix minor bugs
|
- Fix minor bugs
|
||||||
|
- Fix definition for InfluxDB in configure.ac Issue #98
|
||||||
|
|
||||||
2018-04-01
|
2018-04-01
|
||||||
- Add program exit in nfx.c after panic with correupt data file
|
- Add program exit in nfx.c after panic with correupt data file
|
||||||
|
@ -281,6 +281,10 @@ LZ4LIB_API int LZ4_compress_fast_continue (LZ4_stream_t* streamPtr, const char*
|
|||||||
*/
|
*/
|
||||||
LZ4LIB_API int LZ4_saveDict (LZ4_stream_t* streamPtr, char* safeBuffer, int dictSize);
|
LZ4LIB_API int LZ4_saveDict (LZ4_stream_t* streamPtr, char* safeBuffer, int dictSize);
|
||||||
|
|
||||||
|
// add missing prototypes
|
||||||
|
int LZ4_compress_fast_force(const char* source, char* dest, int inputSize, int maxOutputSize, int acceleration);
|
||||||
|
int LZ4_compress_forceExtDict (LZ4_stream_t* LZ4_dict, const char* source, char* dest, int inputSize);
|
||||||
|
int LZ4_decompress_safe_forceExtDict(const char* source, char* dest, int compressedSize, int maxOutputSize, const char* dictStart, int dictSize);
|
||||||
|
|
||||||
/*-**********************************************
|
/*-**********************************************
|
||||||
* Streaming Decompression Functions
|
* Streaming Decompression Functions
|
||||||
|
@ -189,8 +189,10 @@ AS_IF([test "x$influxdb" = xyes], [
|
|||||||
AC_CHECK_LIB([curl], [curl_free],,[AC_MSG_ERROR([libcurl required!])])
|
AC_CHECK_LIB([curl], [curl_free],,[AC_MSG_ERROR([libcurl required!])])
|
||||||
|
|
||||||
AC_DEFINE_UNQUOTED(HAVE_INFLUXDB, 1, [enable stats to influxdb])
|
AC_DEFINE_UNQUOTED(HAVE_INFLUXDB, 1, [enable stats to influxdb])
|
||||||
], [
|
AM_CONDITIONAL(INFLXDB, true)
|
||||||
])
|
],
|
||||||
|
AM_CONDITIONAL(INFLXDB, false)
|
||||||
|
)
|
||||||
|
|
||||||
AC_ARG_ENABLE(nftrack,
|
AC_ARG_ENABLE(nftrack,
|
||||||
[ --enable-nftrack Build nftrack used by PortTracker; default is NO],
|
[ --enable-nftrack Build nftrack used by PortTracker; default is NO],
|
||||||
|
Loading…
x
Reference in New Issue
Block a user