Subject: Re: pkg/36696: pkg_install fails to build on Solaris - stdint.h
To: None <pkg-manager@netbsd.org, gnats-admin@netbsd.org,>
From: Tobias Nygren <tnn@NetBSD.org>
List: pkgsrc-bugs
Date: 07/28/2007 17:20:07
The following reply was made to PR pkg/36696; it has been noted by GNATS.

From: Tobias Nygren <tnn@NetBSD.org>
To: gnats-bugs@NetBSD.org
Cc: sd4dfg2@hotmail.com, pkgsrc-bugs@netbsd.org
Subject: Re: pkg/36696: pkg_install fails to build on Solaris - stdint.h
Date: Sat, 28 Jul 2007 18:22:24 +0200

 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