diff options
author | seb <seb@pkgsrc.org> | 2003-12-31 09:55:43 +0000 |
---|---|---|
committer | seb <seb@pkgsrc.org> | 2003-12-31 09:55:43 +0000 |
commit | c53fae23ee1368f1651ec8b61a956aebd013fd39 (patch) | |
tree | 48bfc6c064a28b3c70d5436d8abd775f2221e637 /textproc | |
parent | 77544cd68500f5c4c4090f341cfdd58d90048fe3 (diff) | |
download | pkgsrc-c53fae23ee1368f1651ec8b61a956aebd013fd39.tar.gz |
Work around a f77 ICE on NetBSD/sparc64 1.6* by "disabling" f77
completely. Please note that a Fortran compiler is not needed by
this package but configure -libtool in fact- tickles it if one is
found.
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/libxml2/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/textproc/libxml2/Makefile b/textproc/libxml2/Makefile index d2b9577329e..97c08b159f8 100644 --- a/textproc/libxml2/Makefile +++ b/textproc/libxml2/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.40 2003/12/26 21:49:08 jmmv Exp $ +# $NetBSD: Makefile,v 1.41 2003/12/31 09:55:43 seb Exp $ DISTNAME= libxml2-${LIBXML_VERSION} CATEGORIES= textproc @@ -27,6 +27,11 @@ CONFIGURE_ARGS+= --without-python # and this library needs to be usable by non-threaded applications too CONFIGURE_ARGS+= --without-threads +# NetBSD-sparc64-1.6*'s f77 makes configure failing and as f77 is not +# needed for this package the following does no harm on other platforms. +FC= ${FALSE} +F77= ${FALSE} + MAKE_ENV+= PAX=${PAX:Q} TEST_TARGET= check |