diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2020-04-24 15:29:05 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-24 15:29:05 -0400 |
commit | 338abde356efcae6cf0a000b71b781d21c8733b6 (patch) | |
tree | b275d303c93662ea4879fdca4597aa21e1c9421c /lib/config_global.c | |
parent | d78903961ee95376bccde7c1313be5b583911ab7 (diff) | |
parent | 24992f1f426111f0ce05df341087a55486ae48db (diff) | |
download | spmc-338abde356efcae6cf0a000b71b781d21c8733b6.tar.gz |
Merge pull request #30 from jhunkeler/shlib-macos
Shlib macos
Diffstat (limited to 'lib/config_global.c')
-rw-r--r-- | lib/config_global.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/config_global.c b/lib/config_global.c index 52589d4..95302c3 100644 --- a/lib/config_global.c +++ b/lib/config_global.c @@ -129,11 +129,11 @@ void check_runtime_environment(void) { int bad_rt = 0; char *required[] = { "file", -#if defined(__linux) || defined(__linux__) +#if OS_LINUX "patchelf", -#elif defined(__APPLE__) && defined(__MACH__) +#elif OS_DARWIN "install_name_tool", -#elif defined(__WIN32__) +#elif OS_WINDOWS // TODO: Does windows provide some kind of equivalent? #endif "objdump", |