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.
This commit is contained in:
parent
77544cd685
commit
c53fae23ee
1 changed files with 6 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue