pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/textproc/libxml2 Work around a f77 ICE on NetBSD/sparc...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/a7634d9b0a66
branches:  trunk
changeset: 465496:a7634d9b0a66
user:      seb <seb%pkgsrc.org@localhost>
date:      Wed Dec 31 09:55:43 2003 +0000

description:
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:

 textproc/libxml2/Makefile |  7 ++++++-
 1 files changed, 6 insertions(+), 1 deletions(-)

diffs (21 lines):

diff -r d93fef7f48d2 -r a7634d9b0a66 textproc/libxml2/Makefile
--- a/textproc/libxml2/Makefile Wed Dec 31 04:21:26 2003 +0000
+++ b/textproc/libxml2/Makefile Wed Dec 31 09:55:43 2003 +0000
@@ -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 @@
 # 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



Home | Main Index | Thread Index | Old Index