Closed fish2000 closed 9 years ago
According to the signal
man page, this is defined on Linux if _BSD_SOURCE
is defined. But what's strange is if I change the code to just use sig_t
it compiles fine either way, even if I don't define that. But who knows if that would be the case on other setups. So your change is probably the safest bet.
Weird – good to know re: signal
platform quirks. Glad it works either way. Yes!
… apparently the Apple/BSD
signal.h
interface is exactly the same as what’s on Linux, except for this. The codebase as it stands, on master at HEAD, errors out duringmake
like so:… but if I include the one alias per the PR,
hiptext
builds OK (with both Apple Clang 6.2 something and also LLVM Clang, somewhat recent HEAD from the 3.7 branch) and but then everything runs completely as advertised in every way thereafter:Yes!