Merge branch 'poco-1.7.8'

This commit is contained in:
Guenter Obiltschnig 2017-02-22 14:13:42 +01:00
commit 4403634bef

View File

@ -229,9 +229,9 @@ stdint.h is available, include it; it may define INT64_MAX. Systems that do not
have stdint.h (e.g. Solaris) may have inttypes.h. The macro int64_t may be set
by "configure". */
#if defined HAVE_STDINT_H
#if HAVE_STDINT_H
#include <stdint.h>
#elif defined HAVE_INTTYPES_H
#elif HAVE_INTTYPES_H
#include <inttypes.h>
#endif