diff options
author | Björn Jacke <bj@sernet.de> | 2010-08-27 00:13:07 +0200 |
---|---|---|
committer | Björn Jacke <bj@sernet.de> | 2010-08-31 09:07:22 +0200 |
commit | 9f87bc4588c2ac669f6e808158dca7ec8517a461 (patch) | |
tree | 91a504b665896709ea8ee5855925fa45a03e7dd9 /lib | |
parent | 4e104f185e1aa12c0923e82d3991a658eb2b9474 (diff) | |
download | samba-9f87bc4588c2ac669f6e808158dca7ec8517a461.tar.gz samba-9f87bc4588c2ac669f6e808158dca7ec8517a461.tar.xz samba-9f87bc4588c2ac669f6e808158dca7ec8517a461.zip |
libreplace/waf: look for clock_gettime
Diffstat (limited to 'lib')
-rw-r--r-- | lib/replace/wscript | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/replace/wscript b/lib/replace/wscript index 66b0e87d38f..8c1c57f12cb 100644 --- a/lib/replace/wscript +++ b/lib/replace/wscript @@ -173,6 +173,7 @@ def configure(conf): define='DLOPEN_TAKES_UNSIGNED_FLAGS', headers='dlfcn.h dl.h') conf.CHECK_FUNCS_IN('fdatasync', 'rt', checklibc=True) + conf.CHECK_FUNCS_IN('clock_gettime', 'rt', checklibc=True) # these headers need to be tested as a group on freebsd conf.CHECK_HEADERS(headers='sys/socket.h net/if.h', together=True) |