mirror of
https://github.com/php/php-src.git
synced 2025-08-18 06:58:55 +02:00

Visual Studio 2012 includes sanity checks for C++11 features, see
bb531344
(v=vs.110).aspx
To fix the 'inline' keyword redefinition for C++ in debug mode, the
new macros ZEND_WIN32_KEEP_INLINE is introduced, ZEND_WIN32_FORCE_INLINE is
automatically appended in release mode.
15 lines
256 B
C
15 lines
256 B
C
#ifndef TSRM_CONFIG_W32_H
|
|
#define TSRM_CONFIG_W32_H
|
|
|
|
#include <../main/config.w32.h>
|
|
#include "Zend/zend_config.w32.h"
|
|
|
|
#define HAVE_UTIME 1
|
|
#define HAVE_ALLOCA 1
|
|
#define HAVE_REALPATH 1
|
|
|
|
#include <malloc.h>
|
|
#include <stdlib.h>
|
|
#include <crtdbg.h>
|
|
|
|
#endif
|