pkgsrc-Bugs archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
Re: pkg/36696: pkg_install fails to build on Solaris - stdint.h
The following reply was made to PR pkg/36696; it has been noted by GNATS.
From: Tobias Nygren <tnn%NetBSD.org@localhost>
To: gnats-bugs%NetBSD.org@localhost
Cc: sd4dfg2%hotmail.com@localhost, pkgsrc-bugs%netbsd.org@localhost
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
Home |
Main Index |
Thread Index |
Old Index