Subject: Re: pkg/36696: pkg_install fails to build on Solaris - stdint.h
To: None <gnats-bugs@NetBSD.org>
From: Tobias Nygren <tnn@NetBSD.org>
List: pkgsrc-bugs
Date: 07/28/2007 18:22:24
The problem here is ...

#ifdef HAVE_INTTYPES_H
#include <stdint.h>
#endif

... which should be either ...

#ifdef HAVE_STDINT_H
#include <stdint.h>
#endif

... or

#ifdef HAVE_INTTYPES_H
#include <inttypes.h>
#endif