search for: warn_deprec

Displaying 2 results from an estimated 2 matches for "warn_deprec".

2019 Apr 23
0
[PATCH 7/7] perl: show warnings for deprecated functions
...pr "void\n" | RInt _ -> pr "SV *\n" @@ -444,6 +444,16 @@ PREINIT: pr " PPCODE:\n"; ); + (match deprecated_by with + | Not_deprecated -> () + | Replaced_by alt -> + pr " Perl_ck_warner (aTHX_ packWARN(WARN_DEPRECATED),\n"; + pr " \"Sys::Guestfs::%s is deprecated; use Sys::Guestfs::%s instead\");\n" name alt; + | Deprecated_no_replacement -> + pr " Perl_ck_warner (aTHX_ packWARN(WARN_DEPRECATED),\n"; + pr " \"Sys::Gu...
2019 Apr 23
8
[PATCH 0/7] Make deprecation warnings more prominent
...systems) when deprecated functions are used The Java binding already emits warnings since libguestfs 1.29.25 (85b6b5e589bea56046b85a5b0143a364e20dacd1). Pino Toscano (7): tests: switch last-errno away from deprecated APIs lib: enable deprecation warnings by default build: stop using GUESTFS_WARN_DEPRECATED lib: introduce GUESTFS_NO_DEPRECATED python: show warnings for deprecated functions ruby: show warnings for deprecated functions perl: show warnings for deprecated functions align/Makefile.am | 2 +- cat/Makefile.am | 10 +++++----- common/edit/Makefile.am...