From 2eb8ec93a2ad79cffe3371867e1a8951e65fed82 Mon Sep 17 00:00:00 2001 From: Arun Raghavan Date: Thu, 27 Dec 2018 17:32:30 +0530 Subject: [PATCH] meson: Fix some config generation warnings --- meson.build | 3 +++ 1 file changed, 3 insertions(+) diff --git a/meson.build b/meson.build index 52dbd8cf1..736365699 100644 --- a/meson.build +++ b/meson.build @@ -85,6 +85,9 @@ cdata.set_quoted('PA_ALSA_PROFILE_SETS_DIR', join_paths(datadir, 'pulseaudio', ' cdata.set_quoted('DESKTOPFILEDIR', join_paths(datadir, 'applications')) # Platform specifics +# First some defaults to keep config file generation happy +cdata.set('HAVE_COREAUDIO', 0) +cdata.set('HAVE_WAVEOUT', 0) # FIXME: This was not tested. Maybe some flags should better be CFLAGS, # rather than ending up in the config.h file? if host_machine.system() == 'darwin'