Date: Sun, 17 Mar 2002 11:47:45 +0800 (CST) From: Li-lun Wang (Leland Wang) <llwang@infor.org> To: FreeBSD-gnats-submit@FreeBSD.org Subject: ports/35994: math/atlas does not build on some machines Message-ID: <20020317034745.27A439293@infor.ck.tp.edu.tw>
next in thread | raw e-mail | index | archive | help
>Number: 35994 >Category: ports >Synopsis: math/atlas does not build on some machines >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Mar 16 19:50:00 PST 2002 >Closed-Date: >Last-Modified: >Originator: Li-lun Wang (Leland Wang) >Release: FreeBSD 4.5-RELEASE-p2 i386 >Organization: National Taiwan University >Environment: System: FreeBSD Athena.infor.org 4.5-RELEASE-p2 FreeBSD 4.5-RELEASE-p2 #0: Fri Mar 8 19:11:20 CST 2002 root@Athena.infor.org:/usr/obj/usr/src/sys/Athena i386 >Description: math/atlas port uses default answers for the configuration, which makes it unable to build on some machines, e.g. K6-III. The questions asked are different for different archs, and the default answers provided in ${FILESDIR} is not suitable for all archs. Since NO_PACKAGE and NO_CDROM are already defined, I suggest to remove the default answers and define IS_INTERACTIVE to make it happy on all supported archs. >How-To-Repeat: make build the math/atlas port on a AMD K6-III box. >Fix: diff -urN atlas.orig/Makefile atlas/Makefile --- atlas.orig/Makefile Fri Mar 15 11:53:15 2002 +++ atlas/Makefile Sun Mar 17 11:26:21 2002 @@ -16,16 +16,17 @@ BUILD_DEPENDS= ${LOCALBASE}/lib/liblapack.a:${PORTSDIR}/math/lapack +IS_INTERACTIVE= yes USE_BZIP2= yes WRKSRC= ${WRKDIR}/ATLAS NO_PACKAGE= "It is better to compile at the target machine." NO_CDROM= "It is better to compile at the target machine." do-configure: - @(cd ${WRKSRC}; ${MAKE_ENV} ${MAKE} config < ${FILESDIR}/answer) + @(cd ${WRKSRC}; ${MAKE_ENV} ${MAKE} config) do-build: - (cd ${WRKSRC}; ${MAKE_ENV} ${MAKE} install arch=FreeBSD_GENERIC) + (cd ${WRKSRC}; ${MAKE_ENV} ${MAKE} install arch=`cat ${WRKSRC}/ARCHNAME`) (cd ${WRKSRC}; ${MKDIR} tmp ; \ ${CP} ${LOCALBASE}/lib/liblapack.a tmp ;\ cd tmp ;\ diff -urN atlas.orig/files/answer atlas/files/answer --- atlas.orig/files/answer Fri Mar 15 11:53:15 2002 +++ atlas/files/answer Thu Jan 1 08:00:00 1970 @@ -1,9 +0,0 @@ - - - - - -FreeBSD_GENERIC - - - diff -urN atlas.orig/files/patch-aa atlas/files/patch-aa --- atlas.orig/files/patch-aa Fri Mar 15 11:53:15 2002 +++ atlas/files/patch-aa Sun Mar 17 11:22:08 2002 @@ -1,5 +1,5 @@ ---- config.c.orig Sat Feb 2 11:57:44 2002 -+++ config.c Sun Mar 3 16:28:41 2002 +--- config.c.orig Sat Feb 2 10:57:44 2002 ++++ config.c Sun Mar 17 11:19:00 2002 @@ -2050,6 +2050,7 @@ if (!CmndOneLine(targ, "sysctl hw.model", ln)) { @@ -8,3 +8,13 @@ else if (strstr(ln, "Pentium III")) mach = IntPIII; else if (strstr(ln, "Pentium II ")) mach = IntPII; else if (strstr(ln, "Athlon")) mach = AmdAthlon; +@@ -3018,6 +3019,9 @@ + } + if (USEWINF77) strcpy(F77, "$(BINdir)/winf77.exe"); + ++ fpout = fopen("ARCHNAME", "w"); ++ fprintf(fpout, "%s", ARCH); ++ fclose(fpout); + ATL_mprintf(2, fplog, stdout,"\nCreating make include file Make.%s\n", ARCH); + sprintf(ln, "Make.%s", ARCH); + fpout = fopen(ln, "w"); >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-ports" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20020317034745.27A439293>