From 188f9772c8666aa63ea04105aeae98d04e6c8643 Mon Sep 17 00:00:00 2001 From: Arun Raghavan Date: Mon, 17 May 2021 16:03:28 -0400 Subject: [PATCH] build-sys: Fix a couple of meson warnings Part-of: --- doxygen/doxygen.conf.in | 4 ++-- meson.build | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/doxygen/doxygen.conf.in b/doxygen/doxygen.conf.in index a97c16543..21b6814f0 100644 --- a/doxygen/doxygen.conf.in +++ b/doxygen/doxygen.conf.in @@ -758,8 +758,8 @@ EXCLUDE_SYMBOLS = # directories that contain example code fragments that are included (see # the \include command). -EXAMPLE_PATH = @srcdir@/../src/utils \ - @srcdir@/../src/tests +EXAMPLE_PATH = @top_srcdir@/src/utils \ + @top_srcdir@/src/tests # If the value of the EXAMPLE_PATH tag contains directories, you can use the # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp diff --git a/meson.build b/meson.build index 18fc869a2..5214a6519 100644 --- a/meson.build +++ b/meson.build @@ -164,6 +164,7 @@ cdata.set('top_srcdir', meson.source_root()) # First some defaults to keep config file generation happy cdata.set('HAVE_COREAUDIO', 0) cdata.set('HAVE_WAVEOUT', 0) +cdata.set('OS_IS_FREEBSD', 0) platform_socket_dep = [] platform_dep = []