diff options
author | Khem Raj <raj.khem@gmail.com> | 2012-03-27 19:41:05 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-03-28 09:23:57 +0100 |
commit | 38a18c9d52b2f0276445b3f8be7dbf464f5b64c7 (patch) | |
tree | 19d148b01c5e4ccf05a8287a33797d20cf23e405 /meta/recipes-extended/zypper | |
parent | e3117fb15498c899282f25a195f3dd3dc889168c (diff) | |
download | openembedded-core-38a18c9d52b2f0276445b3f8be7dbf464f5b64c7.tar.gz openembedded-core-38a18c9d52b2f0276445b3f8be7dbf464f5b64c7.tar.bz2 openembedded-core-38a18c9d52b2f0276445b3f8be7dbf464f5b64c7.tar.xz openembedded-core-38a18c9d52b2f0276445b3f8be7dbf464f5b64c7.zip |
zypper: Fix build with gcc 4.7
More details in patch header
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/zypper')
-rw-r--r-- | meta/recipes-extended/zypper/zypper/gcc-scope.patch | 20 | ||||
-rw-r--r-- | meta/recipes-extended/zypper/zypper_git.bb | 3 |
2 files changed, 22 insertions, 1 deletions
diff --git a/meta/recipes-extended/zypper/zypper/gcc-scope.patch b/meta/recipes-extended/zypper/zypper/gcc-scope.patch new file mode 100644 index 000000000..a35c0d91d --- /dev/null +++ b/meta/recipes-extended/zypper/zypper/gcc-scope.patch @@ -0,0 +1,20 @@ +Fix errors like below + +| /home/kraj/work/openembedded-core/build/tmp-eglibc/work/qemumips-oe-linux/zypper-1.5.3-git1+2c5bb6ceb99ecd950ef993e43d77bf0569ea0582-r1/git/src/utils/console.cc:55:8: error: '::isatty' has not been declared +| /home/kraj/work/openembedded-core/build/tmp-eglibc/work/qemumips-oe-linux/zypper-1.5.3-git1+2c5bb6ceb99ecd950ef993e43d77bf0569ea0582-r1/git/src/utils/console.cc:55:17: error: 'STDOUT_FILENO' was not declared in this scope + +Signed-off-by: Khem Raj <raj.khem@gmail.com> + +Upstream-Status: Pending +Index: git/src/utils/console.cc +=================================================================== +--- git.orig/src/utils/console.cc 2012-03-27 19:12:06.171036356 -0700 ++++ git/src/utils/console.cc 2012-03-27 19:12:52.887038622 -0700 +@@ -15,6 +15,7 @@ + #include <readline/readline.h> + #include <readline/history.h> + #include <cstdlib> ++#include <unistd.h> + + using namespace std; + diff --git a/meta/recipes-extended/zypper/zypper_git.bb b/meta/recipes-extended/zypper/zypper_git.bb index e5963be5b..56ccc8622 100644 --- a/meta/recipes-extended/zypper/zypper_git.bb +++ b/meta/recipes-extended/zypper/zypper_git.bb @@ -5,7 +5,7 @@ LICENSE = "GPLv2+" LIC_FILES_CHKSUM = "file://COPYING;md5=3201406e350b39e05a82e28b5020f413" DEPENDS = "libzypp augeas" -PR = "r1" +PR = "r2" SRCREV = "2c5bb6ceb99ecd950ef993e43d77bf0569ea0582" inherit cmake @@ -15,6 +15,7 @@ SRC_URI = "git://github.com/openSUSE/zypper.git;protocol=git \ file://cmake_libxml2.patch \ file://dso_linking_change_build_fix.patch \ file://rpm5-flag.patch \ + file://gcc-scope.patch \ " S = "${WORKDIR}/git" |