diff options
author | Manuel Bachmann <manuel.bachmann@iot.bzh> | 2016-07-08 17:22:44 +0200 |
---|---|---|
committer | Yannick Gicquel <yannick.gicquel@iot.bzh> | 2016-10-11 17:09:07 +0200 |
commit | c37057813c150fa1857d8e975edde723339634d3 (patch) | |
tree | afffa5bc20d6fccc2379828ac7b4897479db9b8d | |
parent | 2c95aab7722e52f53875b5b49c13330271dc4113 (diff) |
Fix compilation with json-c on Yocto
json-c headers are only provided in the "json-c" directory
on Yocto/Poky, so use this as the default path.
Change-Id: If7e318673cbe0fd8a63461f8e75cf0f03f89636b
Signed-off-by: Manuel Bachmann <manuel.bachmann@iot.bzh>
-rw-r--r-- | config.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -25,7 +25,7 @@ #include <sys/mman.h> #include <sys/stat.h> #include <fcntl.h> -#include <json/json.h> +#include <json-c/json.h> #include <pulsecore/core-util.h> #include <pulsecore/pulsecore-config.h> |