The following reply was made to PR ports/143529; it has been noted by GNATS.
From: "b. f." <bf1...@googlemail.com> To: "Li-Lun Wang (Leland Wang)" <llw...@infor.org> Cc: bug-follo...@freebsd.org, amd...@amdmi3.ru Subject: Re: ports/143529: [PATCH] math/py-numpy: does not build Date: Mon, 15 Feb 2010 07:13:43 -0500 >From: "Li-Lun Wang (Leland Wang)" <llwang at infor.org> >To: bug-followup at FreeBSD.org >Cc: >Subject: Re: ports/143529: [PATCH] math/py-numpy: does not build >Date: Mon, 15 Feb 2010 12:50:24 +0800 > > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 >The following patch will fix the problem. It first detects if > binutils>=2.18.50 is installed. If it is, then it patches numpy so > that the new fenv.h will be used if __FreeBSD_version <= 900009. This fixes the build problem on i386 (although we're stuck with possible run-time problems when numpy is built with the newer binutils until the latest fenv.h changes are backported to all supported versions of FreeBSD), but this code is machine-dependent, and fenv.h needs to be selected based on ARCH. You might do instead something like: ... .if exists(${LOCALBASE}/bin/as) .if ${ARCH} == "i386" FP_ARCH= i387 .else FP_ARCH= ${ARCH} .endif MASTER_SITES+= http://svn.freebsd.org/base/head/lib/msun/%SUBDIR%/:fp MASTER_SITE_SUBDIR+= ${FP_ARCH}/:fp DISTFILES+= fenv.h:fp .endif ... pre-configure: .if exists(${LOCALBASE}/bin/as) ${CP} ${DISTDIR}/fenv.h ${WRKSRC}/numpy/core/include/numpy/fenv/fenv.h; \ ${PATCH} ${PATCH_DIST_ARGS} < ${FILESDIR}/fenv.patch; \ .endif ... _______________________________________________ freebsd-python@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-python To unsubscribe, send any mail to "freebsd-python-unsubscr...@freebsd.org"