From owner-freebsd-ports@FreeBSD.ORG Mon Nov 19 04:13:50 2007 Return-Path: Delivered-To: ports@freeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8AAC616A420; Mon, 19 Nov 2007 04:13:50 +0000 (UTC) (envelope-from stephen@math.missouri.edu) Received: from cauchy.math.missouri.edu (cauchy.math.missouri.edu [128.206.184.213]) by mx1.freebsd.org (Postfix) with ESMTP id CD5CE13C45D; Mon, 19 Nov 2007 04:13:47 +0000 (UTC) (envelope-from stephen@math.missouri.edu) Received: from laptop2.gateway.2wire.net (cauchy.math.missouri.edu [128.206.184.213]) by cauchy.math.missouri.edu (8.14.2/8.14.1) with ESMTP id lAJ3jCCS025368; Sun, 18 Nov 2007 21:45:13 -0600 (CST) (envelope-from stephen@math.missouri.edu) Message-ID: <474106CB.9060700@math.missouri.edu> Date: Sun, 18 Nov 2007 21:45:15 -0600 From: Stephen Montgomery-Smith User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.8.1.9) Gecko/20071107 SeaMonkey/1.1.6 MIME-Version: 1.0 To: maho@freeBSD.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: ports@freeBSD.org Subject: octave-forge on FreeBSD 7.0 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Nov 2007 04:13:50 -0000 Dear Maho, I noticed that you added lines like: .if ${OSVERSION} >= 700042 .if ${ARCH} == "amd64" || ${ARCH} == "sparc64" BROKEN= Does not compile with GCC 4.2 .endif .endif to the Makefile of math/octave-forge. But it also doesn't build on my i386 FreeBSD 7.0 machine. How about doing something more simple like: .if ${OSVERSION} >= 700042 USE_GCC= 3.4 .endif which works great in my situation. Stephen