Skip to content

Commit

Permalink
Merge pull request #1 from syohex/header-path
Browse files Browse the repository at this point in the history
Build: fix include paths
  • Loading branch information
edsiper committed May 20, 2015
2 parents b7a4ecc + 234ecd3 commit bb3e045
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion plugins/in_cpu/in_cpu.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@
#include <msgpack.h>
#include <fluent-bit/flb_input.h>
#include <fluent-bit/flb_config.h>
#include <fluent-bit/in_cpu.h>

#include "in_cpu.h"

/* Retrieve CPU load from the system (through ProcFS) */
static inline double proc_cpu_load()
Expand Down
3 changes: 2 additions & 1 deletion plugins/in_kmsg/in_kmsg.c
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,12 @@
#include <inttypes.h>

#include <msgpack.h>
#include <fluent-bit/in_kmsg.h>
#include <fluent-bit/flb_input.h>
#include <fluent-bit/flb_utils.h>
#include <fluent-bit/flb_engine.h>

#include "in_kmsg.h"

/*
* Note: Functions timeval_diff() and in_kmsg_boot_time() are based
* on syslog-ng-3.5 source code.
Expand Down
3 changes: 2 additions & 1 deletion plugins/in_xbee/in_xbee.c
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,12 @@
#include <unistd.h>

#include <xbee.h>
#include <fluent-bit/in_xbee.h>
#include <fluent-bit/flb_input.h>
#include <fluent-bit/flb_utils.h>
#include <fluent-bit/flb_engine.h>

#include "in_xbee.h"

/*
* We need to declare the xbee_init() function here as for some reason the
* libxbee-v3 on prepare.h file is not exporting the symbol or something
Expand Down

0 comments on commit bb3e045

Please sign in to comment.