Return TRUE when feature is supported.
Known features are:
"backtrace" - Wether stack backtrace is available
"resolve" - Wether IO.resolve() is available
"fork" - Wether fork() is available
"sigaction" - Wether sigaction() is available
"portable" - Whether compiling with --portable
"keepunused" - Whether compiling with --keepunused
"managed" - Whether memory is being managed
"mswindows" - Whether running on MS-Windows
"ctx" - Whether the CTX library is used.
Example:
GENERATE_IF Z.have("resolve")
fname = IO.resolve(fname)
}
|