From: Andrew Bartlett Date: Wed, 23 Mar 2022 02:10:23 +0000 (+1300) Subject: s4-auth: Only build auth_developer module in developer mode X-Git-Tag: tevent-0.12.0~223 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=86f7e4e69059e77c35f451919365685d909024af;p=thirdparty%2Fsamba.git s4-auth: Only build auth_developer module in developer mode This is a silly module for provoking NTSTATUS replies for testing and was useful many moons ago for determining the NTSTATUS -> DOS table that windows uses. Signed-off-by: Andrew Bartlett Reviewed-by: Stefan Metzmacher --- diff --git a/source4/auth/ntlm/wscript_build b/source4/auth/ntlm/wscript_build index 43c21ceb67f..f669ca90367 100644 --- a/source4/auth/ntlm/wscript_build +++ b/source4/auth/ntlm/wscript_build @@ -28,7 +28,8 @@ bld.SAMBA_MODULE('auth4_developer', source='auth_developer.c', subsystem='auth4', init_function='auth4_developer_init', - deps='tevent' + deps='tevent', + enabled=bld.env.DEVELOPER_MODE )