From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Dec 7 14:20:25 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CBF9116A4CE for ; Tue, 7 Dec 2004 14:20:25 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id AD7C843D49 for ; Tue, 7 Dec 2004 14:20:25 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id iB7EKPUQ060738 for ; Tue, 7 Dec 2004 14:20:25 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id iB7EKOOv060737; Tue, 7 Dec 2004 14:20:24 GMT (envelope-from gnats) Date: Tue, 7 Dec 2004 14:20:24 GMT Message-Id: <200412071420.iB7EKOOv060737@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org From: TAOKA Fumiyoshi Subject: Re: ports/72486: science/py-scipy will not build on 4.10 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: TAOKA Fumiyoshi List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Dec 2004 14:20:25 -0000 The following reply was made to PR ports/72486; it has been noted by GNATS. From: TAOKA Fumiyoshi To: freebsd-gnats-submit@FreeBSD.org, missive@hotmail.com Cc: Subject: Re: ports/72486: science/py-scipy will not build on 4.10 Date: Tue, 07 Dec 2004 23:13:31 +0900 When I tried to install py-scipy on 4.10-RELEASE-p5 the same error occured, though on 5.3-STABLE I could install without error. I searched around SciPy's CVS and found this commit. http://scipy.net/cgi-bin/viewcvsx.cgi/scipy_core/scipy_base/fastumathmodule.c revision 1.15 date: 2004/11/04 23:07:20; author: pearu; state: Exp; lines: +1 -1 branches: 1.15.2; Fixed the order of including math.h to support freebsd. =================================================================== RCS file: /home/cvsroot/world/scipy_core/scipy_base/fastumathmodule.c,v retrieving revision 1.14 retrieving revision 1.15 diff -u -r1.14 -r1.15 --- scipy_core/scipy_base/fastumathmodule.c 2004/10/05 13:58:47 1.14 +++ scipy_core/scipy_base/fastumathmodule.c 2004/11/04 23:07:20 1.15 @@ -1,8 +1,8 @@ +#include #include "Python.h" #include "Numeric/arrayobject.h" #include "Numeric/ufuncobject.h" #include "abstract.h" -#include #include "mconf_lite.h" /* Fast umath module whose functions do not check for range and domain This solved the error on 4.10-RELEASE-p5. -- TAOKA Fumiyoshi