summaryrefslogtreecommitdiffstats
path: root/source/python/setup.py
Commit message (Collapse)AuthorAgeFilesLines
* [GLUE] Rsync SAMBA_3_2_0 SVN r25598 in order to create the v3-2-test branch.samba-misc-tags/initial-v3-2-testGerald (Jerry) Carter2007-10-101-215/+0
|
* r23801: The FSF has moved around a lot. This fixes their Mass Ave address.Andrew Tridgell2007-10-101-2/+1
|
* r23780: Find and fix more GPL2 -> GPL3.Jeremy Allison2007-10-101-1/+1
| | | | Jeremy.
* r22840: Add -pie support to Python's setup.py. This should fix build of ↵Alexander Bokovoy2007-10-101-0/+2
| | | | python libs on recent distributions that take care of security.
* r13257: Fix python build with older python versions (e.g. 2.2.1) like in ↵Lars Müller2007-10-101-2/+2
| | | | United Linux 1 (UL) aka SuSE Linux Enterprise Server (SLES) 8.
* r12441: Fix python build.Günther Deschner2007-10-101-1/+3
| | | | Guenther
* r10819: merging a couple of fixes from trunkGerald Carter2007-10-101-12/+19
| | | | | | | * only keep the registry,tdb file open when we have an open key handle * tpot's setup.py fix * removing files that no longer exist in trunk and copying some that were missing in 3.0
* r9944: fix python buildGünther Deschner2007-10-101-0/+3
| | | | Guenther
* r8538: honour CC in python build.Günther Deschner2007-10-101-0/+2
| | | | Guenther
* Path for bugzilla #1152 from Timur Bakeyev. Allow python modules toTim Potter2004-03-241-0/+3
| | | | build despite libraries added to LDFLAGS instead of LDPATH.
* Fix for bug #60. Our autoconf code adds both libraries and linkerTim Potter2003-05-051-21/+30
| | | | | flags in the $LIBS make variable. Separate the two so the python extensions can build.
* Merge create/delete domain user samr calls from HEAD.Tim Potter2003-04-141-0/+1
|
* Merge of removal of py_samba.cTim Potter2003-03-201-12/+1
|
* Merge of cleanups and srvsvc implementation from HEAD.Tim Potter2003-02-191-1/+14
|
* Merge of compile tweaks for python tdbpack module.Tim Potter2002-12-121-1/+1
|
* Merge from HEAD:Tim Potter2002-12-051-1/+2
| | | | | | >FUNCTION_MACRO change broke the Python modules. > >Also fix up string pasting (I thought this should only be a warning?)
* Sync with HEAD.Tim Potter2002-11-041-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.