Renaming src/external -> src/3rdparty

We should eventually move more 3rdparty code in here.
This commit is contained in:
Robin Sommer 2013-05-14 17:14:08 -07:00
parent de88645d05
commit abb350b535
6 changed files with 7 additions and 6 deletions

View file

@ -449,7 +449,7 @@ set(bro_SRCS
input/readers/Benchmark.cc input/readers/Benchmark.cc
input/readers/SQLite.cc input/readers/SQLite.cc
external/sqlite3.c 3rdparty/sqlite3.c
nb_dns.c nb_dns.c
digest.h digest.h

View file

@ -9,9 +9,9 @@
#include <vector> #include <vector>
#include "../ReaderBackend.h" #include "../ReaderBackend.h"
#include "../../threading/AsciiFormatter.h"
#include "../../external/sqlite3.h" #include "threading/AsciiFormatter.h"
#include "3rdparty/sqlite3.h"
namespace input { namespace reader { namespace input { namespace reader {

View file

@ -8,8 +8,9 @@
#include "config.h" #include "config.h"
#include "../WriterBackend.h" #include "../WriterBackend.h"
#include "../../external/sqlite3.h"
#include "../../threading/AsciiFormatter.h" #include "threading/AsciiFormatter.h"
#include "3rdparty/sqlite3.h"
namespace logging { namespace writer { namespace logging { namespace writer {

View file

@ -60,7 +60,7 @@ extern "C" void OPENSSL_add_all_algorithms_conf(void);
#include "binpac_bro.h" #include "binpac_bro.h"
#include "external/sqlite3.h" #include "3rdparty/sqlite3.h"
Brofiler brofiler; Brofiler brofiler;