Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-gpu
Commits
02fc220d
Commit
02fc220d
authored
Apr 09, 2009
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Contribs: live-win32-nonblock.patch is unneeded now (applied upstream)
parent
c9f729ea
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
16 deletions
+0
-16
extras/contrib/src/Makefile
extras/contrib/src/Makefile
+0
-3
extras/contrib/src/Patches/live-win32-nonblock.patch
extras/contrib/src/Patches/live-win32-nonblock.patch
+0
-13
No files found.
extras/contrib/src/Makefile
View file @
02fc220d
...
...
@@ -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
...
...
extras/contrib/src/Patches/live-win32-nonblock.patch
deleted
100644 → 0
View file @
c9f729ea
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
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment