mirror of
https://github.com/ArcaneChat/android.git
synced 2026-07-03 14:05:24 +02:00
94 lines
1.7 KiB
Bash
94 lines
1.7 KiB
Bash
# mechanism plugins
|
|
for mech in anonymous crammd5 digestmd5 scram gssapiv2 kerberos4 login ntlm otp passdss plain srp gs2; do
|
|
|
|
echo "
|
|
#include <config.h>
|
|
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#ifndef macintosh
|
|
#include <sys/stat.h>
|
|
#endif
|
|
#include <fcntl.h>
|
|
#include <assert.h>
|
|
|
|
#include <sasl.h>
|
|
#include <saslplug.h>
|
|
#include <saslutil.h>
|
|
|
|
#include \"plugin_common.h\"
|
|
|
|
#ifdef macintosh
|
|
#include <sasl_${mech}_plugin_decl.h>
|
|
#endif
|
|
|
|
#ifdef WIN32
|
|
BOOL APIENTRY DllMain( HANDLE hModule,
|
|
DWORD ul_reason_for_call,
|
|
LPVOID lpReserved
|
|
)
|
|
{
|
|
switch (ul_reason_for_call)
|
|
{
|
|
case DLL_PROCESS_ATTACH:
|
|
case DLL_THREAD_ATTACH:
|
|
case DLL_THREAD_DETACH:
|
|
case DLL_PROCESS_DETACH:
|
|
break;
|
|
}
|
|
return TRUE;
|
|
}
|
|
#endif
|
|
|
|
SASL_CLIENT_PLUG_INIT( $mech )
|
|
SASL_SERVER_PLUG_INIT( $mech )
|
|
" > ${mech}_init.c
|
|
done
|
|
|
|
# auxprop plugins
|
|
for auxprop in sasldb sql ldapdb; do
|
|
|
|
echo "
|
|
#include <config.h>
|
|
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#ifndef macintosh
|
|
#include <sys/stat.h>
|
|
#endif
|
|
#include <fcntl.h>
|
|
#include <assert.h>
|
|
|
|
#include <sasl.h>
|
|
#include <saslplug.h>
|
|
#include <saslutil.h>
|
|
|
|
#include \"plugin_common.h\"
|
|
|
|
#ifdef WIN32
|
|
BOOL APIENTRY DllMain( HANDLE hModule,
|
|
DWORD ul_reason_for_call,
|
|
LPVOID lpReserved
|
|
)
|
|
{
|
|
switch (ul_reason_for_call)
|
|
{
|
|
case DLL_PROCESS_ATTACH:
|
|
case DLL_THREAD_ATTACH:
|
|
case DLL_THREAD_DETACH:
|
|
case DLL_PROCESS_DETACH:
|
|
break;
|
|
}
|
|
return TRUE;
|
|
}
|
|
#endif
|
|
|
|
SASL_AUXPROP_PLUG_INIT( $auxprop )
|
|
" > ${auxprop}_init.c
|
|
done
|
|
|
|
# ldapdb is also a canon_user plugin
|
|
echo "SASL_CANONUSER_PLUG_INIT( ldapdb )" >> ldapdb_init.c
|