__STDC_CONSTANT_MACROS fix

This commit is contained in:
rdb 2010-05-18 15:37:26 +00:00
parent c9cb0def53
commit d4263a47aa
1 changed files with 6 additions and 3 deletions

View File

@ -94,9 +94,12 @@
#endif
#define _WIN32_WINNT 0x0502
#ifdef PHAVE_STDINT_H
#if defined(__cplusplus) && !defined(__STDC_LIMIT_MACROS)
#define __STDC_LIMIT_MACROS 1
#if defined(PHAVE_STDINT_H) && defined(__cplusplus)
#ifndef __STDC_LIMIT_MACROS
#define __STDC_LIMIT_MACROS
#endif
#ifndef __STDC_CONSTANT_MACROS
#define __STDC_CONSTANT_MACROS
#endif
#endif