We need to emulate sendmsg/recvmsg to support rtp on Windows. Will do
authorPierre Ossman <ossman@cendio.se>
Tue, 18 Apr 2006 13:36:59 +0000 (13:36 +0000)
committerPierre Ossman <ossman@cendio.se>
Tue, 18 Apr 2006 13:36:59 +0000 (13:36 +0000)
this some time in the future.

git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@740 fefdeb5f-60dc-0310-8127-8f9354f1896f

src/Makefile.am

index c586437..f6fc509 100644 (file)
@@ -589,8 +589,13 @@ modlib_LTLIBRARIES = \
                libprotocol-simple.la \
                libprotocol-esound.la \
                libprotocol-native.la \
-               libprotocol-http.la \
+               libprotocol-http.la
+
+# We need to emulate sendmsg/recvmsg to support this on Win32
+if !OS_IS_WIN32
+modlib_LTLIBRARIES += \
                librtp.la
+endif
 
 if HAVE_X11
 polypcoreinclude_HEADERS += \
@@ -721,9 +726,14 @@ modlib_LTLIBRARIES += \
                module-null-sink.la \
                module-esound-sink.la \
                module-http-protocol-tcp.la \
-               module-detect.la \
+               module-detect.la
+
+# See comment at librtp.la above
+if !OS_IS_WIN32
+modlib_LTLIBRARIES += \
                module-rtp-send.la \
                module-rtp-recv.la
+endif
 
 if HAVE_AF_UNIX
 modlib_LTLIBRARIES += \