summaryrefslogtreecommitdiffstats
path: root/source/python/setup.py
Commit message (Collapse)AuthorAgeFilesLines
* Started working on python routines to add and delete domain users.Tim Potter2003-03-241-0/+1
| | | | | | Unfortunately users get created with the ACB mask set to disabled and must change password. The set_user_info2 call required to fix this doesn't quite work yet...
* Remove py_samba.c experiment - it didn't work.Tim Potter2003-03-191-12/+1
|
* Cleanup of header files for python extensions.Tim Potter2003-02-181-1/+4
| | | | | | - combine py_foo_proto.h and py_foo.h - move #include of Python.h into one place so we can get rid of that annoying compiler warning about HAVE_FSTAT being redefined
* Added SRVSVC pipe support. I've started implementing NetServerGetInfo()Tim Potter2003-02-171-0/+10
|
* Some more tweaking for compilation of py_tdbpack.Tim Potter2002-12-111-1/+1
|
* FUNCTION_MACRO change broke the Python modules.Tim Potter2002-12-041-1/+2
| | | | Also fix up string pasting (I thought this should only be a warning?)
* The libsmb module uses py_ntsec.oTim Potter2002-10-211-1/+2
|
* Remove hardcoded -I stuff. Hooray!Tim Potter2002-09-191-9/+9
|
* Implemented getpw{nam,uid} functions.Tim Potter2002-09-111-0/+2
|
* Put all Python modules into the 'samba' subpackage. Now you need toMartin Pool2002-09-091-1/+9
| | | | | | | | | | write import samba.tdbutil samba.tdbutil.pack('f', ['hello']) You need 'cvs update -d' to get the new subdirectory for this to build properly.
* Build py_tdbpack as well.Martin Pool2002-09-091-0/+5
|
* Python's setup.py does not need to be munged by configure.in -- it isMartin Pool2002-09-091-0/+168
sufficient to just pass the relevant variables to Python from the Makefile. Therefore, remove setup.py.in.