qemu-trivial
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH] meson.build: Use a function from libfdt 1.5.1 for the librar


From: Paolo Bonzini
Subject: Re: [PATCH] meson.build: Use a function from libfdt 1.5.1 for the library check
Date: Wed, 19 Jan 2022 09:49:25 +0100
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.4.0

On 1/18/22 18:05, Thomas Huth wrote:
The fdt version test in meson.build uses a function from libfdt v1.4.7,
but we require version 1.5.1 nowadays. Thus use a function that has
been introduced in that version instead.

Resolves: https://gitlab.com/qemu-project/qemu/-/issues/822
Signed-off-by: Thomas Huth <thuth@redhat.com>
---
  meson.build | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meson.build b/meson.build
index 762d7cee85..d1cc04c7a2 100644
--- a/meson.build
+++ b/meson.build
@@ -2276,7 +2276,7 @@ if have_system
      if fdt.found() and cc.links('''
         #include <libfdt.h>
         #include <libfdt_env.h>
-       int main(void) { fdt_check_full(NULL, 0); return 0; }''',
+       int main(void) { fdt_find_max_phandle(NULL, NULL); return 0; }''',
           dependencies: fdt)
        fdt_opt = 'system'
      elif fdt_opt == 'system'

Queued, thanks.

Paolo



reply via email to

[Prev in Thread] Current Thread [Next in Thread]