All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] meson.build: Disallow libnfs v6 to fix the broken macOS build
@ 2024-12-18  6:51 Thomas Huth
  2024-12-18 10:31 ` Philippe Mathieu-Daudé
  2024-12-18 10:40 ` Daniel P. Berrangé
  0 siblings, 2 replies; 4+ messages in thread
From: Thomas Huth @ 2024-12-18  6:51 UTC (permalink / raw)
  To: qemu-devel, Paolo Bonzini
  Cc: qemu-stable, Marc-André Lureau, Daniel P. Berrangé,
	Philippe Mathieu-Daudé, Peter Lieven, qemu-block,
	Stefan Hajnoczi

The macOS build in our CI is currently broken since homebrew
updated libnfs to version 6 - and that version apparently comes
with a big API breakage. Disallow that version for now to get the
broken CI job working again. Once somebody had enough time to
adapt our code in block/nfs.c, we can revert this change again.

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 85f7485473..6149b50db2 100644
--- a/meson.build
+++ b/meson.build
@@ -1145,7 +1145,7 @@ endif
 
 libnfs = not_found
 if not get_option('libnfs').auto() or have_block
-  libnfs = dependency('libnfs', version: '>=1.9.3',
+  libnfs = dependency('libnfs', version: ['>=1.9.3', '<6.0.0'],
                       required: get_option('libnfs'),
                       method: 'pkg-config')
 endif
-- 
2.47.1



^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2024-12-18 10:46 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-18  6:51 [PATCH] meson.build: Disallow libnfs v6 to fix the broken macOS build Thomas Huth
2024-12-18 10:31 ` Philippe Mathieu-Daudé
2024-12-18 10:40 ` Daniel P. Berrangé
2024-12-18 10:45   ` Thomas Huth

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.