mirror of
https://github.com/zeek/zeek.git
synced 2025-10-12 11:38:20 +00:00
actually make sqlite work again (tests passed because the writer
was not actually defined because of the define.)
This commit is contained in:
parent
2b8c2f2316
commit
6c99df508c
10 changed files with 179 additions and 98 deletions
|
@ -9,9 +9,7 @@
|
|||
#include "readers/Raw.h"
|
||||
#include "readers/Benchmark.h"
|
||||
|
||||
#ifdef USE_SQLITE
|
||||
#include "readers/SQLite.h"
|
||||
#endif
|
||||
|
||||
#include "Event.h"
|
||||
#include "EventHandler.h"
|
||||
|
@ -38,9 +36,7 @@ ReaderDefinition input_readers[] = {
|
|||
{ BifEnum::Input::READER_ASCII, "Ascii", 0, reader::Ascii::Instantiate },
|
||||
{ BifEnum::Input::READER_RAW, "Raw", 0, reader::Raw::Instantiate },
|
||||
{ BifEnum::Input::READER_BENCHMARK, "Benchmark", 0, reader::Benchmark::Instantiate },
|
||||
#ifdef USE_SQLITE
|
||||
{ BifEnum::Input::READER_SQLITE, "SQLite", 0, reader::SQLite::Instantiate },
|
||||
#endif
|
||||
|
||||
// End marker
|
||||
{ BifEnum::Input::READER_DEFAULT, "None", 0, (ReaderBackend* (*)(ReaderFrontend* frontend))0 }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue