meson.build: drop HAVE_CONFIG_H

This is an autotools leftover, with meson we're always guaranteed to have
the config.h file.
This commit is contained in:
Peter Hutterer 2021-06-09 10:41:45 +10:00
parent 5ba43b8349
commit da339c286f
42 changed files with 0 additions and 108 deletions

View file

@ -33,9 +33,7 @@
* </refsect2>
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "gstpipewiresrc.h"
#include "gstpipewiresink.h"

View file

@ -22,9 +22,7 @@
* DEALINGS IN THE SOFTWARE.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <gst/gst.h>

View file

@ -22,9 +22,7 @@
* DEALINGS IN THE SOFTWARE.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <unistd.h>
#include <fcntl.h>

View file

@ -22,9 +22,7 @@
* DEALINGS IN THE SOFTWARE.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <string.h>

View file

@ -26,9 +26,7 @@
#ifndef __GST_PIPEWIRE_DEVICE_PROVIDER_H__
#define __GST_PIPEWIRE_DEVICE_PROVIDER_H__
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <pipewire/pipewire.h>

View file

@ -22,9 +22,7 @@
* DEALINGS IN THE SOFTWARE.
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <unistd.h>

View file

@ -33,9 +33,7 @@
* </refsect2>
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "gstpipewiresink.h"
#include <string.h>

View file

@ -33,9 +33,7 @@
* </refsect2>
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "gstpipewiresrc.h"
#include "gstpipewireformat.h"

View file

@ -22,13 +22,8 @@ pipewire_gst_headers = [
'gstpipewiresrc.h',
]
pipewire_gst_c_args = [
'-DHAVE_CONFIG_H',
]
pipewire_gst = shared_library('gstpipewire',
pipewire_gst_sources,
c_args : pipewire_gst_c_args,
include_directories : [configinc, spa_inc],
dependencies : [gst_dep, pipewire_dep],
install : true,