Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
4f70ea7d
Commit
4f70ea7d
authored
Jun 18, 2015
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Mingw and mingw-w64 has broken C++11 support
parent
fdbcce7d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
10 deletions
+10
-10
include/vlc_fixups.h
include/vlc_fixups.h
+10
-10
No files found.
include/vlc_fixups.h
View file @
4f70ea7d
...
@@ -28,16 +28,16 @@
...
@@ -28,16 +28,16 @@
/* C++11 says there's no need to define __STDC_*_MACROS when including
/* C++11 says there's no need to define __STDC_*_MACROS when including
* inttypes.h and stdint.h. */
* inttypes.h and stdint.h. */
#if defined (__cplusplus) &&
!defined(HAVE_CXX11
)
#if defined (__cplusplus) &&
(!defined(HAVE_CXX11) || defined(__MINGW32__)
)
#ifndef __STDC_FORMAT_MACROS
#
ifndef __STDC_FORMAT_MACROS
#define __STDC_FORMAT_MACROS 1
#
define __STDC_FORMAT_MACROS 1
#endif
#
endif
#ifndef __STDC_CONSTANT_MACROS
#
ifndef __STDC_CONSTANT_MACROS
#define __STDC_CONSTANT_MACROS 1
#
define __STDC_CONSTANT_MACROS 1
#endif
#
endif
#ifndef __STDC_LIMIT_MACROS
#
ifndef __STDC_LIMIT_MACROS
#define __STDC_LIMIT_MACROS 1
#
define __STDC_LIMIT_MACROS 1
#endif
#
endif
#endif
#endif
#if !defined (HAVE_GMTIME_R) || !defined (HAVE_LOCALTIME_R)
#if !defined (HAVE_GMTIME_R) || !defined (HAVE_LOCALTIME_R)
...
...
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