summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Helmert III <ajak@gentoo.org>2021-09-19 19:49:43 -0500
committerMatthias Maier <tamiko@gentoo.org>2021-09-22 21:08:22 -0500
commit197fa637eb382e4abb3b33379d093bea2f33d708 (patch)
tree249cc34de3ef6c34a4fbc2872bf8346dfd940642 /app-emulation/qemu/files
parentnet-analyzer/netselect: Stabilize 0.4-r2 hppa (diff)
downloadgentoo-197fa637eb382e4abb3b33379d093bea2f33d708.tar.gz
gentoo-197fa637eb382e4abb3b33379d093bea2f33d708.tar.bz2
gentoo-197fa637eb382e4abb3b33379d093bea2f33d708.zip
app-emulation/qemu: bump to 6.1.0
Closes: https://bugs.gentoo.org/804525 Signed-off-by: John Helmert III <ajak@gentoo.org> Signed-off-by: Matthias Maier <tamiko@gentoo.org>
Diffstat (limited to 'app-emulation/qemu/files')
-rw-r--r--app-emulation/qemu/files/qemu-6.1.0-strings.patch26
1 files changed, 26 insertions, 0 deletions
diff --git a/app-emulation/qemu/files/qemu-6.1.0-strings.patch b/app-emulation/qemu/files/qemu-6.1.0-strings.patch
new file mode 100644
index 000000000000..2efe7b29330a
--- /dev/null
+++ b/app-emulation/qemu/files/qemu-6.1.0-strings.patch
@@ -0,0 +1,26 @@
+Forward-ported from original patch for 5.2.0.
+
+diff --git a/configure b/configure
+index da2501489f..4660ee3ee5 100755
+--- a/configure
++++ b/configure
+@@ -516,6 +516,7 @@ ld="${LD-${cross_prefix}ld}"
+ ranlib="${RANLIB-${cross_prefix}ranlib}"
+ nm="${NM-${cross_prefix}nm}"
+ strip="${STRIP-${cross_prefix}strip}"
++strings="${STRINGS-${cross_prefix}strings}"
+ windres="${WINDRES-${cross_prefix}windres}"
+ pkg_config_exe="${PKG_CONFIG-${cross_prefix}pkg-config}"
+ query_pkg_config() {
+@@ -2380,9 +2381,9 @@ int main(int argc, char *argv[])
+ EOF
+
+ if compile_prog ; then
+- if strings -a $TMPE | grep -q BiGeNdIaN ; then
++ if $strings -a $TMPE | grep -q BiGeNdIaN ; then
+ bigendian="yes"
+- elif strings -a $TMPE | grep -q LiTtLeEnDiAn ; then
++ elif $strings -a $TMPE | grep -q LiTtLeEnDiAn ; then
+ bigendian="no"
+ else
+ echo big/little test failed