[BACK]Return to patch-configure CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / pkgsrc / emulators / qemu / patches

File: [cvs.NetBSD.org] / pkgsrc / emulators / qemu / patches / Attic / patch-configure (download)

Revision 1.34, Fri Sep 10 13:10:58 2021 UTC (2 years, 6 months ago) by nia
Branch: MAIN
CVS Tags: pkgsrc-2021Q3-base, pkgsrc-2021Q3
Changes since 1.33: +18 -37 lines

qemu: Patch out silly insistence on being compiled with GCC 7.5.0

$NetBSD: patch-configure,v 1.34 2021/09/10 13:10:58 nia Exp $

Allow the compiler from NetBSD 9.0.

Requiring a minor version of GCC makes no sense, and indeed,
the requirement seems to be 7.5.0 because "Ubuntu has that
version"...

https://github.com/qemu/qemu/commit/56208a0d473c6db263cc333c787ca48b502d72ab

--- configure.orig	2021-08-24 17:35:40.000000000 +0000
+++ configure
@@ -2099,7 +2099,7 @@ cat > $TMPC << EOF
 #  endif
 # endif
 #elif defined(__GNUC__) && defined(__GNUC_MINOR__)
-# if __GNUC__ < 7 || (__GNUC__ == 7 && __GNUC_MINOR__ < 5)
+# if __GNUC__ < 7
 #  error You need at least GCC v7.5.0 to compile QEMU
 # endif
 #else