diff options
author | ulf@emagii.com <ulf@emagii.com> | 2013-12-07 23:29:41 +0100 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2013-12-21 19:16:52 +0100 |
commit | 480d3338a7401f53e7b8a031294d37498a6a7be6 (patch) | |
tree | 7efc71af93bc85b76696f3123c3cce4eded49919 /meta-xfce/recipes-xfce/xfconf | |
parent | a350707870735d5bcc694bacaaa0dfffb7233143 (diff) | |
download | meta-openembedded-480d3338a7401f53e7b8a031294d37498a6a7be6.tar.gz |
xfconf: use sysroot and target perl
xfconf-4.10.0 does not use OE sysroot as is.
--with-sysroot=yes
will make configure run CC --print-sysroot
and use that.
When searching the PATH for perl, no target perl is found,
since PATH does not contain any reference.
Instead native perl is found, and if certain perl packages
are installed on the host machine, the xfconf perl support
is enabled which may cause the build to fail on 64 bit hosts.
If the perl packages are not installed on the host, then
perl support in xfconf is disabled, and the xfconf build
will succeed, even on 64 bit hosts.
If native perl is found, and the perl packages are available
on the host, the perl support is enabled.
Since native perl is used, the native linker is used to link the
resulting *target* code.
The perl support requires some libraries, which are built for the target.
If the host is 64 bit (x86_64) and the target is 32 bit (ARM?),
there is a mismatch which is detected by the linker,
and the libraries found are rejected.
If the host does not have the correct libraries,
then the xfconf build fails.
If the host has the correct libraries, then the linker will try
to link host libraries with the target application.
The patch will define PERL as the target perl.
This means that configure will look for the required perl
packages in the target sysroot, instead of in the native filesystem.
The patch has been tested in Angstrom master, which does not
build the required perl packages, and thus perl support
in xfconf is disabled, and the build succeeds.
A simpler way to do this, proposed by Charles Ash <ashcharles@gmail.com>
is to simply disable the perl-support in xfconf.
This patch will be better, if ever the support for the needed
perl packages is added to the OpenEmbedded/Angstrom build.
Signed-off-by: Ulf Samuelsson <ulf@emagii.com>
Tested-by: Ash Charles <ashcharles@gmail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-xfce/recipes-xfce/xfconf')
-rw-r--r-- | meta-xfce/recipes-xfce/xfconf/xfconf_4.10.0.bb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/meta-xfce/recipes-xfce/xfconf/xfconf_4.10.0.bb b/meta-xfce/recipes-xfce/xfconf/xfconf_4.10.0.bb index 4ea2b88489..945819e785 100644 --- a/meta-xfce/recipes-xfce/xfconf/xfconf_4.10.0.bb +++ b/meta-xfce/recipes-xfce/xfconf/xfconf_4.10.0.bb | |||
@@ -2,10 +2,13 @@ DESCRIPTION = "Xfce configuration daemon and utilities" | |||
2 | SECTION = "x11/wm" | 2 | SECTION = "x11/wm" |
3 | LICENSE = "GPLv2" | 3 | LICENSE = "GPLv2" |
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552" | 4 | LIC_FILES_CHKSUM = "file://COPYING;md5=59530bdf33659b29e73d4adb9f9f6552" |
5 | DEPENDS = "dbus-glib libxfce4util perl-native" | 5 | DEPENDS = "dbus-glib libxfce4util perl" |
6 | 6 | ||
7 | inherit xfce | 7 | inherit xfce |
8 | 8 | ||
9 | EXTRA_OECONF += "PERL=${STAGING_DIR_TARGET}/usr/bin/perl" | ||
10 | EXTRA_OECONF += "--with-sysroot=yes" | ||
11 | |||
9 | SRC_URI += "file://0001-Simplify-checks.patch" | 12 | SRC_URI += "file://0001-Simplify-checks.patch" |
10 | SRC_URI[md5sum] = "4ed48150a03fb5f42b455494307b7f28" | 13 | SRC_URI[md5sum] = "4ed48150a03fb5f42b455494307b7f28" |
11 | SRC_URI[sha256sum] = "175219a441cc7d0f210bbd1a3b0abba41598627cd9db27235811400c3e100576" | 14 | SRC_URI[sha256sum] = "175219a441cc7d0f210bbd1a3b0abba41598627cd9db27235811400c3e100576" |