diff options
author | grant <grant@pkgsrc.org> | 2004-12-18 16:12:41 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2004-12-18 16:12:41 +0000 |
commit | 7c9999781673fd596ab4f24aef642fb8bf828f8a (patch) | |
tree | 985e0016eafa93a747aa0dca7350762ea97ec02e /databases/db3 | |
parent | 9606ed5d4f19c38b9ae500a22c409628f9961fef (diff) | |
download | pkgsrc-7c9999781673fd596ab4f24aef642fb8bf828f8a.tar.gz |
tell configure to ignore inttypes.h on irix 5 because it is known to
be incompatible with sys/types.h.
fixes PR pkg/28545 from Georg Schwarz.
Diffstat (limited to 'databases/db3')
-rw-r--r-- | databases/db3/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/databases/db3/Makefile b/databases/db3/Makefile index c735006c3b4..daa8369dee1 100644 --- a/databases/db3/Makefile +++ b/databases/db3/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.29 2004/12/16 04:36:29 grant Exp $ +# $NetBSD: Makefile,v 1.30 2004/12/18 16:12:41 grant Exp $ DISTNAME= db-3.3.11 PKGNAME= db3-3.11.2 @@ -33,6 +33,12 @@ CONFIGURE_ARGS+= --enable-cxx CONFIGURE_ARGS+= --enable-shared CONFIGURE_ARGS+= --enable-compat185 +.include "../../mk/bsd.prefs.mk" + +.if !empty(LOWER_OPSYS:Mirix5*) +CONFIGURE_ENV+= ac_cv_header_inttypes_h=no +.endif + post-install: ${CHOWN} -R ${BINOWN}:${BINGRP} ${PREFIX}/share/doc/html/db3 |