From: Christian Ambach Date: Thu, 21 Jul 2011 12:13:20 +0000 (+0200) Subject: s3-waf: fix a libcrypto configure check X-Git-Url: http://git.samba.org/?a=commitdiff_plain;h=fb766cd597dd0579f00ce3ca0acb5a422804d901;p=mat%2Fsamba.git s3-waf: fix a libcrypto configure check the parameters to conf.CHECK_FUNCS_IN were in the wrong order Autobuild-User: Christian Ambach Autobuild-Date: Thu Jul 21 16:49:52 CEST 2011 on sn-devel-104 --- diff --git a/source3/wscript b/source3/wscript index be011af232..3164276499 100644 --- a/source3/wscript +++ b/source3/wscript @@ -650,7 +650,7 @@ msg.msg_acctrightslen = sizeof(fd); conf.CHECK_FUNCS_IN('_et_list', 'com_err') conf.CHECK_FUNCS_IN('krb5_encrypt_data', 'k5crypto') - conf.CHECK_FUNCS_IN('crypto', 'des_set_key') + conf.CHECK_FUNCS_IN('des_set_key','crypto') conf.CHECK_FUNCS_IN('copy_Authenticator', 'asn1') conf.CHECK_FUNCS_IN('roken_getaddrinfo_hostspec', 'roken') if conf.CHECK_FUNCS_IN('gss_display_status', 'gssapi') or \