source: vendor/current/source4/ntptr/wscript_build

Last change on this file was 988, checked in by Silvan Scherrer, 9 years ago

Samba Server: update vendor to version 4.4.3

File size: 423 bytes
Line 
1#!/usr/bin/env python
2
3bld.SAMBA_MODULE('ntptr_simple_ldb',
4 source='simple_ldb/ntptr_simple_ldb.c',
5 subsystem='ntptr',
6 init_function='ntptr_simple_ldb_init',
7 deps='ldb NDR_SPOOLSS DCERPC_COMMON ldbsamba',
8 enabled=bld.AD_DC_BUILD_IS_ENABLED()
9 )
10
11
12bld.SAMBA_SUBSYSTEM('ntptr',
13 source='ntptr_base.c ntptr_interface.c',
14 autoproto='ntptr_proto.h',
15 public_deps='DCERPC_COMMON',
16 enabled=bld.AD_DC_BUILD_IS_ENABLED()
17 )
18
Note: See TracBrowser for help on using the repository browser.