From: ellson Date: Thu, 26 Feb 2009 15:04:26 +0000 (+0000) Subject: responding to Bug #1582 - not all systems have stdint.h !!!! (what year is this???) X-Git-Tag: LAST_LIBGRAPH~32^2~2398 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0816afa1bf77ea63711cb110a2ec93ca42151389;p=graphviz responding to Bug #1582 - not all systems have stdint.h !!!! (what year is this???) --- diff --git a/plugin/gs/gvloadimage_gs.c b/plugin/gs/gvloadimage_gs.c index f4d4b180f..e96b7bb03 100644 --- a/plugin/gs/gvloadimage_gs.c +++ b/plugin/gs/gvloadimage_gs.c @@ -19,7 +19,12 @@ #endif #include +#ifdef HAVE_STDINT_H #include +#endif +#ifdef HAVE_INTTYPES_H +#include +#endif #include #include "gvplugin_loadimage.h"