Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
94f55c60
Commit
94f55c60
authored
May 28, 2008
by
Pierre d'Herbemont
Browse files
Make sure INT64_C is defined correctly, and that we don't conflict with config.h.
parent
daf35d71
Changes
2
Hide whitespace changes
Inline
Side-by-side
modules/demux/live555.cpp
View file @
94f55c60
...
...
@@ -27,11 +27,15 @@
* Preamble
*****************************************************************************/
/* For inttypes.h
* Note: config.h may include inttypes.h, so make sure we define this option
* early enough. */
#define __STDC_CONSTANT_MACROS 1
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#define __STDC_CONSTANT_MACROS 1
#include
<inttypes.h>
#include
<vlc/vlc.h>
...
...
modules/demux/mkv.cpp
View file @
94f55c60
...
...
@@ -26,12 +26,15 @@
* Preamble
*****************************************************************************/
/* config.h may include inttypes.h, so make sure we define that option
* early enough. */
#define __STDC_FORMAT_MACROS 1
#define __STDC_CONSTANT_MACROS 1
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#define __STDC_FORMAT_MACROS 1
#define __STDC_CONSTANT_MACROS 1
#include
<inttypes.h>
#include
<vlc/vlc.h>
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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