summaryrefslogtreecommitdiffstats
path: root/contrib/libdvdread/P05-mingw-large-file.patch
diff options
context:
space:
mode:
authorRodeo <[email protected]>2014-01-27 10:34:30 +0000
committerRodeo <[email protected]>2014-01-27 10:34:30 +0000
commitad43544d33d59b431392c8728a710bef43a43bd8 (patch)
tree215b89df57fca0daf09a5aad7f51745c0bbe3d2e /contrib/libdvdread/P05-mingw-large-file.patch
parent96fbc744385ddcc15617ba449d1521c30f66da3d (diff)
Switch to VideoLAN's repositories for libdvdread and libdvdnav.
All our patches have been merged, and they seem to be the only repos for these libs to see any development activity. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6002 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'contrib/libdvdread/P05-mingw-large-file.patch')
-rw-r--r--contrib/libdvdread/P05-mingw-large-file.patch28
1 files changed, 0 insertions, 28 deletions
diff --git a/contrib/libdvdread/P05-mingw-large-file.patch b/contrib/libdvdread/P05-mingw-large-file.patch
deleted file mode 100644
index 480d1e955..000000000
--- a/contrib/libdvdread/P05-mingw-large-file.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-diff -Naur libdvdread.orig/src/dvd_input.h libdvdread/src/dvd_input.h
---- libdvdread.orig/src/dvd_input.h 2008-10-03 13:11:30.000000000 -0700
-+++ libdvdread/src/dvd_input.h 2009-04-23 13:47:04.000000000 -0700
-@@ -29,6 +29,24 @@
-
- #define DVDINPUT_READ_DECRYPT (1 << 0)
-
-+#if defined( __MINGW32__ )
-+# undef lseek
-+# define lseek _lseeki64
-+# undef fseeko
-+# define fseeko fseeko64
-+# undef ftello
-+# define ftello ftello64
-+# define flockfile(...)
-+# define funlockfile(...)
-+# define getc_unlocked getc
-+# undef off_t
-+# define off_t off64_t
-+# undef stat
-+# define stat _stati64
-+# define fstat _fstati64
-+# define wstat _wstati64
-+#endif
-+
- typedef struct dvd_input_s *dvd_input_t;
-
- /**