summaryrefslogtreecommitdiff
path: root/win32/contrib/pthreads/diff_to_original.patch
diff options
context:
space:
mode:
Diffstat (limited to 'win32/contrib/pthreads/diff_to_original.patch')
-rw-r--r--win32/contrib/pthreads/diff_to_original.patch21
1 files changed, 0 insertions, 21 deletions
diff --git a/win32/contrib/pthreads/diff_to_original.patch b/win32/contrib/pthreads/diff_to_original.patch
deleted file mode 100644
index 5655d4fc7..000000000
--- a/win32/contrib/pthreads/diff_to_original.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-Removed the wrapper for strtok_r from public header.
-
-Index: pthread.h
-===================================================================
-RCS file: /home/valtri/CVS/xine-lib/win32/contrib/pthreads/pthread.h,v
-retrieving revision 1.1.1.1
-diff -u -p -r1.1.1.1 pthread.h
---- pthread.h 26 Jul 2004 15:27:53 -0000 1.1.1.1
-+++ pthread.h 16 Sep 2004 21:07:10 -0000
-@@ -978,11 +978,6 @@ int * _errno( void );
- * actually exist on WIN32.
- */
-
--#if !defined(__MINGW32__)
--#define strtok_r( _s, _sep, _lasts ) \
-- ( *(_lasts) = strtok( (_s), (_sep) ) )
--#endif /* !__MINGW32__ */
--
- #define asctime_r( _tm, _buf ) \
- ( strcpy( (_buf), asctime( (_tm) ) ), \
- (_buf) )