1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-28 07:21:54 +03:00
samba-mirror/source3/python
Lars Müller 39605e52aa r7960: Replace unknown SMB_XSTRDUP by known SMB_STRDUP macro.
I still don't know why the compile doesn't fail.
(This used to be commit 8cfa6873c2)
2007-10-10 10:58:04 -05:00
..
examples r39: * importing .cvsignore files 2007-10-10 10:51:05 -05:00
samba r3504: Fix incorrectly applied patch. My fault - sorry! 2007-10-10 10:53:08 -05:00
gprinterdata Fix imports for printerdata browser. 2002-09-11 04:50:18 +00:00
gtdbtool Change 'import spoolss' to 'from samba import spoolss'. 2002-09-11 01:20:49 +00:00
gtkdictbrowser.py Display the repr() of non-string dictionary values. 2002-09-18 08:16:22 +00:00
py_common.c r4238: More *alloc fixes. 2007-10-10 10:53:39 -05:00
py_common.h Merge of cleanups and srvsvc implementation from HEAD. 2003-02-19 22:47:49 +00:00
py_conv.c Merge of cleanups and srvsvc implementation from HEAD. 2003-02-19 22:47:49 +00:00
py_conv.h Merge of cleanups and srvsvc implementation from HEAD. 2003-02-19 22:47:49 +00:00
py_lsa.c r6678: fix python python after talloc() shakeup 2007-10-10 10:56:50 -05:00
py_lsa.h Merge of cleanups and srvsvc implementation from HEAD. 2003-02-19 22:47:49 +00:00
py_ntsec.c r6678: fix python python after talloc() shakeup 2007-10-10 10:56:50 -05:00
py_samr_conv.c Merge create/delete domain user samr calls from HEAD. 2003-04-14 01:15:11 +00:00
py_samr.c Merge create/delete domain user samr calls from HEAD. 2003-04-14 01:15:11 +00:00
py_samr.h Merge create/delete domain user samr calls from HEAD. 2003-04-14 01:15:11 +00:00
py_smb.c r6678: fix python python after talloc() shakeup 2007-10-10 10:56:50 -05:00
py_smb.h Merge of cleanups and srvsvc implementation from HEAD. 2003-02-19 22:47:49 +00:00
py_spoolss_common.c Cleanup of header files for python extensions. 2003-02-18 05:05:15 +00:00
py_spoolss_drivers_conv.c r6678: fix python python after talloc() shakeup 2007-10-10 10:56:50 -05:00
py_spoolss_drivers.c r5283: Merge -r5279 and-r5280 from trunk. 2007-10-10 10:55:36 -05:00
py_spoolss_forms_conv.c Fix for #480. Change the interface for init_unistr2 to not take a length 2003-09-25 21:26:16 +00:00
py_spoolss_forms.c Fix for #480. Change the interface for init_unistr2 to not take a length 2003-09-25 21:26:16 +00:00
py_spoolss_jobs_conv.c
py_spoolss_jobs.c Fixed enumjobs command to use new JOB_INFO_CTR structure. 2002-09-03 04:58:36 +00:00
py_spoolss_ports_conv.c
py_spoolss_ports.c Finish adding strings to all talloc_init() calls. 2002-12-23 23:54:10 +00:00
py_spoolss_printerdata.c Merge of cleanups and srvsvc implementation from HEAD. 2003-02-19 22:47:49 +00:00
py_spoolss_printers_conv.c r6678: fix python python after talloc() shakeup 2007-10-10 10:56:50 -05:00
py_spoolss_printers.c r7960: Replace unknown SMB_XSTRDUP by known SMB_STRDUP macro. 2007-10-10 10:58:04 -05:00
py_spoolss.c Merge of compiler warning fixups. 2003-03-20 01:05:22 +00:00
py_spoolss.h r5283: Merge -r5279 and-r5280 from trunk. 2007-10-10 10:55:36 -05:00
py_srvsvc_conv.c Merge of compiler warning fixups. 2003-03-20 01:05:22 +00:00
py_srvsvc.c r7960: Replace unknown SMB_XSTRDUP by known SMB_STRDUP macro. 2007-10-10 10:58:04 -05:00
py_srvsvc.h Merge of compiler warning fixups. 2003-03-20 01:05:22 +00:00
py_tdb.c r6678: fix python python after talloc() shakeup 2007-10-10 10:56:50 -05:00
py_tdb.h r384: Relicense tdb python module in trunk and 3.0 branch as LGPL since the 2007-10-10 10:51:21 -05:00
py_tdbpack.c r6678: fix python python after talloc() shakeup 2007-10-10 10:56:50 -05:00
py_winbind_conv.c Merge of cleanups and srvsvc implementation from HEAD. 2003-02-19 22:47:49 +00:00
py_winbind.c r7882: Looks like a large patch - but what it actually does is make Samba 2007-10-10 10:58:00 -05:00
py_winbind.h Cleanup of header files for python extensions. 2003-02-18 05:05:15 +00:00
py_winreg.c
py_winreg.h Merge of compiler warning fixups. 2003-03-20 01:05:22 +00:00
README Update documentation for newly merged modules 2002-09-09 06:26:41 +00:00
setup.py Path for bugzilla #1152 from Timur Bakeyev. Allow python modules to 2004-03-24 23:52:11 +00:00

This directory contains Python bindings to allow you to access various
aspects of Samba.  At the moment their status is "experimental" and
they are not built by default.

In order to be able to compile samba-python you need to have python
and the python-dev packages installed.

Python libraries are always built for a particular version of Python
(2.2, 2.1, etc), and libraries built for one version will not be seen
by another.  By default Samba's libraries are built for whatever is
installed as "python" on your $PATH, but you can override this using
the --with-python option.  For example

  $ ./configure --with-python=python2.2

To build:

$ autoconf
$ ./configure 
$ make python_ext

Now, you can install the modules:

$ cp build/lib.*/*.so /usr/lib/python2.1/lib-dynload/

(the directory /usr/lib/python2.1 may vary, depending on your installation)

Samba-python should work now!