Commit https://github.com/juhovh/shairplay/commit/71b45f8a5ede847fd6aa176d0c550e587b79a3d9 break compilation. Assume, USE_LIBDL macro is not defined, AND ( HAVE_LIBDL is not defined, OR __APPLE__ is defined ). Then, #if defined(WIN32) || USE_LIBDL cause pre-processor error because pre-processor || operator right-hand operand is not defined. Solution? Simple:
Commit https://github.com/juhovh/shairplay/commit/71b45f8a5ede847fd6aa176d0c550e587b79a3d9 break compilation. Assume,
USE_LIBDL
macro is not defined, AND (HAVE_LIBDL
is not defined, OR__APPLE__
is defined ). Then,#if defined(WIN32) || USE_LIBDL
cause pre-processor error because pre-processor||
operator right-hand operand is not defined. Solution? Simple:Best regards