diff options
author | schwarz <schwarz@pkgsrc.org> | 2005-03-01 21:05:46 +0000 |
---|---|---|
committer | schwarz <schwarz@pkgsrc.org> | 2005-03-01 21:05:46 +0000 |
commit | eb7aea7b969c5a96a45538a6a1481209f703b5b8 (patch) | |
tree | 43e732d4155a99e983fbf53176c51e152b416547 /lang/tcl-expect | |
parent | 68a2377784e94fbc51e0ddc681ebfa64cdbd0a16 (diff) | |
download | pkgsrc-eb7aea7b969c5a96a45538a6a1481209f703b5b8.tar.gz |
on IRIX 5.3 inttypes.h and sys/types.h are known to conflict.
Diffstat (limited to 'lang/tcl-expect')
-rw-r--r-- | lang/tcl-expect/Makefile.common | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lang/tcl-expect/Makefile.common b/lang/tcl-expect/Makefile.common index 30e6d4c2ce7..0e3202c001d 100644 --- a/lang/tcl-expect/Makefile.common +++ b/lang/tcl-expect/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.4 2004/11/18 16:47:19 adam Exp $ +# $NetBSD: Makefile.common,v 1.5 2005/03/01 21:05:46 schwarz Exp $ DISTNAME= expect-${EXPECT_VERSION} MASTER_SITES= http://expect.nist.gov/src/ @@ -12,5 +12,11 @@ USE_LIBTOOL= yes GNU_CONFIGURE= yes TEST_TARGET= test +.include "../../mk/bsd.prefs.mk" +.if $(OPSYS) == "IRIX" && $(OS_VERSION) == 5.3 +# on IRIX 5.3 inttypes.h and sys/types.h are known to conflict. +CONFIGURE_ENV+= ac_cv_header_inttypes_h="no" +.endif + DISTINFO_FILE= ${.CURDIR}/../../lang/tcl-expect/distinfo PATCHDIR= ${.CURDIR}/../../lang/tcl-expect/patches |