[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v5 5/7] slirp: update build flags for iOS resolv fix
|
From: |
Joelle van Dyne |
|
Subject: |
[PATCH v5 5/7] slirp: update build flags for iOS resolv fix |
|
Date: |
Sun, 8 Nov 2020 15:24:22 -0800 |
A future libslirp update will use libresolv on Darwin systems, so we add the
flags in QEMU build now.
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Signed-off-by: Joelle van Dyne <j@getutm.app>
---
meson.build | 2 ++
1 file changed, 2 insertions(+)
diff --git a/meson.build b/meson.build
index b087721f63..40dd3b30fc 100644
--- a/meson.build
+++ b/meson.build
@@ -1156,6 +1156,8 @@ if have_system
slirp_deps = []
if targetos == 'windows'
slirp_deps = cc.find_library('iphlpapi')
+ elif targetos == 'darwin'
+ slirp_deps = cc.find_library('resolv')
endif
slirp_conf = configuration_data()
slirp_conf.set('SLIRP_MAJOR_VERSION',
meson.project_version().split('.')[0])
--
2.28.0
- [PATCH v5 2/7] configure: cross-compiling with empty cross_prefix, (continued)
[PATCH v5 5/7] slirp: update build flags for iOS resolv fix,
Joelle van Dyne <=
[PATCH v5 4/7] coroutine: add libucontext as external library, Joelle van Dyne, 2020/11/08
[PATCH v5 7/7] block: check availablity for preadv/pwritev on mac, Joelle van Dyne, 2020/11/08
Re: [PATCH v5 0/7] iOS and Apple Silicon host support, Stefan Hajnoczi, 2020/11/12