- fix logic and build

master
Pierre Joye 2013-05-03 07:58:35 +02:00
parent 9336856638
commit 9850b02381
2 changed files with 11 additions and 10 deletions

View File

@ -10,16 +10,7 @@
#include "config.h"
#endif
#if HAVE_STDINT_H
#include <stdint.h>
#else
#include "msinttypes/stdint.h"
#endif
#if HAVE_INTTYPES_H
#include <inttypes.h>
#else
#include "msinttypes/inttypes.h"
#endif
#include "gd_intern.h"
/* 2.03: don't include zlib here or we can't build without PNG */
#include "gd.h"

View File

@ -28,5 +28,15 @@
# endif
#endif
#ifdef HAVE_STDINT_H
# include <stdint.h>
#else
# if defined(HAVE_INTTYPES_H)
# include <inttypes.h>
# else
# include "msinttypes/inttypes.h"
# endif
#endif
#endif