Commit 02fc220d authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Contribs: live-win32-nonblock.patch is unneeded now (applied upstream)

parent c9f729ea
......@@ -1268,9 +1268,6 @@ live: live555-$(LIVEDOTCOM_VERSION).tar.gz
$(EXTRACT_GZ)
patch -p0 < Patches/live-noapps.patch
patch -p0 < Patches/live-uselocale.patch
ifdef HAVE_WIN32
patch -p0 < Patches/live-win32-nonblock.patch
endif
.live: live
ifdef HAVE_WIN32
......
Copyright (C) 2009 Rémi Denis-Courmont. Licensed under GPLv2 or higher.
diff -Nru live.orig/liveMedia/RTSPClient.cpp live/liveMedia/RTSPClient.cpp
--- live.orig/liveMedia/RTSPClient.cpp 2009-04-05 20:38:11.000000000 +0300
+++ live/liveMedia/RTSPClient.cpp 2009-04-05 20:39:43.000000000 +0300
@@ -1835,7 +1835,7 @@
}
if (connect(fInputSocketNum, (struct sockaddr*) &remoteName, sizeof remoteName) != 0) {
#if defined(__WIN32__) || defined(_WIN32)
- if (errno != WSAEINPROGRESS) {
+ if (errno != WSAEWOULDBLOCK) {
#else
if (errno != EINPROGRESS) {
#endif
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment