diff options
author | grant <grant> | 2004-12-18 16:12:41 +0000 |
---|---|---|
committer | grant <grant> | 2004-12-18 16:12:41 +0000 |
commit | dc07e09d5bc4bb132dd5cc96a1ee8db90ad90cb0 (patch) | |
tree | 985e0016eafa93a747aa0dca7350762ea97ec02e | |
parent | 088ea917f5c7dac65b9b30e41802c2747d026599 (diff) | |
download | pkgsrc-dc07e09d5bc4bb132dd5cc96a1ee8db90ad90cb0.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.
-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 |