From 80f42df4ec9194ff00aeeb3c2cf6acfa1f2ab5c3 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Tue, 23 Oct 2012 17:14:55 +1100 Subject: lib/replace: Fix detection of prctl --- source3/wscript | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/source3/wscript b/source3/wscript index 92575c8264..00e9858517 100644 --- a/source3/wscript +++ b/source3/wscript @@ -266,6 +266,14 @@ __sys_llseek syslog _telldir __telldir textdomain timegm utimensat vsyslog _write __write __xstat ''') + conf.CHECK_CODE(''' +#ifdef HAVE_SYS_PRCTL_H +#include +#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 -- cgit