From b6fe7d6b5b3f9e233ab9644ee6002e0753f64d82 Mon Sep 17 00:00:00 2001 From: Pierre Ossman Date: Fri, 20 Sep 2013 10:02:53 +0200 Subject: [PATCH 2/8] raop: 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 | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Makefile.am b/src/Makefile.am index 8392953..155d672 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1332,6 +1332,8 @@ pulselibexec_PROGRAMS += \ proximity-helper endif +# See comment at librtp.la above +if !OS_IS_WIN32 if HAVE_OPENSSL modlibexec_LTLIBRARIES += \ libraop.la \ @@ -1341,6 +1343,7 @@ modlibexec_LTLIBRARIES += \ module-raop-discover.la endif endif +endif if HAVE_DBUS if HAVE_FFTW -- 1.8.3.1