Hi! I think the main error during the installation on Mavericks is the change in the function "clock_gettime": now its called "clock_get_time".
/bladeRF/host/utilities/bladeRF-cli/src/cmd/rxtx.c:703:18: error:
implicit declaration of function 'clock_gettime' is invalid in C99
[-Werror,-Wimplicit-function-declaration]
status = clock_gettime(CLOCK_REALTIME, &timeout_abs);
^
/bladeRF/host/utilities/bladeRF-cli/src/cmd/rxtx.c:703:32: error:
use of undeclared identifier 'CLOCK_REALTIME'
status = clock_gettime(CLOCK_REALTIME, &timeout_abs);
^
/bladeRF/host/utilities/bladeRF-cli/src/cmd/rxtx.c:773:33: error:
use of undeclared identifier 'CLOCK_REALTIME'
status = clock_gettime(CLOCK_REALTIME, &timeout_abs);
There's a fix needed on the source code:
https://gist.github.com/jbenet/1087739