search for: __deprecated__

Displaying 4 results from an estimated 4 matches for "__deprecated__".

2023 Sep 02
1
Fails to install Rfast package
...to security concerns inherent in the design of sprintf(3), it is highly recommended that you use snp... ^ /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg' #define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg))) ^ 1 warning generated. clang++ -mmacosx-version-min=10.13 -std=gnu++17 -I"/Library/Frameworks/R.framework/Resources/include" -DNDEBUG -I../inst/include -I'/Library/Frameworks/R.framework/Versions/4.2/Resources/library/Rc...
2011 Jun 03
1
new debian packages?
Hi! The debian packages for libguestfs ( at http://libguestfs.org/download/binaries/debian-packages/) are a few months old, and there are some pretty important bug fixes since then. In particular, I have some cumbersome workarounds for the Python GIL bug which was fixed in April. I was wondering if anyone is working on building a new version of these? I tried to do it myself, but I
2017 Mar 03
2
[PATCH] generator: Allow actions to be deprecated with no replacement.
...TED_BY(s) +#define GUESTFS_DEPRECATED_NO_REPLACEMENT +#define GUESTFS_DEPRECATED_REPLACED_BY(s) #if GUESTFS_WARN_DEPRECATED # if defined(__GNUC__) && GUESTFS_GCC_VERSION >= 40500 /* gcc >= 4.5 */ -# undef GUESTFS_DEPRECATED_BY -# define GUESTFS_DEPRECATED_BY(s) __attribute__((__deprecated__(\"change the program to use guestfs_\" s \" instead of this deprecated function\"))) +# undef GUESTFS_DEPRECATED_NO_REPLACEMENT +# undef GUESTFS_DEPRECATED_REPLACED_BY +# define GUESTFS_DEPRECATED_NO_REPLACEMENT __attribute__((__deprecated__)) +# define GUESTFS_DEPRE...
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