From owner-freebsd-ppc@FreeBSD.ORG Sat Oct 6 21:21:27 2012 Return-Path: Delivered-To: freebsd-ppc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 72A35106564A for ; Sat, 6 Oct 2012 21:21:27 +0000 (UTC) (envelope-from chmeeedalf@gmail.com) Received: from mail-qa0-f54.google.com (mail-qa0-f54.google.com [209.85.216.54]) by mx1.freebsd.org (Postfix) with ESMTP id 232608FC14 for ; Sat, 6 Oct 2012 21:21:26 +0000 (UTC) Received: by mail-qa0-f54.google.com with SMTP id y23so1232975qad.13 for ; Sat, 06 Oct 2012 14:21:26 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=date:from:to:cc:subject:message-id:in-reply-to:references:x-mailer :mime-version:content-type:content-transfer-encoding; bh=qx2NkvOsfa43WSEiA96A1kWV+mCqanrl6pNl1/VD1Ag=; b=nmroa6Os0QJK3fbn+zG4eIYHxfRyTWnZFQ8U8rdRi8RQnpPHjqPTx+BhH7tcWUjuvw XNcSh1y7SSAnjGe7Px89T5bHNJsvfHJUjqj/SJVPal++uMzibEu31O9M0/IRyfjcYAu6 cxsQbGdtOrs1qohFZRsOnPugYoh7K4fMqwdczXicaJ357NzYgOBxRQM1ulU8JDLNV2Z+ KP1KLPzYcc9n9FfsvLFSgw97ThKbOgL41t6oG2Lrjpy60AtMZJ38gRHRvZfqZrWrc/tb s3ZeTrnBl83icvdWWoPiP1CWCGWdshwYHANTYcAfazVW09My2bobU4/mmWXHSx/S7Cox TdiQ== Received: by 10.224.199.132 with SMTP id es4mr22812056qab.43.1349558486270; Sat, 06 Oct 2012 14:21:26 -0700 (PDT) Received: from narn.knownspace (pool-108-48-127-15.washdc.fios.verizon.net. [108.48.127.15]) by mx.google.com with ESMTPS id fy1sm13619004qab.10.2012.10.06.14.21.25 (version=TLSv1/SSLv3 cipher=OTHER); Sat, 06 Oct 2012 14:21:26 -0700 (PDT) Date: Sat, 6 Oct 2012 17:21:11 -0400 From: Justin Hibbits To: Michael Copeland Message-ID: <20121006172111.2d81b737@narn.knownspace> In-Reply-To: References: X-Mailer: Claws Mail 3.8.0 (GTK+ 2.24.10; powerpc-portbld-freebsd10.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: freebsd-ppc@freebsd.org Subject: Re: Building mplayer on 9.1-PRERELEASE host architecture "UNKNOWN" X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 06 Oct 2012 21:21:27 -0000 On Sat, 6 Oct 2012 15:37:34 -0400 Michael Copeland wrote: > Configure script fails when detecting $host_arch. > > guilty part is: > > # host's CPU/instruction set > case "$(uname -m 2>&1)" in > > x86_64|amd64|i[3-9]86*|i86pc|x86|x86pc|k5|k6|k6_2|k6_3|k6-2|k6-3|pentium*|athlon*|i586_i686|i586-i686) > host_arch=i386 ;; > ia64) host_arch=ia64 ;; > macppc|ppc*|Power*) host_arch=ppc ;; > > > uname -m gives us powerpc, this isn't here, so add it. > > > # host's CPU/instruction set > case "$(uname -m 2>&1)" in > > x86_64|amd64|i[3-9]86*|i86pc|x86|x86pc|k5|k6|k6_2|k6_3|k6-2|k6-3|pentium*|athlon*|i586_i686|i586-i686) > host_arch=i386 ;; > ia64) host_arch=ia64 ;; > macppc|ppc*|Power*|powerpc) host_arch=ppc ;; > > > builds and installs now. > _______________________________________________ > freebsd-ppc@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-ppc > To unsubscribe, send any mail to "freebsd-ppc-unsubscribe@freebsd.org" Can you file a PR for this? This way the ports team can see it and track it. - Justin