Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 7 Dec 2010 14:53:20 GMT
From:      Jason Bacon <jwbacon@tds.net>
To:        freebsd-gnats-submit@FreeBSD.org
Subject:   ports/152890: libvpx port not configured for powerpc
Message-ID:  <201012071453.oB7ErKMn072241@red.freebsd.org>
Resent-Message-ID: <201012071500.oB7F0K99037245@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         152890
>Category:       ports
>Synopsis:       libvpx port not configured for powerpc
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Tue Dec 07 15:00:20 UTC 2010
>Closed-Date:
>Last-Modified:
>Originator:     Jason Bacon
>Release:        8.1-release
>Organization:
Acadix Consulting, LLC
>Environment:
FreeBSD ibookbsd.jbacon.dyndns.org 8.1-RELEASE FreeBSD 8.1-RELEASE #0: Sun Jul 18 11:09:21 UTC 2010     root@xserve.lan.xcllnt.net:/usr/obj/usr/src/sys/GENERIC  powerpc
>Description:
The libvpx port currently does not support powerpc, although the libvpx configure script has appropriate build options.
>How-To-Repeat:
Build libvpx with default options on a powerpc system.
>Fix:
See attached patch.

Patch attached with submission follows:

--- Makefile.orig	2010-12-06 20:05:52.000000000 -0600
+++ Makefile	2010-12-06 20:07:45.000000000 -0600
@@ -71,6 +71,10 @@
 CONFIGURE_ARGS+=	--target=x86-linux-gcc
 .elif ${ARCH} == "ia64"
 CONFIGURE_ARGS+=	--target=ia64-linux-gcc
+.elif ${ARCH} == "powerpc"
+CONFIGURE_ARGS+=	--target=ppc32-linux-gcc
+.elif ${ARCH} == "powerpc64"
+CONFIGURE_ARGS+=	--target=ppc64-linux-gcc
 .else
 IGNORE=	no support for ${ARCH} the moment. testing/patches are welcome
 .endif


>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201012071453.oB7ErKMn072241>