diff options
Diffstat (limited to 'meta/recipes-extended')
-rw-r--r-- | meta/recipes-extended/libzypp/libzypp/mips-workaround-gcc-tribool-error.patch | 22 | ||||
-rw-r--r-- | meta/recipes-extended/libzypp/libzypp_git.bb | 4 |
2 files changed, 25 insertions, 1 deletions
diff --git a/meta/recipes-extended/libzypp/libzypp/mips-workaround-gcc-tribool-error.patch b/meta/recipes-extended/libzypp/libzypp/mips-workaround-gcc-tribool-error.patch new file mode 100644 index 0000000000..849ce3dd8b --- /dev/null +++ b/meta/recipes-extended/libzypp/libzypp/mips-workaround-gcc-tribool-error.patch | |||
@@ -0,0 +1,22 @@ | |||
1 | # with gcc 4.3.3 and MIPS target, gcc "internal compiler error: segmentation fault" error | ||
2 | # occurs when compiling Applydeltarpm.cc. I didn't find the exact reason leading to this | ||
3 | # error, but it should be related to how boost tribool type is interpreted by g++. So provide | ||
4 | # this mips workaround for now. We'll come back later to check whether it's still required after | ||
5 | # upgrading to 4.5.0. | ||
6 | # | ||
7 | # Signed-off-by Kevin Tian <kevin.tian@intel.com>, 2010-09-08 | ||
8 | |||
9 | diff --git a/zypp/repo/Applydeltarpm.cc b/zypp/repo/Applydeltarpm.cc | ||
10 | index 7b382be..0d7a1f8 100644 | ||
11 | --- a/zypp/repo/Applydeltarpm.cc | ||
12 | +++ b/zypp/repo/Applydeltarpm.cc | ||
13 | @@ -77,7 +77,8 @@ namespace zypp | ||
14 | else | ||
15 | { | ||
16 | // _last is 'indeterminate' or '!have' | ||
17 | - if ( (_last = have) ) | ||
18 | + _last = have; | ||
19 | + if ( _last ) | ||
20 | MIL << "Found executable " << prog << endl; | ||
21 | else | ||
22 | WAR << "No executable " << prog << endl; | ||
diff --git a/meta/recipes-extended/libzypp/libzypp_git.bb b/meta/recipes-extended/libzypp/libzypp_git.bb index a2856d1475..44ea60d054 100644 --- a/meta/recipes-extended/libzypp/libzypp_git.bb +++ b/meta/recipes-extended/libzypp/libzypp_git.bb | |||
@@ -10,11 +10,13 @@ DEPENDS = "rpm boost gettext curl libxml2 zlib sat-solver expat openssl udev" | |||
10 | 10 | ||
11 | S = "${WORKDIR}/git" | 11 | S = "${WORKDIR}/git" |
12 | PV = "0.0-git${SRCPV}" | 12 | PV = "0.0-git${SRCPV}" |
13 | PR = "r0" | 13 | PR = "r1" |
14 | 14 | ||
15 | SRC_URI = "git://gitorious.org/opensuse/libzypp.git;protocol=git \ | 15 | SRC_URI = "git://gitorious.org/opensuse/libzypp.git;protocol=git \ |
16 | file://no-doc.patch \ | 16 | file://no-doc.patch \ |
17 | file://rpm5.patch" | 17 | file://rpm5.patch" |
18 | 18 | ||
19 | SRC_URI_append_mips = " file://mips-workaround-gcc-tribool-error.patch" | ||
20 | |||
19 | FILES_${PN} += "${libdir}/zypp ${datadir}/zypp ${datadir}/icons" | 21 | FILES_${PN} += "${libdir}/zypp ${datadir}/zypp ${datadir}/icons" |
20 | FILES_${PN}-dev += "${datadir}/cmake" | 22 | FILES_${PN}-dev += "${datadir}/cmake" |