diff options
author | Jonathan Perkin <jonathan@perkin.org.uk> | 2023-09-08 18:45:42 +0100 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2023-09-13 09:33:51 +0200 |
commit | fb0a8b0e238277296907ffe765bf76874cfc1df6 (patch) | |
tree | 69bc1ad787f9ac67d06bf3aebdc58bbc450138ab /net | |
parent | 9ef497755afc252fb8e060c9ea6b0987abfd20b6 (diff) |
meson: Fix targetos match for illumos and Solaris.
qemu 8.1.0 breaks on illumos platforms due to _XOPEN_SOURCE and others no longer being set correctly, leading to breakage such as:
https://us-central.manta.mnx.io/pkgsrc/public/reports/trunk/tools/20230908.1404/qemu-8.1.0/build.log
This is a result of meson conversion which incorrectly matches against 'solaris' instead of 'sunos' for uname.
First time submitting a patch here, hope I did it correctly. Thanks.
Signed-off-by: Jonathan Perkin <jonathan@perkin.org.uk>
Message-ID: <ZPtdxtum9UVPy58J@perkin.org.uk>
Cc: qemu-stable@nongnu.org
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'net')
-rw-r--r-- | net/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/meson.build b/net/meson.build index d2d70634e5..51caa42c9d 100644 --- a/net/meson.build +++ b/net/meson.build @@ -47,7 +47,7 @@ elif targetos == 'linux' system_ss.add(files('tap.c', 'tap-linux.c')) elif targetos in bsd_oses system_ss.add(files('tap.c', 'tap-bsd.c')) -elif targetos == 'solaris' +elif targetos == 'sunos' system_ss.add(files('tap.c', 'tap-solaris.c')) else system_ss.add(files('tap.c', 'tap-stub.c')) |