From 1a26dd3434d596cbf0f2f11bf2002bbc0cff5516 Mon Sep 17 00:00:00 2001 From: Pierre Ossman Date: Fri, 20 Sep 2013 10:02:53 +0200 Subject: [PATCH] build-sys: don't build raop modules on win32 as they need librtp librtp is very posix-y and cannot currently be built for Windows. So avoid trying to build any modules that depend on it. --- src/Makefile.am | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Makefile.am b/src/Makefile.am index 1ac8a165f..d7ef395b0 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1349,6 +1349,9 @@ modlibexec_LTLIBRARIES += \ module-bluez5-device.la endif +# RAOP depends on RTP, and we don't support RTP on Windows, see comment at +# librtp.la above. +if !OS_IS_WIN32 if HAVE_OPENSSL modlibexec_LTLIBRARIES += \ libraop.la \ @@ -1358,6 +1361,7 @@ modlibexec_LTLIBRARIES += \ module-raop-discover.la endif endif +endif if HAVE_DBUS if HAVE_FFTW