From owner-freebsd-gnome@FreeBSD.ORG Thu Jan 26 10:17:41 2012 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DA035106566B for ; Thu, 26 Jan 2012 10:17:41 +0000 (UTC) (envelope-from conrads@serene.no-ip.org) Received: from eastrmfepo103.cox.net (eastrmfepo103.cox.net [68.230.241.215]) by mx1.freebsd.org (Postfix) with ESMTP id 7D7C28FC08 for ; Thu, 26 Jan 2012 10:17:40 +0000 (UTC) Received: from eastrmimpo109.cox.net ([68.230.241.222]) by eastrmfepo202.cox.net (InterMail vM.8.01.04.00 201-2260-137-20101110) with ESMTP id <20120126094536.STPR2803.eastrmfepo202.cox.net@eastrmimpo109.cox.net>; Thu, 26 Jan 2012 04:45:36 -0500 Received: from serene.no-ip.org ([98.164.86.55]) by eastrmimpo109.cox.net with bizsmtp id S9la1i00B1BeFqy029lcjw; Thu, 26 Jan 2012 04:45:36 -0500 X-CT-Class: Clean X-CT-Score: 0.00 X-CT-RefID: str=0001.0A020209.4F2120C0.0068,ss=1,re=0.000,fgs=0 X-CT-Spam: 0 X-Authority-Analysis: v=1.1 cv=EYzcOfuzocFB4Uh5a8S+SAtfBMCIXs4UTLohtyR2Crs= c=1 sm=1 a=kiIKS_sT_McA:10 a=G8Uczd0VNMoA:10 a=Wajolswj7cQA:10 a=fdHYxQQoAueMHNSmXppgDg==:17 a=t0Zm2Zi0AAAA:8 a=WMq1Y_XbLydYYIKBqU4A:9 a=CRY_S84ELuAFysLcfTMA:7 a=fdHYxQQoAueMHNSmXppgDg==:117 X-CM-Score: 0.00 Authentication-Results: cox.net; none Received: from serene.no-ip.org (localhost [127.0.0.1]) by serene.no-ip.org (8.14.5/8.14.5) with ESMTP id q0Q9jXwK020548; Thu, 26 Jan 2012 03:45:33 -0600 (CST) (envelope-from conrads@serene.no-ip.org) Received: (from root@localhost) by serene.no-ip.org (8.14.5/8.14.5/Submit) id q0Q9jS70020544; Thu, 26 Jan 2012 03:45:28 -0600 (CST) (envelope-from conrads) Date: Thu, 26 Jan 2012 03:45:28 -0600 (CST) Message-Id: <201201260945.q0Q9jS70020544@serene.no-ip.org> To: FreeBSD-gnats-submit@freebsd.org From: "Conrad J. Sabatier" X-send-pr-version: 3.113 X-GNATS-Notify: Cc: gnome@freebsd.org Subject: [patch] net/opal3: patch configure to recognize amd64 CPU type X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: "Conrad J. Sabatier" List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 26 Jan 2012 10:17:41 -0000 >Submitter-Id: current-users >Originator: Conrad J. Sabatier >Organization: >Confidential: no >Synopsis: [patch] net/opal3: patch configure to recognize amd64 CPU type >Severity: non-critical >Priority: low >Category: ports >Class: change-request >Release: FreeBSD 10.0-CURRENT amd64 >Environment: System: FreeBSD serene.no-ip.org 10.0-CURRENT FreeBSD 10.0-CURRENT #0: Wed Jan 25 15:16:10 CST 2012 root@serene.no-ip.org:/usr/obj/usr/src/sys/CUSTOM amd64 >Description: patch configure script to recognize amd64 in the test for cpu type, eliminating the following warning in "make configure": configure: WARNING: "CPU amd64 not recognized - proceed with caution!" >How-To-Repeat: N/A >Fix: patch below --- patch-configure begins here --- --- configure.orig 2012-01-26 02:29:34.000000000 -0600 +++ configure 2012-01-26 02:30:16.000000000 -0600 @@ -4636,7 +4636,7 @@ MACHTYPE= case "$target_cpu" in x86 | i686 | i586 | i486 | i386 ) MACHTYPE=x86; ;; - x86_64) MACHTYPE=x86_64; ;; + amd64 | x86_64) MACHTYPE=x86_64; ;; alpha | alphaev56 | alphaev6 | alphaev67 | alphaev7) MACHTYPE=alpha; ;; hppa ) MACHTYPE=hppa; ;; hppa64 ) MACHTYPE=hppa64; ;; --- patch-configure ends here ---