|
| From: | Paolo Bonzini |
| Subject: | Re: Regressions in build process introduced since August |
| Date: | Mon, 23 Nov 2020 14:55:11 +0100 |
| User-agent: | Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.4.0 |
On 21/11/20 12:09, Stefan Weil wrote:
--- a/meson.build
+++ b/meson.build
@@ -649,9 +649,8 @@ if get_option('vnc').enabled()
vnc = declare_dependency() # dummy dependency
png = dependency('libpng', required: get_option('vnc_png'),
method: 'pkg-config', static: enable_static)
- jpeg = cc.find_library('jpeg', has_headers: ['jpeglib.h'],
- required: get_option('vnc_jpeg'),
- static: enable_static)
Does it work if you just remove "static: enable_static"? That asks Meson to look explicitly for a ".a" file instead of just adding a "-ljpeg" flag. However it is not what configure used to do so it shouldn't be necessary.
Paolo
| [Prev in Thread] | Current Thread | [Next in Thread] |