From: Mike Brady <4265913+mikebrady@users.noreply.github.com> Date: Mon, 8 Aug 2022 11:17:20 +0000 (+0100) Subject: Add conditional test for Darwin. X-Git-Tag: 4.1-rc1~24^2~42^2~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=074457c8574897bea04ba896d8c6a62bd13f2b58;p=thirdparty%2Fshairport-sync.git Add conditional test for Darwin. --- diff --git a/configure.ac b/configure.ac index 356d3d4c..333f186f 100644 --- a/configure.ac +++ b/configure.ac @@ -50,6 +50,7 @@ fi AM_CONDITIONAL([BUILD_FOR_LINUX], [test "x${with_os}" = xlinux ]) AM_CONDITIONAL([BUILD_FOR_FREEBSD], [test "x${with_os}" = xfreebsd ]) AM_CONDITIONAL([BUILD_FOR_OPENBSD], [test "x${with_os}" = xopenbsd ]) +AM_CONDITIONAL([BUILD_FOR_DARWIN], [test "x${with_os}" = xdarwin ]) ##### Some build systems are not fully using pkg-config, so we can use the flag ${with_pkg_config} on a case-by-case basis ##### to control how to deal with them