diff options
Diffstat (limited to 'src/input/libdvdnav/diff_against_cvs.patch')
-rw-r--r-- | src/input/libdvdnav/diff_against_cvs.patch | 57 |
1 files changed, 0 insertions, 57 deletions
diff --git a/src/input/libdvdnav/diff_against_cvs.patch b/src/input/libdvdnav/diff_against_cvs.patch deleted file mode 100644 index 607923d4d..000000000 --- a/src/input/libdvdnav/diff_against_cvs.patch +++ /dev/null @@ -1,57 +0,0 @@ ---- src/input/libdvdnav/dvdnav.c -+++ src/input/libdvdnav/dvdnav.c -@@ -71,7 +71,7 @@ - struct timeval time; - - /* Create a new structure */ -- fprintf(MSG_OUT, "libdvdnav: Using dvdnav version %s from http://dvd.sf.net\n", VERSION); -+ fprintf(MSG_OUT, "libdvdnav: Using dvdnav version %s from http://xine.sf.net\n", VERSION); - - (*dest) = NULL; - this = (dvdnav_t*)malloc(sizeof(dvdnav_t)); ---- src/input/libdvdnav/dvd_reader.c -+++ src/input/libdvdnav/dvd_reader.c -@@ -44,6 +44,7 @@ - #include <mntent.h> - #endif - -+#include "compat.h" - #include "dvd_udf.h" - #include "dvd_input.h" - #include "dvd_reader.h" -@@ -393,7 +394,7 @@ - - if( cdir >= 0 ) { - chdir( path_copy ); -- new_path = getcwd( NULL, PATH_MAX ); -+ new_path = getcwd( NULL, XINE_PATH_MAX ); - fchdir( cdir ); - close( cdir ); - if( new_path ) { -@@ -573,7 +574,7 @@ - - static int findDVDFile( dvd_reader_t *dvd, const char *file, char *filename ) - { -- char video_path[ PATH_MAX + 1 ]; -+ char video_path[ XINE_PATH_MAX + 1 ]; - const char *nodirfile; - int ret; - -@@ -607,7 +608,7 @@ - */ - static dvd_file_t *DVDOpenFilePath( dvd_reader_t *dvd, char *filename ) - { -- char full_path[ PATH_MAX + 1 ]; -+ char full_path[ XINE_PATH_MAX + 1 ]; - dvd_file_t *dvd_file; - struct stat fileinfo; - dvd_input_t dev; -@@ -691,7 +692,7 @@ - static dvd_file_t *DVDOpenVOBPath( dvd_reader_t *dvd, int title, int menu ) - { - char filename[ MAX_UDF_FILE_NAME_LEN ]; -- char full_path[ PATH_MAX + 1 ]; -+ char full_path[ XINE_PATH_MAX + 1 ]; - struct stat fileinfo; - dvd_file_t *dvd_file; - int i; |