From 55ef0ecea85fda48e980f5f9c6029d7bcee865df Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Mon, 31 May 2010 00:13:10 +0200 Subject: s4-python: Remove cruft to deal with static python modules, which are no longer supported. --- source4/scripting/python/modules.c | 40 -------------------------------------- source4/scripting/python/modules.h | 1 - 2 files changed, 41 deletions(-) (limited to 'source4/scripting') diff --git a/source4/scripting/python/modules.c b/source4/scripting/python/modules.c index 6cc3ca58d2..18253758b8 100644 --- a/source4/scripting/python/modules.c +++ b/source4/scripting/python/modules.c @@ -22,46 +22,6 @@ #include "scripting/python/modules.h" #include "dynconfig/dynconfig.h" -extern void init_ldb(void); -extern void init_security(void); -extern void init_registry(void); -extern void init_param(void); -extern void init_misc(void); -extern void init_ldb(void); -extern void init_auth(void); -extern void init_credentials(void); -extern void init_tdb(void); -extern void init_dcerpc(void); -extern void init_events(void); -extern void inituuid(void); -extern void init_net(void); -extern void initecho(void); -extern void initdfs(void); -extern void initdrsuapi(void); -extern void initwinreg(void); -extern void initepmapper(void); -extern void initinitshutdown(void); -extern void initmgmt(void); -extern void initnet(void); -extern void initatsvc(void); -extern void initsamr(void); -extern void initlsa(void); -extern void initsvcctl(void); -extern void initwkssvc(void); -extern void initunixinfo(void); -extern void init_libcli_nbt(void); -extern void init_libcli_smb(void); - -static struct _inittab py_modules[] = { STATIC_LIBPYTHON_MODULES }; - -void py_load_samba_modules(void) -{ - int i; - for (i = 0; i < ARRAY_SIZE(py_modules); i++) { - PyImport_ExtendInittab(&py_modules[i]); - } -} - static bool PySys_PathPrepend(PyObject *list, const char *path) { PyObject *py_path = PyString_FromString(path); diff --git a/source4/scripting/python/modules.h b/source4/scripting/python/modules.h index 8e3c0a21c2..7c15fecabe 100644 --- a/source4/scripting/python/modules.h +++ b/source4/scripting/python/modules.h @@ -20,7 +20,6 @@ #ifndef __SAMBA_PYTHON_MODULES_H__ #define __SAMBA_PYTHON_MODULES_H__ -void py_load_samba_modules(void); bool py_update_path(const char *bindir); #endif /* __SAMBA_PYTHON_MODULES_H__ */ -- cgit