Skip to content

Commit

Permalink
krb5_plugin: Install plugins to krb5 modules dir
Browse files Browse the repository at this point in the history
BUG: https://bugzilla.samba.org/show_bug.cgi?id=13489

Signed-off-by: Andreas Schneider <[email protected]>
Reviewed-by: Alexander Bokovoy <[email protected]>
  • Loading branch information
cryptomilk committed Jun 27, 2018
1 parent d9914b9 commit eba2eb8
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions nsswitch/wscript_build
Original file line number Diff line number Diff line change
Expand Up @@ -105,16 +105,18 @@ if bld.CONFIG_SET('WITH_PAM_MODULES') and bld.CONFIG_SET('HAVE_PAM_START'):
)

if bld.CONFIG_SET('HAVE_KRB5_LOCATE_PLUGIN_H'):
bld.SAMBA_LIBRARY('winbind_krb5_locator',
source='winbind_krb5_locator.c',
deps='wbclient krb5 com_err',
realname='winbind_krb5_locator.so')
bld.SAMBA_LIBRARY('winbind_krb5_locator',
source='winbind_krb5_locator.c',
deps='wbclient krb5 com_err',
realname='winbind_krb5_locator.so',
install_path='${MODULESDIR}/krb5')

if bld.CONFIG_SET('HAVE_KRB5_LOCALAUTH_PLUGIN_H'):
bld.SAMBA_LIBRARY('winbind_krb5_localauth',
source='krb5_plugin/winbind_krb5_localauth.c',
deps='wbclient krb5 com_err',
realname='winbind-krb5-localauth.so')
realname='winbind_krb5_localauth.so',
install_path='${MODULESDIR}/krb5')

bld.SAMBA_SUBSYSTEM('WB_REQTRANS',
source='wb_reqtrans.c',
Expand Down

0 comments on commit eba2eb8

Please sign in to comment.