Displaying 3 results from an estimated 3 matches for "dguestfs_no_deprecated".
2019 Apr 23
8
[PATCH 0/7] Make deprecation warnings more prominent
Since there are deprecated APIs, make sure that users notice they are
deprecated in more prominent ways than done so far:
- using deprecated C functions now warns by default
- it is possible to use the C library making sure no deprecated function
is ever used
- Python/Ruby/Perl scripts now get warning messages (configured
according to their own systems) when deprecated functions are used
The
2020 Mar 10
2
ANNOUNCE: libguestfs 1.42 - tools for accessing and modifying virtual machine disk images
...piler deprecation
warnings by default, whereas previously you have to enable these
warnings. To turn off these warnings use
"-DGUESTFS_NO_WARN_DEPRECATED=1". A new feature is that you can now
disable deprecated APIs completely if you want, using
"-DGUESTFS_NO_DEPRECATED=1" (Pino Toscano).
Fix hostname in virt-builder templates (Pino Toscano).
The single large release notes file is now split into multiple
documents organized by version.
The "--key" option of several tools was broken, especially if you tried
to us...
2019 Dec 20
3
[common/libguestfs PATCH 0/2] Fix OCaml/Python linking
Make sure they can build also in no as-neede setups.
Pino Toscano (1):
utils: split string list functions in own file
build: use split stringlist functions from common/utils
utils/Makefile.am | 2 +
utils/guestfs-stringlists-utils.h | 30 +++++
utils/guestfs-utils.h | 7 +-
utils/stringlists-utils.c | 197 ++++++++++++++++++++++++++++++
utils/utils.c