From 2440845acebff3a59ebb54d0ef8cdab39bf71962 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Sat, 30 Aug 2014 01:54:44 +0200 Subject: Look for system setproctitle before trying -lbsd. Change-Id: I390c186d7c1400287c6a18909a5d6587f2052243 Signed-Off-By: Jelmer Vernooij Reviewed-by: David Disseldorp --- lib/replace/wscript | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/replace/wscript') diff --git a/lib/replace/wscript b/lib/replace/wscript index b90f7752a7..6f2fb66a2c 100644 --- a/lib/replace/wscript +++ b/lib/replace/wscript @@ -288,8 +288,8 @@ struct foo bar = { .y = 'X', .x = 1 }; checklibc=True) if not conf.CHECK_FUNCS('getpeereid'): conf.CHECK_FUNCS_IN('getpeereid', 'bsd', headers='sys/types.h bsd/unistd.h') - if not conf.CHECK_FUNCS_IN('setproctitle', 'bsd', headers='sys/types.h bsd/unistd.h'): - conf.CHECK_FUNCS_IN('setproctitle', 'setproctitle', headers='setproctitle.h') + if not conf.CHECK_FUNCS_IN('setproctitle', 'setproctitle', headers='setproctitle.h'): + conf.CHECK_FUNCS_IN('setproctitle', 'bsd', headers='sys/types.h bsd/unistd.h') conf.CHECK_CODE(''' struct ucred cred; -- cgit