Fixed crash bug when calling tdb_unlockkeys() with no locked keys.
[samba.git] / source3 / python / setup.py
1 # -*- mode: python -*-
2 #
3 # Unix SMB/CIFS implementation.
4 # Module packaging setup for Samba python extensions
5 #
6 # Copyright (C) Tim Potter, 2002-2003
7 # Copyright (C) Martin Pool, 2002
8 #
9 # This program is free software; you can redistribute it and/or modify
10 # it under the terms of the GNU General Public License as published by
11 # the Free Software Foundation; either version 2 of the License, or
12 # (at your option) any later version.
13 #   
14 # This program is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 # GNU General Public License for more details.
18 #   
19 # You should have received a copy of the GNU General Public License
20 # along with this program; if not, write to the Free Software
21 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 #
23
24 from distutils.core import setup
25 from distutils.extension import Extension
26
27 import sys, string, os
28
29 # The Makefile passes in environment variable $PYTHON_OBJ as being the
30 # list of Samba objects.  This kind of goes against the distutils.cmd
31 # method of adding setup commands and will also confuse people who are
32 # familiar with the python Distutils module.
33
34 samba_objs = os.environ.get("PYTHON_OBJS", "")
35
36 samba_cflags = os.environ.get("PYTHON_CFLAGS", "")
37
38 samba_srcdir = os.environ.get("SRCDIR", "")
39
40 # These variables are filled in by configure
41
42 samba_libs = os.environ.get("LIBS", "")
43
44 # Convert libs and objs from space separated strings to lists of strings
45 # for distutils to digest.  Split "-l" prefix off library list.
46
47 obj_list = string.split(samba_objs)
48
49 lib_list = []
50
51 for lib in string.split(samba_libs):
52     lib_list.append(string.replace(lib, "-l", ""))
53
54 flags_list = string.split(samba_cflags)
55
56 # Invoke distutils.setup
57
58 setup(
59
60     # Overview information
61     
62     name = "Samba Python Extensions",
63     version = "0.1",
64     author = "Tim Potter",
65     author_email = "tpot@samba.org",
66     license = "GPL",
67
68     # Get the "samba" directory of Python source.  At the moment this
69     # just contains the __init__ file that makes it work as a
70     # subpackage.  This is needed even though everything else is an
71     # extension module.
72     package_dir = {"samba": os.path.join(samba_srcdir, "python", "samba")},
73     packages = ["samba"],
74     
75     # Module list
76     ext_package = "samba", 
77     ext_modules = [
78
79     # SPOOLSS pipe module
80
81     Extension(name = "spoolss",
82               sources = [samba_srcdir + "python/py_spoolss.c",
83                          samba_srcdir + "python/py_common.c",
84                          samba_srcdir + "python/py_conv.c",
85                          samba_srcdir + "python/py_ntsec.c",
86                          samba_srcdir + "python/py_spoolss_common.c",
87                          samba_srcdir + "python/py_spoolss_forms.c",
88                          samba_srcdir + "python/py_spoolss_forms_conv.c",
89                          samba_srcdir + "python/py_spoolss_drivers.c",
90                          samba_srcdir + "python/py_spoolss_drivers_conv.c",
91                          samba_srcdir + "python/py_spoolss_printers.c",
92                          samba_srcdir + "python/py_spoolss_printers_conv.c",
93                          samba_srcdir + "python/py_spoolss_printerdata.c",
94                          samba_srcdir + "python/py_spoolss_ports.c",
95                          samba_srcdir + "python/py_spoolss_ports_conv.c",
96                          samba_srcdir + "python/py_spoolss_jobs.c",
97                          samba_srcdir + "python/py_spoolss_jobs_conv.c",
98                          ],
99               libraries = lib_list,
100               library_dirs = ["/usr/kerberos/lib"],
101               extra_compile_args = flags_list,
102               extra_objects = obj_list),
103
104     # LSA pipe module
105
106     Extension(name = "lsa",
107               sources = [samba_srcdir + "python/py_lsa.c",
108                          samba_srcdir + "python/py_common.c",
109                          samba_srcdir + "python/py_ntsec.c"],
110               libraries = lib_list,
111               library_dirs = ["/usr/kerberos/lib"],
112               extra_compile_args = flags_list,
113               extra_objects = obj_list),
114
115     # SAMR pipe module
116
117     Extension(name = "samr",
118               sources = [samba_srcdir + "python/py_samr.c",
119                          samba_srcdir + "python/py_samr_conv.c",
120                          samba_srcdir + "python/py_common.c"],
121               libraries = lib_list,
122               library_dirs = ["/usr/kerberos/lib"],
123               extra_compile_args = flags_list,
124               extra_objects = obj_list),
125
126     # winbind client module
127
128     Extension(name = "winbind",
129               sources = [samba_srcdir + "python/py_winbind.c",
130                          samba_srcdir + "python/py_winbind_conv.c",
131                          samba_srcdir + "python/py_conv.c",
132                          samba_srcdir + "python/py_common.c"],
133               libraries = lib_list,
134               library_dirs = ["/usr/kerberos/lib"],
135               extra_compile_args = flags_list,
136               extra_objects = obj_list),
137
138     # WINREG pipe module
139
140     Extension(name = "winreg",
141               sources = [samba_srcdir + "python/py_winreg.c",
142                          samba_srcdir + "python/py_common.c"],
143               libraries = lib_list,
144               library_dirs = ["/usr/kerberos/lib"],
145               extra_compile_args = flags_list,
146               extra_objects = obj_list),
147
148     # SRVSVC pipe module
149
150     Extension(name = "srvsvc",
151               sources = [samba_srcdir + "python/py_srvsvc.c",
152                          samba_srcdir + "python/py_conv.c",
153                          samba_srcdir + "python/py_srvsvc_conv.c",
154                          samba_srcdir + "python/py_common.c"],
155               libraries = lib_list,
156               library_dirs = ["/usr/kerberos/lib"],
157               extra_compile_args = flags_list,
158               extra_objects = obj_list),
159
160     # tdb module
161
162     Extension(name = "tdb",
163               sources = [samba_srcdir + "python/py_tdb.c"],
164               libraries = lib_list,
165               library_dirs = ["/usr/kerberos/lib"],
166               extra_compile_args = flags_list,
167               extra_objects = obj_list),
168
169     # libsmb module
170
171     Extension(name = "smb",
172               sources = [samba_srcdir + "python/py_smb.c",
173                          samba_srcdir + "python/py_common.c",
174                          samba_srcdir + "python/py_ntsec.c"],
175               libraries = lib_list,
176               library_dirs = ["/usr/kerberos/lib"],
177               extra_compile_args = flags_list,
178               extra_objects = obj_list),
179
180     # Moving to merge all individual extensions in to one big
181     # extension.  This is to avoid the fact that each extension is 3MB
182     # in size due to the lack of proper depedency management in Samba.
183
184     Extension(name = "samba",
185               sources = [samba_srcdir + "python/py_samba.c",
186                          samba_srcdir + "python/py_common.c"],
187               libraries = lib_list,
188               library_dirs = ["/usr/kerberos/lib"],
189               extra_compile_args = flags_list,
190               extra_objects = obj_list),
191
192     # tdbpack/unpack extensions.  Does not actually link to any Samba
193     # code, although it implements a compatible data format.
194     Extension(name = "tdbpack",
195               sources = [os.path.join(samba_srcdir, "python", "py_tdbpack.c")],
196               extra_compile_args = ["-I."])
197     ],
198 )