All of lore.kernel.org
 help / color / mirror / Atom feed
From: Martin Jansa <martin.jansa@gmail.com>
To: openembedded-devel@lists.openembedded.org
Subject: Re: [meta-oe][PATCH] libvpx: fix build errors for gcc 5
Date: Tue, 18 Aug 2015 13:20:42 +0200	[thread overview]
Message-ID: <20150818112042.GC30532@jama> (raw)
In-Reply-To: <1439137213-18585-1-git-send-email-max.oss.09@gmail.com>

[-- Attachment #1: Type: text/plain, Size: 3387 bytes --]

On Sun, Aug 09, 2015 at 06:20:13PM +0200, Max Krummenacher wrote:
> Signed-off-by: Max Krummenacher <max.oss.09@gmail.com>

Please test your patches.

gcc-5-max_align_t.patch and in SRC_URI there is:
file://fix_build_with_gcc5.patch

I'll fix it this time when cherry-picking to master-next.

> ---
>  .../webm/libvpx/gcc-5-max_align_t.patch            | 37 ++++++++++++++++++++++
>  meta-oe/recipes-multimedia/webm/libvpx_1.3.0.bb    |  3 +-
>  2 files changed, 39 insertions(+), 1 deletion(-)
>  create mode 100644 meta-oe/recipes-multimedia/webm/libvpx/gcc-5-max_align_t.patch
> 
> diff --git a/meta-oe/recipes-multimedia/webm/libvpx/gcc-5-max_align_t.patch b/meta-oe/recipes-multimedia/webm/libvpx/gcc-5-max_align_t.patch
> new file mode 100644
> index 0000000..e017fc0
> --- /dev/null
> +++ b/meta-oe/recipes-multimedia/webm/libvpx/gcc-5-max_align_t.patch
> @@ -0,0 +1,37 @@
> +max_align_t is a type in gcc5 thus the definition here throws a compile
> +time error.
> +patch taken from:
> +https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=777976
> +
> +Upstream-Status: pending
> +
> +Signed-off-by: Max Krummenacher <max.oss.09@gmail.com>
> +--- libvpx-1.3.0/debian/patches/gcc-5.diff	1970-01-01 00:00:00.000000000 +0000
> ++++ libvpx-1.3.0/debian/patches/gcc-5.diff	2015-03-05 23:03:15.000000000 +0000
> +@@ -0,0 +1,26 @@
> ++Index: b/nestegg/halloc/src/align.h
> ++===================================================================
> ++--- a/nestegg/halloc/src/align.h
> +++++ b/nestegg/halloc/src/align.h
> ++@@ -30,7 +30,7 @@ union max_align
> ++ 	void (*q)(void);
> ++ };
> ++ 
> ++-typedef union max_align max_align_t;
> +++typedef union max_align h_max_align_t;
> ++ 
> ++ #endif
> ++ 
> ++Index: b/nestegg/halloc/src/halloc.c
> ++===================================================================
> ++--- a/nestegg/halloc/src/halloc.c
> +++++ b/nestegg/halloc/src/halloc.c
> ++@@ -30,7 +30,7 @@ typedef struct hblock
> ++ #endif
> ++ 	hlist_item_t  siblings; /* 2 pointers */
> ++ 	hlist_head_t  children; /* 1 pointer  */
> ++-	max_align_t   data[1];  /* not allocated, see below */
> +++	h_max_align_t data[1];  /* not allocated, see below */
> ++ 	
> ++ } hblock_t;
> ++ 
> diff --git a/meta-oe/recipes-multimedia/webm/libvpx_1.3.0.bb b/meta-oe/recipes-multimedia/webm/libvpx_1.3.0.bb
> index eb19a57..cd0af50 100644
> --- a/meta-oe/recipes-multimedia/webm/libvpx_1.3.0.bb
> +++ b/meta-oe/recipes-multimedia/webm/libvpx_1.3.0.bb
> @@ -9,7 +9,8 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=d5b04755015be901744a78cc30d390d4"
>  
>  SRC_URI += "http://webm.googlecode.com/files/libvpx-v${PV}.tar.bz2 \
>              file://libvpx-configure-support-blank-prefix.patch \
> -            file://0001-configure.sh-quote-local-variables.patch"
> +            file://0001-configure.sh-quote-local-variables.patch \
> +            file://fix_build_with_gcc5.patch"
>  SRC_URI[md5sum] = "14783a148872f2d08629ff7c694eb31f"
>  SRC_URI[sha256sum] = "d3dcc8d84af51c6c382b214397c62402e37a799e8ebcda6f4217aef0010451a9"
>  
> -- 
> 1.8.4.5
> 
> -- 
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel

-- 
Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 188 bytes --]

  reply	other threads:[~2015-08-18 11:20 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-08-09 16:20 [meta-oe][PATCH] libvpx: fix build errors for gcc 5 Max Krummenacher
2015-08-18 11:20 ` Martin Jansa [this message]
     [not found]   ` <1440021908.2377.11.camel@Saturn.local.all>
2015-08-19 22:23     ` Martin Jansa

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20150818112042.GC30532@jama \
    --to=martin.jansa@gmail.com \
    --cc=openembedded-devel@lists.openembedded.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.