socket_wrapper: Added python interface to socket_wrapper
[Samba/gebeck_regimport.git] / lib / socket_wrapper / wscript_build
blobc4b94147d619b15be6f2c9a7fffcf833e1e8c68f
1 #!/usr/bin/env python
3 bld.SAMBA_LIBRARY('socket_wrapper',
4 source='socket_wrapper.c',
5 group='base_libraries',
6 private_library=True,
7 enabled=bld.CONFIG_SET('SOCKET_WRAPPER'),
8 deps='replace')
10 bld.SAMBA_PYTHON('py_socket_wrapper',
11 source='py_socket_wrapper.c',
12 deps='socket_wrapper',
13 public_deps='talloc pytalloc-util',
14 realname='samba/socket_wrapper.so')
16 bld.SAMBA_SCRIPT('python_socket',
17 pattern='socket.py',
18 installdir='python',
19 installname='samba/socket.py')