mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-24 07:00:05 -05:00
rename signal -> sig
Meson puts the directory of the source file in the include path and then it picks up our signal.h instead of the system one...
This commit is contained in:
parent
497febf2f1
commit
3dada4731c
10 changed files with 13 additions and 18 deletions
|
|
@ -16,7 +16,7 @@ pinos_module_spa_c_args = [
|
|||
|
||||
pinos_module_spa = shared_library('pinos-module-spa', pinos_module_spa_sources,
|
||||
c_args : pinos_module_spa_c_args,
|
||||
include_directories : [configinc, pinosinc, spa_inc],
|
||||
include_directories : [configinc, spa_inc],
|
||||
link_with : spalib,
|
||||
install : true,
|
||||
install_dir : '@0@/pinos-0.1'.format(get_option('libdir')),
|
||||
|
|
|
|||
|
|
@ -21,9 +21,9 @@
|
|||
#include <getopt.h>
|
||||
#include <limits.h>
|
||||
|
||||
#include <client/utils.h>
|
||||
#include <server/core.h>
|
||||
#include <server/module.h>
|
||||
#include <pinos/client/utils.h>
|
||||
#include <pinos/server/core.h>
|
||||
#include <pinos/server/module.h>
|
||||
|
||||
#include "spa-monitor.h"
|
||||
#include "spa-node.h"
|
||||
|
|
|
|||
|
|
@ -20,8 +20,8 @@
|
|||
#ifndef __PINOS_SPA_NODE_H__
|
||||
#define __PINOS_SPA_NODE_H__
|
||||
|
||||
#include <server/core.h>
|
||||
#include <server/node.h>
|
||||
#include <pinos/server/core.h>
|
||||
#include <pinos/server/node.h>
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue