Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
build: fix SYS_clock_gettime feature check
Browse files Browse the repository at this point in the history
execute=True makes it fail while cross-compiling.

Fixes #1541.
  • Loading branch information
bnoordhuis committed Sep 16, 2011
1 parent b31d5ac commit ed44098
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deps/libev/wscript
Expand Up @@ -63,7 +63,7 @@ def configure(conf):
return 0;
}
"""
conf.check_cc(fragment=code, define_name="HAVE_CLOCK_SYSCALL", execute=True,
conf.check_cc(fragment=code, define_name="HAVE_CLOCK_SYSCALL",
msg="Checking for SYS_clock_gettime")

have_librt = conf.check(lib='rt', uselib_store='RT')
Expand Down

0 comments on commit ed44098

Please sign in to comment.