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 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