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.
This commit is contained in:
Pierre Ossman 2013-09-20 10:02:53 +02:00 committed by Tanu Kaskinen
parent de0d803e3c
commit 1a26dd3434

View file

@ -1349,6 +1349,9 @@ modlibexec_LTLIBRARIES += \
module-bluez5-device.la module-bluez5-device.la
endif 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 if HAVE_OPENSSL
modlibexec_LTLIBRARIES += \ modlibexec_LTLIBRARIES += \
libraop.la \ libraop.la \
@ -1358,6 +1361,7 @@ modlibexec_LTLIBRARIES += \
module-raop-discover.la module-raop-discover.la
endif endif
endif endif
endif
if HAVE_DBUS if HAVE_DBUS
if HAVE_FFTW if HAVE_FFTW