mysqlcppconn: MSVC 2010 finally has grown a stdint.h

Change-Id: I5b8d948aad94ba492075245c18c8ed781baa469e
This commit is contained in:
Michael Stahl
2013-06-02 13:26:30 +02:00
parent 58873656af
commit 23583553d1

View File

@@ -5,10 +5,12 @@
#define HAVE_FUNCTION_STRTOL 1
#define HAVE_FUNCTION_STRTOULL 1
#if defined(MACOSX) || defined(SOLARIS) || defined(LINUX)
#if defined(MACOSX) || defined(SOLARIS) || defined(LINUX) || (defined _MSC_VER && _MSC_VER >= 1600)
#define HAVE_STDINT_H
#ifndef _MSC_VER
#define HAVE_INTTYPES_H
#endif
#endif
#ifdef HAVE_STDINT_H
#include <stdint.h>