pinos: Use correct spa/ include paths

Don't include spa/include/spa/... but just spa/..., as otherwise it is
not possible to include these (installed) header files externally.
This commit is contained in:
Wim Taymans 2017-05-11 11:47:03 +02:00
parent 5cb35d8bc1
commit 361d2b6a87
8 changed files with 19 additions and 19 deletions

View file

@ -20,8 +20,8 @@
#ifndef __PINOS_INTROSPECT_H__
#define __PINOS_INTROSPECT_H__
#include <spa/include/spa/defs.h>
#include <spa/include/spa/format.h>
#include <spa/defs.h>
#include <spa/format.h>
#ifdef __cplusplus
extern "C" {

View file

@ -24,8 +24,8 @@
extern "C" {
#endif
#include <spa/include/spa/list.h>
#include <spa/include/spa/loop.h>
#include <spa/list.h>
#include <spa/loop.h>
#include <pinos/client/sig.h>
typedef struct _PinosLoop PinosLoop;

View file

@ -35,7 +35,7 @@ extern "C" {
#include <pinos/client/subscribe.h>
#include <pinos/client/utils.h>
#include <spa/include/spa/type-map.h>
#include <spa/type-map.h>
void pinos_init (int *argc, char **argv[]);

View file

@ -26,7 +26,7 @@ extern "C" {
typedef struct _PinosProperties PinosProperties;
#include <spa/include/spa/dict.h>
#include <spa/dict.h>
struct _PinosProperties {
SpaDict dict;

View file

@ -20,7 +20,7 @@
#ifndef __PINOS_SIGNAL_H__
#define __PINOS_SIGNAL_H__
#include <spa/include/spa/list.h>
#include <spa/list.h>
#ifdef __cplusplus
extern "C" {

View file

@ -20,8 +20,8 @@
#ifndef __PINOS_STREAM_H__
#define __PINOS_STREAM_H__
#include <spa/include/spa/buffer.h>
#include <spa/include/spa/format.h>
#include <spa/buffer.h>
#include <spa/format.h>
#include <pinos/client/context.h>

View file

@ -24,11 +24,11 @@
extern "C" {
#endif
#include <spa/include/spa/type-map.h>
#include <spa/include/spa/event-node.h>
#include <spa/include/spa/command-node.h>
#include <spa/include/spa/monitor.h>
#include <spa/include/spa/alloc-param.h>
#include <spa/type-map.h>
#include <spa/event-node.h>
#include <spa/command-node.h>
#include <spa/monitor.h>
#include <spa/alloc-param.h>
#include <pinos/client/map.h>
#include <pinos/client/transport.h>

View file

@ -21,11 +21,11 @@
#include <errno.h>
#include <sys/mman.h>
#include <spa/include/spa/type-map.h>
#include <spa/include/spa/format-utils.h>
#include <spa/include/spa/video/format-utils.h>
#include <spa/include/spa/format-builder.h>
#include <spa/include/spa/props.h>
#include <spa/type-map.h>
#include <spa/format-utils.h>
#include <spa/video/format-utils.h>
#include <spa/format-builder.h>
#include <spa/props.h>
#include <pinos/client/pinos.h>
#include <pinos/client/sig.h>