]> git.ipfire.org Git - thirdparty/shairport-sync.git/commitdiff
Add conditional test for Darwin.
authorMike Brady <4265913+mikebrady@users.noreply.github.com>
Mon, 8 Aug 2022 11:17:20 +0000 (12:17 +0100)
committerMike Brady <4265913+mikebrady@users.noreply.github.com>
Mon, 8 Aug 2022 11:17:20 +0000 (12:17 +0100)
configure.ac

index 356d3d4c031fa282e912cd7b4d2002bd204d9cd1..333f186ffa05f9e645708b39778b7c446f72d3a2 100644 (file)
@@ -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