All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] libxml2: add shared library version info to libxml shared libraries
@ 2012-01-02 22:05 Matthew McClintock
  2012-01-02 23:22 ` Martin Jansa
  2012-01-12  6:24 ` Saul Wold
  0 siblings, 2 replies; 8+ messages in thread
From: Matthew McClintock @ 2012-01-02 22:05 UTC (permalink / raw)
  To: openembedded-core

This fixes an issue with RPM where it checks version imformation for
binaries linked against libxml and fails because it's missing info

| error: Failed dependencies:
|              libxml2.so.2(LIBXML2_2.6.0) is needed by fmc-0.9.7+2-r2.1.ppce500mc
|              libxml2.so.2(LIBXML2_2.4.30) is needed by fmc-0.9.7+2-r2.1.ppce500mc
| ERROR: Function 'do_rootfs' failed (see

Note: fmc is just an example recipe/name

Signed-off-by: Matthew McClintock <msm@freescale.com>
---
 .../libxml/libxml2/fix_version_info.patch          |   23 ++++++++++++++++++++
 meta/recipes-core/libxml/libxml2_2.7.8.bb          |    4 ++-
 2 files changed, 26 insertions(+), 1 deletions(-)
 create mode 100644 meta/recipes-core/libxml/libxml2/fix_version_info.patch

diff --git a/meta/recipes-core/libxml/libxml2/fix_version_info.patch b/meta/recipes-core/libxml/libxml2/fix_version_info.patch
new file mode 100644
index 0000000..77113ef
--- /dev/null
+++ b/meta/recipes-core/libxml/libxml2/fix_version_info.patch
@@ -0,0 +1,23 @@
+Upstream-Status: Already upstream
+
+From 00819877651b87842ed878898ba17dba489820f0 Mon Sep 17 00:00:00 2001
+From: Daniel Veillard <veillard@redhat.com>
+Date: Thu, 04 Nov 2010 20:53:14 +0000
+Subject: Reactivate the shared library versionning script
+
+---
+diff --git a/configure.in b/configure.in
+index 59d0629..a1d2c89 100644
+--- a/configure.in
++++ b/configure.in
+@@ -84,7 +84,7 @@ else
+   esac
+ fi
+ AC_SUBST(VERSION_SCRIPT_FLAGS)
+-AM_CONDITIONAL([USE_VERSION_SCRIPT], [test -z "$VERSION_SCRIPT_FLAGS"])
++AM_CONDITIONAL([USE_VERSION_SCRIPT], [test -n "$VERSION_SCRIPT_FLAGS"])
+ 
+ dnl
+ dnl We process the AC_ARG_WITH first so that later we can modify
+--
+cgit v0.9.0.2
diff --git a/meta/recipes-core/libxml/libxml2_2.7.8.bb b/meta/recipes-core/libxml/libxml2_2.7.8.bb
index 2fa246e..0b6ce02 100644
--- a/meta/recipes-core/libxml/libxml2_2.7.8.bb
+++ b/meta/recipes-core/libxml/libxml2_2.7.8.bb
@@ -1,6 +1,8 @@
 require libxml2.inc
 
-PR = "r4"
+PR = "r5"
+
+SRC_URI += "file://fix_version_info.patch"
 
 SRC_URI[md5sum] = "8127a65e8c3b08856093099b52599c86"
 SRC_URI[sha256sum] = "cda23bc9ebd26474ca8f3d67e7d1c4a1f1e7106364b690d822e009fdc3c417ec"
-- 
1.7.6.1





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

* Re: [PATCH] libxml2: add shared library version info to libxml shared libraries
  2012-01-02 22:05 [PATCH] libxml2: add shared library version info to libxml shared libraries Matthew McClintock
@ 2012-01-02 23:22 ` Martin Jansa
  2012-01-02 23:25   ` Martin Jansa
  2012-01-12  6:24 ` Saul Wold
  1 sibling, 1 reply; 8+ messages in thread
From: Martin Jansa @ 2012-01-02 23:22 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

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

On Mon, Jan 02, 2012 at 04:05:16PM -0600, Matthew McClintock wrote:
> This fixes an issue with RPM where it checks version imformation for
> binaries linked against libxml and fails because it's missing info
> 
> | error: Failed dependencies:
> |              libxml2.so.2(LIBXML2_2.6.0) is needed by fmc-0.9.7+2-r2.1.ppce500mc
> |              libxml2.so.2(LIBXML2_2.4.30) is needed by fmc-0.9.7+2-r2.1.ppce500mc
> | ERROR: Function 'do_rootfs' failed (see
> 
> Note: fmc is just an example recipe/name

Weird that I haven't noticed this in oe-core before, but probably
because in oe-core it was always without version. But it looks the same
as this
http://git.openembedded.org/openembedded/commit/?id=50ed401cdaaefb1f5ac33de2838af259a52b1c3a
so
Acked-by: Martin Jansa <Martin.Jansa@gmail.com>

> 
> Signed-off-by: Matthew McClintock <msm@freescale.com>
> ---
>  .../libxml/libxml2/fix_version_info.patch          |   23 ++++++++++++++++++++
>  meta/recipes-core/libxml/libxml2_2.7.8.bb          |    4 ++-
>  2 files changed, 26 insertions(+), 1 deletions(-)
>  create mode 100644 meta/recipes-core/libxml/libxml2/fix_version_info.patch
> 
> diff --git a/meta/recipes-core/libxml/libxml2/fix_version_info.patch b/meta/recipes-core/libxml/libxml2/fix_version_info.patch
> new file mode 100644
> index 0000000..77113ef
> --- /dev/null
> +++ b/meta/recipes-core/libxml/libxml2/fix_version_info.patch
> @@ -0,0 +1,23 @@
> +Upstream-Status: Already upstream
> +
> +From 00819877651b87842ed878898ba17dba489820f0 Mon Sep 17 00:00:00 2001
> +From: Daniel Veillard <veillard@redhat.com>
> +Date: Thu, 04 Nov 2010 20:53:14 +0000
> +Subject: Reactivate the shared library versionning script
> +
> +---
> +diff --git a/configure.in b/configure.in
> +index 59d0629..a1d2c89 100644
> +--- a/configure.in
> ++++ b/configure.in
> +@@ -84,7 +84,7 @@ else
> +   esac
> + fi
> + AC_SUBST(VERSION_SCRIPT_FLAGS)
> +-AM_CONDITIONAL([USE_VERSION_SCRIPT], [test -z "$VERSION_SCRIPT_FLAGS"])
> ++AM_CONDITIONAL([USE_VERSION_SCRIPT], [test -n "$VERSION_SCRIPT_FLAGS"])
> + 
> + dnl
> + dnl We process the AC_ARG_WITH first so that later we can modify
> +--
> +cgit v0.9.0.2
> diff --git a/meta/recipes-core/libxml/libxml2_2.7.8.bb b/meta/recipes-core/libxml/libxml2_2.7.8.bb
> index 2fa246e..0b6ce02 100644
> --- a/meta/recipes-core/libxml/libxml2_2.7.8.bb
> +++ b/meta/recipes-core/libxml/libxml2_2.7.8.bb
> @@ -1,6 +1,8 @@
>  require libxml2.inc
>  
> -PR = "r4"
> +PR = "r5"
> +
> +SRC_URI += "file://fix_version_info.patch"
>  
>  SRC_URI[md5sum] = "8127a65e8c3b08856093099b52599c86"
>  SRC_URI[sha256sum] = "cda23bc9ebd26474ca8f3d67e7d1c4a1f1e7106364b690d822e009fdc3c417ec"
> -- 
> 1.7.6.1
> 
> 
> 
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core

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

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

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

* Re: [PATCH] libxml2: add shared library version info to libxml shared libraries
  2012-01-02 23:22 ` Martin Jansa
@ 2012-01-02 23:25   ` Martin Jansa
  2012-01-03 16:21     ` McClintock Matthew-B29882
  0 siblings, 1 reply; 8+ messages in thread
From: Martin Jansa @ 2012-01-02 23:25 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

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

On Tue, Jan 03, 2012 at 12:22:28AM +0100, Martin Jansa wrote:
> On Mon, Jan 02, 2012 at 04:05:16PM -0600, Matthew McClintock wrote:
> > This fixes an issue with RPM where it checks version imformation for
> > binaries linked against libxml and fails because it's missing info
> > 
> > | error: Failed dependencies:
> > |              libxml2.so.2(LIBXML2_2.6.0) is needed by fmc-0.9.7+2-r2.1.ppce500mc
> > |              libxml2.so.2(LIBXML2_2.4.30) is needed by fmc-0.9.7+2-r2.1.ppce500mc
> > | ERROR: Function 'do_rootfs' failed (see
> > 
> > Note: fmc is just an example recipe/name
> 
> Weird that I haven't noticed this in oe-core before, but probably
> because in oe-core it was always without version. But it looks the same
> as this
> http://git.openembedded.org/openembedded/commit/?id=50ed401cdaaefb1f5ac33de2838af259a52b1c3a
> so
> Acked-by: Martin Jansa <Martin.Jansa@gmail.com>

but also double check if all recipes depending on it needs PR bump too,
I've expected that it's needed only for transition from versioned to not
versioned symbols, but according to:
http://git.openembedded.org/openembedded/commit/?id=4373bc4d0cde98dfa188d9a06266afa06f970bfe
http://git.openembedded.org/openembedded/commit/?id=7e673ab79c7d76ffc2b733fb32d0b41514eb0db0
it was needed also other way around

> 
> > 
> > Signed-off-by: Matthew McClintock <msm@freescale.com>
> > ---
> >  .../libxml/libxml2/fix_version_info.patch          |   23 ++++++++++++++++++++
> >  meta/recipes-core/libxml/libxml2_2.7.8.bb          |    4 ++-
> >  2 files changed, 26 insertions(+), 1 deletions(-)
> >  create mode 100644 meta/recipes-core/libxml/libxml2/fix_version_info.patch
> > 
> > diff --git a/meta/recipes-core/libxml/libxml2/fix_version_info.patch b/meta/recipes-core/libxml/libxml2/fix_version_info.patch
> > new file mode 100644
> > index 0000000..77113ef
> > --- /dev/null
> > +++ b/meta/recipes-core/libxml/libxml2/fix_version_info.patch
> > @@ -0,0 +1,23 @@
> > +Upstream-Status: Already upstream
> > +
> > +From 00819877651b87842ed878898ba17dba489820f0 Mon Sep 17 00:00:00 2001
> > +From: Daniel Veillard <veillard@redhat.com>
> > +Date: Thu, 04 Nov 2010 20:53:14 +0000
> > +Subject: Reactivate the shared library versionning script
> > +
> > +---
> > +diff --git a/configure.in b/configure.in
> > +index 59d0629..a1d2c89 100644
> > +--- a/configure.in
> > ++++ b/configure.in
> > +@@ -84,7 +84,7 @@ else
> > +   esac
> > + fi
> > + AC_SUBST(VERSION_SCRIPT_FLAGS)
> > +-AM_CONDITIONAL([USE_VERSION_SCRIPT], [test -z "$VERSION_SCRIPT_FLAGS"])
> > ++AM_CONDITIONAL([USE_VERSION_SCRIPT], [test -n "$VERSION_SCRIPT_FLAGS"])
> > + 
> > + dnl
> > + dnl We process the AC_ARG_WITH first so that later we can modify
> > +--
> > +cgit v0.9.0.2
> > diff --git a/meta/recipes-core/libxml/libxml2_2.7.8.bb b/meta/recipes-core/libxml/libxml2_2.7.8.bb
> > index 2fa246e..0b6ce02 100644
> > --- a/meta/recipes-core/libxml/libxml2_2.7.8.bb
> > +++ b/meta/recipes-core/libxml/libxml2_2.7.8.bb
> > @@ -1,6 +1,8 @@
> >  require libxml2.inc
> >  
> > -PR = "r4"
> > +PR = "r5"
> > +
> > +SRC_URI += "file://fix_version_info.patch"
> >  
> >  SRC_URI[md5sum] = "8127a65e8c3b08856093099b52599c86"
> >  SRC_URI[sha256sum] = "cda23bc9ebd26474ca8f3d67e7d1c4a1f1e7106364b690d822e009fdc3c417ec"
> > -- 
> > 1.7.6.1
> > 
> > 
> > 
> > _______________________________________________
> > Openembedded-core mailing list
> > Openembedded-core@lists.openembedded.org
> > http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
> 
> -- 
> Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com



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

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

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

* Re: [PATCH] libxml2: add shared library version info to libxml shared libraries
  2012-01-02 23:25   ` Martin Jansa
@ 2012-01-03 16:21     ` McClintock Matthew-B29882
  2012-01-03 17:31       ` Martin Jansa
  0 siblings, 1 reply; 8+ messages in thread
From: McClintock Matthew-B29882 @ 2012-01-03 16:21 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

On Mon, Jan 2, 2012 at 5:25 PM, Martin Jansa <martin.jansa@gmail.com> wrote:
> On Tue, Jan 03, 2012 at 12:22:28AM +0100, Martin Jansa wrote:
>> On Mon, Jan 02, 2012 at 04:05:16PM -0600, Matthew McClintock wrote:
>> > This fixes an issue with RPM where it checks version imformation for
>> > binaries linked against libxml and fails because it's missing info
>> >
>> > | error: Failed dependencies:
>> > |              libxml2.so.2(LIBXML2_2.6.0) is needed by fmc-0.9.7+2-r2.1.ppce500mc
>> > |              libxml2.so.2(LIBXML2_2.4.30) is needed by fmc-0.9.7+2-r2.1.ppce500mc
>> > | ERROR: Function 'do_rootfs' failed (see
>> >
>> > Note: fmc is just an example recipe/name
>>
>> Weird that I haven't noticed this in oe-core before, but probably
>> because in oe-core it was always without version. But it looks the same
>> as this
>> http://git.openembedded.org/openembedded/commit/?id=50ed401cdaaefb1f5ac33de2838af259a52b1c3a
>> so

You won't see this when building against oe-core stuff from source.
This issue is seen when we bring in a prebuilt binary and link against
libxml2 in the system.

>> Acked-by: Martin Jansa <Martin.Jansa@gmail.com>
>
> but also double check if all recipes depending on it needs PR bump too,
> I've expected that it's needed only for transition from versioned to not
> versioned symbols, but according to:
> http://git.openembedded.org/openembedded/commit/?id=4373bc4d0cde98dfa188d9a06266afa06f970bfe
> http://git.openembedded.org/openembedded/commit/?id=7e673ab79c7d76ffc2b733fb32d0b41514eb0db0
> it was needed also other way around

Because of the reason above, I don't think we need to bump PR's for
all these recipes. People just should not normally be seeing this
issue. If they are well, then they won't be able to make an RPM based
rfs (maybe others)

Let me know if that seems reasonable...

-M



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

* Re: [PATCH] libxml2: add shared library version info to libxml shared libraries
  2012-01-03 16:21     ` McClintock Matthew-B29882
@ 2012-01-03 17:31       ` Martin Jansa
  2012-01-03 20:41         ` McClintock Matthew-B29882
  0 siblings, 1 reply; 8+ messages in thread
From: Martin Jansa @ 2012-01-03 17:31 UTC (permalink / raw)
  To: McClintock Matthew-B29882,
	Patches and discussions about the oe-core layer

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

On Tue, Jan 03, 2012 at 04:21:16PM +0000, McClintock Matthew-B29882 wrote:
> On Mon, Jan 2, 2012 at 5:25 PM, Martin Jansa <martin.jansa@gmail.com> wrote:
> > On Tue, Jan 03, 2012 at 12:22:28AM +0100, Martin Jansa wrote:
> >> On Mon, Jan 02, 2012 at 04:05:16PM -0600, Matthew McClintock wrote:
> >> > This fixes an issue with RPM where it checks version imformation for
> >> > binaries linked against libxml and fails because it's missing info
> >> >
> >> > | error: Failed dependencies:
> >> > |              libxml2.so.2(LIBXML2_2.6.0) is needed by fmc-0.9.7+2-r2.1.ppce500mc
> >> > |              libxml2.so.2(LIBXML2_2.4.30) is needed by fmc-0.9.7+2-r2.1.ppce500mc
> >> > | ERROR: Function 'do_rootfs' failed (see
> >> >
> >> > Note: fmc is just an example recipe/name
> >>
> >> Weird that I haven't noticed this in oe-core before, but probably
> >> because in oe-core it was always without version. But it looks the same
> >> as this
> >> http://git.openembedded.org/openembedded/commit/?id=50ed401cdaaefb1f5ac33de2838af259a52b1c3a
> >> so
> 
> You won't see this when building against oe-core stuff from source.
> This issue is seen when we bring in a prebuilt binary and link against
> libxml2 in the system.

what about all binaries built before this change which are already
available in binary feed created with OE?
 
> >> Acked-by: Martin Jansa <Martin.Jansa@gmail.com>
> >
> > but also double check if all recipes depending on it needs PR bump too,
> > I've expected that it's needed only for transition from versioned to not
> > versioned symbols, but according to:
> > http://git.openembedded.org/openembedded/commit/?id=4373bc4d0cde98dfa188d9a06266afa06f970bfe
> > http://git.openembedded.org/openembedded/commit/?id=7e673ab79c7d76ffc2b733fb32d0b41514eb0db0
> > it was needed also other way around
> 
> Because of the reason above, I don't think we need to bump PR's for
> all these recipes. People just should not normally be seeing this
> issue. If they are well, then they won't be able to make an RPM based
> rfs (maybe others)
> 
> Let me know if that seems reasonable...
> 
> -M
> 
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core

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

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

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

* Re: [PATCH] libxml2: add shared library version info to libxml shared libraries
  2012-01-03 17:31       ` Martin Jansa
@ 2012-01-03 20:41         ` McClintock Matthew-B29882
  2012-01-06 16:59           ` McClintock Matthew-B29882
  0 siblings, 1 reply; 8+ messages in thread
From: McClintock Matthew-B29882 @ 2012-01-03 20:41 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer; +Cc: McClintock Matthew-B29882

On Tue, Jan 3, 2012 at 11:31 AM, Martin Jansa <martin.jansa@gmail.com> wrote:
> On Tue, Jan 03, 2012 at 04:21:16PM +0000, McClintock Matthew-B29882 wrote:
>> On Mon, Jan 2, 2012 at 5:25 PM, Martin Jansa <martin.jansa@gmail.com> wrote:
>> > On Tue, Jan 03, 2012 at 12:22:28AM +0100, Martin Jansa wrote:
>> >> On Mon, Jan 02, 2012 at 04:05:16PM -0600, Matthew McClintock wrote:
>> >> > This fixes an issue with RPM where it checks version imformation for
>> >> > binaries linked against libxml and fails because it's missing info
>> >> >
>> >> > | error: Failed dependencies:
>> >> > |              libxml2.so.2(LIBXML2_2.6.0) is needed by fmc-0.9.7+2-r2.1.ppce500mc
>> >> > |              libxml2.so.2(LIBXML2_2.4.30) is needed by fmc-0.9.7+2-r2.1.ppce500mc
>> >> > | ERROR: Function 'do_rootfs' failed (see
>> >> >
>> >> > Note: fmc is just an example recipe/name
>> >>
>> >> Weird that I haven't noticed this in oe-core before, but probably
>> >> because in oe-core it was always without version. But it looks the same
>> >> as this
>> >> http://git.openembedded.org/openembedded/commit/?id=50ed401cdaaefb1f5ac33de2838af259a52b1c3a
>> >> so
>>
>> You won't see this when building against oe-core stuff from source.
>> This issue is seen when we bring in a prebuilt binary and link against
>> libxml2 in the system.
>
> what about all binaries built before this change which are already
> available in binary feed created with OE?

If you are building from source within oe-core everything is going to
link against the version built by oe-core. I see this issue when I
bring in some prebuilt binary and it's actually linked against an
older version of libxml2.

-M



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

* Re: [PATCH] libxml2: add shared library version info to libxml shared libraries
  2012-01-03 20:41         ` McClintock Matthew-B29882
@ 2012-01-06 16:59           ` McClintock Matthew-B29882
  0 siblings, 0 replies; 8+ messages in thread
From: McClintock Matthew-B29882 @ 2012-01-06 16:59 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer; +Cc: McClintock Matthew-B29882

On Tue, Jan 3, 2012 at 2:41 PM, Matthew McClintock <msm@freescale.com> wrote:
> On Tue, Jan 3, 2012 at 11:31 AM, Martin Jansa <martin.jansa@gmail.com> wrote:
>> On Tue, Jan 03, 2012 at 04:21:16PM +0000, McClintock Matthew-B29882 wrote:
>>> On Mon, Jan 2, 2012 at 5:25 PM, Martin Jansa <martin.jansa@gmail.com> wrote:
>>> > On Tue, Jan 03, 2012 at 12:22:28AM +0100, Martin Jansa wrote:
>>> >> On Mon, Jan 02, 2012 at 04:05:16PM -0600, Matthew McClintock wrote:
>>> >> > This fixes an issue with RPM where it checks version imformation for
>>> >> > binaries linked against libxml and fails because it's missing info
>>> >> >
>>> >> > | error: Failed dependencies:
>>> >> > |              libxml2.so.2(LIBXML2_2.6.0) is needed by fmc-0.9.7+2-r2.1.ppce500mc
>>> >> > |              libxml2.so.2(LIBXML2_2.4.30) is needed by fmc-0.9.7+2-r2.1.ppce500mc
>>> >> > | ERROR: Function 'do_rootfs' failed (see
>>> >> >
>>> >> > Note: fmc is just an example recipe/name
>>> >>
>>> >> Weird that I haven't noticed this in oe-core before, but probably
>>> >> because in oe-core it was always without version. But it looks the same
>>> >> as this
>>> >> http://git.openembedded.org/openembedded/commit/?id=50ed401cdaaefb1f5ac33de2838af259a52b1c3a
>>> >> so
>>>
>>> You won't see this when building against oe-core stuff from source.
>>> This issue is seen when we bring in a prebuilt binary and link against
>>> libxml2 in the system.
>>
>> what about all binaries built before this change which are already
>> available in binary feed created with OE?
>
> If you are building from source within oe-core everything is going to
> link against the version built by oe-core. I see this issue when I
> bring in some prebuilt binary and it's actually linked against an
> older version of libxml2.

ping? Anymore comments on this patch?

-M



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

* Re: [PATCH] libxml2: add shared library version info to libxml shared libraries
  2012-01-02 22:05 [PATCH] libxml2: add shared library version info to libxml shared libraries Matthew McClintock
  2012-01-02 23:22 ` Martin Jansa
@ 2012-01-12  6:24 ` Saul Wold
  1 sibling, 0 replies; 8+ messages in thread
From: Saul Wold @ 2012-01-12  6:24 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer; +Cc: Matthew McClintock

On 01/02/2012 02:05 PM, Matthew McClintock wrote:
> This fixes an issue with RPM where it checks version imformation for
> binaries linked against libxml and fails because it's missing info
>
> | error: Failed dependencies:
> |              libxml2.so.2(LIBXML2_2.6.0) is needed by fmc-0.9.7+2-r2.1.ppce500mc
> |              libxml2.so.2(LIBXML2_2.4.30) is needed by fmc-0.9.7+2-r2.1.ppce500mc
> | ERROR: Function 'do_rootfs' failed (see
>
> Note: fmc is just an example recipe/name
>
> Signed-off-by: Matthew McClintock<msm@freescale.com>
> ---
>   .../libxml/libxml2/fix_version_info.patch          |   23 ++++++++++++++++++++
>   meta/recipes-core/libxml/libxml2_2.7.8.bb          |    4 ++-
>   2 files changed, 26 insertions(+), 1 deletions(-)
>   create mode 100644 meta/recipes-core/libxml/libxml2/fix_version_info.patch
>
> diff --git a/meta/recipes-core/libxml/libxml2/fix_version_info.patch b/meta/recipes-core/libxml/libxml2/fix_version_info.patch
> new file mode 100644
> index 0000000..77113ef
> --- /dev/null
> +++ b/meta/recipes-core/libxml/libxml2/fix_version_info.patch
> @@ -0,0 +1,23 @@
> +Upstream-Status: Already upstream
> +
> +From 00819877651b87842ed878898ba17dba489820f0 Mon Sep 17 00:00:00 2001
> +From: Daniel Veillard<veillard@redhat.com>
> +Date: Thu, 04 Nov 2010 20:53:14 +0000
> +Subject: Reactivate the shared library versionning script
> +
> +---
> +diff --git a/configure.in b/configure.in
> +index 59d0629..a1d2c89 100644
> +--- a/configure.in
> ++++ b/configure.in
> +@@ -84,7 +84,7 @@ else
> +   esac
> + fi
> + AC_SUBST(VERSION_SCRIPT_FLAGS)
> +-AM_CONDITIONAL([USE_VERSION_SCRIPT], [test -z "$VERSION_SCRIPT_FLAGS"])
> ++AM_CONDITIONAL([USE_VERSION_SCRIPT], [test -n "$VERSION_SCRIPT_FLAGS"])
> +
> + dnl
> + dnl We process the AC_ARG_WITH first so that later we can modify
> +--
> +cgit v0.9.0.2
> diff --git a/meta/recipes-core/libxml/libxml2_2.7.8.bb b/meta/recipes-core/libxml/libxml2_2.7.8.bb
> index 2fa246e..0b6ce02 100644
> --- a/meta/recipes-core/libxml/libxml2_2.7.8.bb
> +++ b/meta/recipes-core/libxml/libxml2_2.7.8.bb
> @@ -1,6 +1,8 @@
>   require libxml2.inc
>
> -PR = "r4"
> +PR = "r5"
> +
> +SRC_URI += "file://fix_version_info.patch"
>
>   SRC_URI[md5sum] = "8127a65e8c3b08856093099b52599c86"
>   SRC_URI[sha256sum] = "cda23bc9ebd26474ca8f3d67e7d1c4a1f1e7106364b690d822e009fdc3c417ec"

Merged into OE-Core

Thanks
	Sau!



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

end of thread, other threads:[~2012-01-12 23:21 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-01-02 22:05 [PATCH] libxml2: add shared library version info to libxml shared libraries Matthew McClintock
2012-01-02 23:22 ` Martin Jansa
2012-01-02 23:25   ` Martin Jansa
2012-01-03 16:21     ` McClintock Matthew-B29882
2012-01-03 17:31       ` Martin Jansa
2012-01-03 20:41         ` McClintock Matthew-B29882
2012-01-06 16:59           ` McClintock Matthew-B29882
2012-01-12  6:24 ` 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.