summaryrefslogtreecommitdiff
path: root/source4/param/pyparam_util.c
AgeCommit message (Collapse)AuthorFilesLines
2010-09-22s4-param: Check type when converting python object to lp_ctx, fix someJelmer Vernooij1-1/+23
memory leaks.
2010-07-16s4-loadparm: 2nd half of lp_ to lpcfg_ conversionAndrew Tridgell1-4/+4
this converts all callers that use the Samba4 loadparm lp_ calling convention to use the lpcfg_ prefix. Signed-off-by: Andrew Bartlett <abartlet@samba.org>
2010-04-08pynet: Create a net class.Jelmer Vernooij1-3/+3
2010-03-29pytalloc: allow for using a system libtalloc-dev with pytallocAndrew Tridgell1-1/+1
When we have a system talloc library, we still need to grab pytalloc.h from lib/talloc. We don't want to just use -Ilib/talloc, as otherwise we'll get the in-tree talloc.h which may not be compatible with the system talloc.h So we need to give the path to pytalloc.h
2009-10-23s4-python: we need to include Python.h firstAndrew Tridgell1-4/+1
If we don't include Python.h first then we get a pile of warnings due to broken redefines of XOPEN_SOURCE in the Python includes.
2009-06-02Fix unresolved symbol in python messaging module.Jelmer Vernooij1-0/+11
2009-06-02python: Move helper functions for using param into a separate file ratherJelmer Vernooij1-0/+54
than linking against the python module.