All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Update cached autoconf values for libpcap on powerpc64
@ 2012-02-08 20:38 Matthew McClintock
  2012-02-09 17:15 ` Saul Wold
  0 siblings, 1 reply; 4+ messages in thread
From: Matthew McClintock @ 2012-02-08 20:38 UTC (permalink / raw)
  To: openembedded-core

Without this fix, libpcap will fail to build on powerpc64

Signed-off-by: Matthew McClintock <msm@freescale.com>
---
 meta/site/powerpc64-linux |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/meta/site/powerpc64-linux b/meta/site/powerpc64-linux
index a49c717..2b147d7 100644
--- a/meta/site/powerpc64-linux
+++ b/meta/site/powerpc64-linux
@@ -31,4 +31,5 @@ screen_cv_sys_sockets_nofs=${screen_cv_sys_sockets_nofs=no}
 screen_cv_sys_sockets_usable=${screen_cv_sys_sockets_usable=yes}
 screen_cv_sys_terminfo_used=${screen_cv_sys_terminfo_used=yes}
 
-
+# libpcap
+ac_cv_linux_vers=${ac_cv_linux_vers=2}
-- 
1.7.6.1





^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] Update cached autoconf values for libpcap on powerpc64
  2012-02-08 20:38 [PATCH] Update cached autoconf values for libpcap on powerpc64 Matthew McClintock
@ 2012-02-09 17:15 ` Saul Wold
  2012-02-09 19:30   ` [PATCH v2] powerpc64-linux: " Matthew McClintock
  0 siblings, 1 reply; 4+ messages in thread
From: Saul Wold @ 2012-02-09 17:15 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer; +Cc: Matthew McClintock

On 02/08/2012 12:38 PM, Matthew McClintock wrote:
> Without this fix, libpcap will fail to build on powerpc64
>
Matthew, can you please resubmit this with the patch file in the commit 
header per the guidelines

more along the lines of:
powerpc64-linux: update cached autoconf value for libpcap

Thanks
	Sau!

> Signed-off-by: Matthew McClintock<msm@freescale.com>
> ---
>   meta/site/powerpc64-linux |    3 ++-
>   1 files changed, 2 insertions(+), 1 deletions(-)
>
> diff --git a/meta/site/powerpc64-linux b/meta/site/powerpc64-linux
> index a49c717..2b147d7 100644
> --- a/meta/site/powerpc64-linux
> +++ b/meta/site/powerpc64-linux
> @@ -31,4 +31,5 @@ screen_cv_sys_sockets_nofs=${screen_cv_sys_sockets_nofs=no}
>   screen_cv_sys_sockets_usable=${screen_cv_sys_sockets_usable=yes}
>   screen_cv_sys_terminfo_used=${screen_cv_sys_terminfo_used=yes}
>
> -
> +# libpcap
> +ac_cv_linux_vers=${ac_cv_linux_vers=2}



^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH v2] powerpc64-linux: Update cached autoconf values for libpcap on powerpc64
  2012-02-09 17:15 ` Saul Wold
@ 2012-02-09 19:30   ` Matthew McClintock
  2012-02-10 15:56     ` Saul Wold
  0 siblings, 1 reply; 4+ messages in thread
From: Matthew McClintock @ 2012-02-09 19:30 UTC (permalink / raw)
  To: openembedded-core

Without this fix, libpcap will fail to build on powerpc64

Signed-off-by: Matthew McClintock <msm@freescale.com>
---
v2: include filename is patch description

 meta/site/powerpc64-linux |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/meta/site/powerpc64-linux b/meta/site/powerpc64-linux
index a49c717..2b147d7 100644
--- a/meta/site/powerpc64-linux
+++ b/meta/site/powerpc64-linux
@@ -31,4 +31,5 @@ screen_cv_sys_sockets_nofs=${screen_cv_sys_sockets_nofs=no}
 screen_cv_sys_sockets_usable=${screen_cv_sys_sockets_usable=yes}
 screen_cv_sys_terminfo_used=${screen_cv_sys_terminfo_used=yes}
 
-
+# libpcap
+ac_cv_linux_vers=${ac_cv_linux_vers=2}
-- 
1.7.6.1





^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH v2] powerpc64-linux: Update cached autoconf values for libpcap on powerpc64
  2012-02-09 19:30   ` [PATCH v2] powerpc64-linux: " Matthew McClintock
@ 2012-02-10 15:56     ` Saul Wold
  0 siblings, 0 replies; 4+ messages in thread
From: Saul Wold @ 2012-02-10 15:56 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer; +Cc: Matthew McClintock

On 02/09/2012 11:30 AM, Matthew McClintock wrote:
> Without this fix, libpcap will fail to build on powerpc64
>
> Signed-off-by: Matthew McClintock<msm@freescale.com>
> ---
> v2: include filename is patch description
>
>   meta/site/powerpc64-linux |    3 ++-
>   1 files changed, 2 insertions(+), 1 deletions(-)
>
> diff --git a/meta/site/powerpc64-linux b/meta/site/powerpc64-linux
> index a49c717..2b147d7 100644
> --- a/meta/site/powerpc64-linux
> +++ b/meta/site/powerpc64-linux
> @@ -31,4 +31,5 @@ screen_cv_sys_sockets_nofs=${screen_cv_sys_sockets_nofs=no}
>   screen_cv_sys_sockets_usable=${screen_cv_sys_sockets_usable=yes}
>   screen_cv_sys_terminfo_used=${screen_cv_sys_terminfo_used=yes}
>
> -
> +# libpcap
> +ac_cv_linux_vers=${ac_cv_linux_vers=2}

Merged into OE-core

Thanks
	Sau!



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2012-02-10 16:04 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-02-08 20:38 [PATCH] Update cached autoconf values for libpcap on powerpc64 Matthew McClintock
2012-02-09 17:15 ` Saul Wold
2012-02-09 19:30   ` [PATCH v2] powerpc64-linux: " Matthew McClintock
2012-02-10 15:56     ` Saul Wold

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.