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
40e5d0d1
Commit
40e5d0d1
authored
Jun 05, 2008
by
Pavlov Konstantin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Contrib: Remove libdvdnav-win32 patch, applied upstream.
parent
25ef68ba
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
18 deletions
+0
-18
extras/contrib/src/Makefile
extras/contrib/src/Makefile
+0
-3
extras/contrib/src/Patches/libdvdnav-win32.patch
extras/contrib/src/Patches/libdvdnav-win32.patch
+0
-15
No files found.
extras/contrib/src/Makefile
View file @
40e5d0d1
...
...
@@ -1174,9 +1174,6 @@ ifdef SVN
libdvdnav
:
$(SVN)
co
$(LIBDVDNAV_SVN)
libdvdnav
patch
-d
libdvdnav
-p1
< Patches/libdvdnav.patch
ifdef
HAVE_WIN32
patch
-p0
< Patches/libdvdnav-win32.patch
endif
(
cd
$@
;
./autogen.sh noconfig
)
else
libdvdnav-$(LIBDVDNAV_VERSION).tar.gz
:
...
...
extras/contrib/src/Patches/libdvdnav-win32.patch
deleted
100644 → 0
View file @
25ef68ba
--- libdvdnav.orig/src/remap.c 2007-12-23 13:48:04.000000000 +0100
+++ libdvdnav/src/remap.c 2007-12-23 13:49:45.000000000 +0100
@@ -203,7 +203,11 @@
remap_t *map;
/* Build the map filename */
- home = getenv("HOME"); assert(home);
+ home = getenv("HOME");
+ if (!home) {
+ fprintf( MSG_OUT, "libdvdnav: Unable to find map for title '%s' (HOME directory not found)\n", title);
+ return NULL;
+ }
snprintf(fname, sizeof(fname), "%s/.dvdnav/%s.map", home, title);
/* Open the map file */
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