diff options
author | Andreas Schneider <asn@samba.org> | 2013-02-25 10:02:35 +0100 |
---|---|---|
committer | David Disseldorp <ddiss@suse.de> | 2013-03-05 23:29:43 +0100 |
commit | def575bc29ee399fc93320b0f3716bc15740863d (patch) | |
tree | 97988f5f37e51df5f3bf9ae01c541fb4fd1f057d /source3/wscript | |
parent | 3c134bcf86a156b8b0292e6a8108050273038b29 (diff) | |
download | samba-def575bc29ee399fc93320b0f3716bc15740863d.tar.gz samba-def575bc29ee399fc93320b0f3716bc15740863d.tar.bz2 samba-def575bc29ee399fc93320b0f3716bc15740863d.zip |
waf: Correctly check for prctl in just one place.
Reviewed-by: David Disseldorp <ddiss@samba.org>
Diffstat (limited to 'source3/wscript')
-rw-r--r-- | source3/wscript | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/source3/wscript b/source3/wscript index 7a99dc1c55..1bc68115e5 100644 --- a/source3/wscript +++ b/source3/wscript @@ -317,7 +317,7 @@ _lstat __lstat lutimes __lxstat memalign mknod mlock mlockall munlock munlockall _open __open _opendir __opendir pathconf poll posix_fallocate -posix_memalign prctl pread _pread __pread +posix_memalign pread _pread __pread pwrite _pwrite __pwrite rdchk _read __read _readdir __readdir _seekdir __seekdir @@ -330,14 +330,6 @@ __sys_llseek syslog _telldir __telldir textdomain timegm utimensat vsyslog _write __write __xstat ''') - conf.CHECK_CODE(''' -#ifdef HAVE_SYS_PRCTL_H -#include <sys/prctl.h> -#endif -int i; i = prtcl(0); -''', - 'HAVE_PRCTL', link=False) - conf.CHECK_SAMBA3_CHARSET() # see build/charset.py # FIXME: these should be tests for features, but the old build system just |