| Summary: | [patch] ports/multimedia/libvpx fails to build on i386 9-STABLE | ||||||
|---|---|---|---|---|---|---|---|
| Product: | Ports & Packages | Reporter: | Helge Oldach <ports-libvpx-jan14> | ||||
| Component: | Individual Port(s) | Assignee: | Ashish SHUKLA <ashish> | ||||
| Status: | Closed FIXED | ||||||
| Severity: | Affects Only Me | CC: | ashish | ||||
| Priority: | Normal | ||||||
| Version: | Latest | ||||||
| Hardware: | Any | ||||||
| OS: | Any | ||||||
| Attachments: |
|
||||||
|
Description
Helge Oldach
2014-01-11 11:50:00 UTC
Responsible Changed From-To: freebsd-ports-bugs->ashish Over to maintainer (via the GNATS Auto Assign Tool) On 12.01.2014 14:19, Ashish SHUKLA wrote:
> Could you please try this attached diff for multimedia/libvpx on your 9-STABLE
> hosts, to see if it fixes the issue for you ?
It fixes the issue, thanx.
Hi Ashish,
yep, that fixes it.
Kind regards
Helge
Ashish SHUKLA wrote on Sun, 12 Jan 2014 11:19:28 +0100 (CET):
> Hi,
>
> Could you please try this attached diff for multimedia/libvpx on your 9-STABLE
> hosts, to see if it fixes the issue for you ?
>
> Thanks
> --
> Ashish SHUKLA | GPG: F682 CDCC 39DC 0FEA E116 20B6 C746 CFA9 E74F A4B0
> Sent from my Emacs
[Attachment, skipping...]
[application/pgp-signature is not supported, skipping...]
Author: ashish Date: Sun Jan 12 16:08:27 2014 New Revision: 339519 URL: http://svnweb.freebsd.org/changeset/ports/339519 Log: - Fix breakage on 9-STABLE due to GCC changes in r260075 PR: ports/185657 Submitted by: Helge Oldach <ports-libvpx-jan14 at oldach.net> Modified: head/multimedia/libvpx/Makefile Modified: head/multimedia/libvpx/Makefile ============================================================================== --- head/multimedia/libvpx/Makefile Sun Jan 12 16:03:49 2014 (r339518) +++ head/multimedia/libvpx/Makefile Sun Jan 12 16:08:27 2014 (r339519) @@ -55,6 +55,12 @@ USE_GCC= yes .endif .endif +# Workaround for GCC in 9.x post r260075 +# OSVERSION taken from r260135, the closest OSVERSION +.if ${OSVERSION} > 902505 && ${OSVERSION} < 1000000 +CFLAGS+= -flax-vector-conversions +.endif + .if ${OSVERSION} >= 1000000 CONFIGURE_ARGS+= --disable-unit-tests .endif _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" State Changed From-To: open->closed Committed, with minor changes. Thanks! |