[vlc-commits] Remove old MSVC and Borland work-arounds
Rémi Denis-Courmont
git at videolan.org
Mon Sep 3 11:45:15 CEST 2012
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Mon Sep 3 12:45:11 2012 +0300| [92e270ebd6b682e9110f49857f9d567b36540eb4] | committer: Rémi Denis-Courmont
Remove old MSVC and Borland work-arounds
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=92e270ebd6b682e9110f49857f9d567b36540eb4
---
include/vlc_common.h | 28 ----------------------------
1 file changed, 28 deletions(-)
diff --git a/include/vlc_common.h b/include/vlc_common.h
index ca928fe..db03b81 100644
--- a/include/vlc_common.h
+++ b/include/vlc_common.h
@@ -35,10 +35,6 @@
/*****************************************************************************
* Required vlc headers
*****************************************************************************/
-#if defined( _MSC_VER )
-# pragma warning( disable : 4244 )
-#endif
-
#include "vlc_config.h"
/*****************************************************************************
@@ -784,15 +780,6 @@ static inline void SetQWLE (void *p, uint64_t qw)
/* Stuff defined in src/extras/libc.c */
#if defined(WIN32)
-/* win32, cl and icl support */
-# if defined( _MSC_VER ) || !defined( __MINGW32__ )
-# define __attribute__(x)
-# define S_IFBLK 0x3000 /* Block */
-# define S_ISBLK(m) (0)
-# define S_ISCHR(m) (0)
-# define S_ISFIFO(m) (((m)&_S_IFMT) == _S_IFIFO)
-# define S_ISREG(m) (((m)&_S_IFMT) == _S_IFREG)
-# endif
/* several type definitions */
# if defined( __MINGW32__ )
@@ -808,21 +795,6 @@ static inline void SetQWLE (void *p, uint64_t qw)
# endif
# endif
-# if defined( _MSC_VER )
-# if !defined( _OFF_T_DEFINED )
- typedef __int64 off_t;
-# define _OFF_T_DEFINED
-# else
- /* for wx compatibility typedef long off_t; */
-# define off_t __int64
-# endif
-# endif
-
-# if defined( __BORLANDC__ )
-# undef off_t
-# define off_t unsigned __int64
-# endif
-
# ifndef O_NONBLOCK
# define O_NONBLOCK 0
# endif
More information about the vlc-commits
mailing list