On 03/09/2021 15.22, Peter Maydell wrote:
On Thu, 2 Sept 2021 at 13:49, Thomas Huth <th...@redhat.com> wrote:
Hi Peter,
the following changes since commit 59a89510b62ec23dbeab8b02fa4e3526e353d8b6:
Merge remote-tracking branch
'remotes/stefanberger/tags/pull-tpm-2021-09-01-1' into staging (2021-09-02
08:51:31 +0100)
are available in the Git repository at:
https://gitlab.com/thuth/qemu.git tags/pull-request-2021-09-02
for you to fetch changes up to c72dc94b74fb1686decc0ca4c2b05e5bf2e5b74b:
softmmu/vl: Deprecate the -sdl and -curses option (2021-09-02 14:43:58 +0200)
----------------------------------------------------------------
* Add definitions of terms for CI/testing
* Fix g_setenv problem discovered by Coverity
* Gitlab CI improvements
* Build system improvements (configure script + meson.build)
* Removal of the show-fixed-bugs.sh script
* Clean up of the sdl and curses options
This provokes a new warning from meson on a linux-static build:
Run-time dependency appleframeworks found: NO (tried framework)
Library rt found: YES
Found pkg-config: /usr/bin/pkg-config (0.29.1)
WARNING: Static library 'gbm' not found for dependency 'gbm', may not
be statically linked
Run-time dependency gbm found: YES 20.0.8
Dependency libpng found: YES 1.6.34 (cached)
Dependency libjpeg found: YES unknown (cached)
If we're building statically and we can't find a static
library then (a) we shouldn't print a WARNING and
(b) we shouldn't then conclude that we've found gdm.
Hmmm, no clue what's wrong here, since I basically did declare it like all
other libraries are declared, too (so this problem should have shown up
somewhere else already?)... Paolo, do you have any ideas what's going on here?
Thomas