~ubuntu-branches/ubuntu/saucy/ldb/saucy

« back to all changes in this revision

Viewing changes to wscript

  • Committer: Package Import Robot
  • Author(s): Andrew Bartlett
  • Date: 2013-02-12 19:02:05 UTC
  • mfrom: (1.4.3)
  • Revision ID: package-import@ubuntu.com-20130212190205-gkz9ztqkv1k1v07x
Tags: 1:1.1.15-1.1
* Non-maintainer upload.
* New upstream release.
* Drop 01_exclude_symbols, now upstream 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/env python
2
2
 
3
3
APPNAME = 'ldb'
4
 
VERSION = '1.1.13'
 
4
VERSION = '1.1.15'
5
5
 
6
6
blddir = 'bin'
7
7
 
89
89
 
90
90
    COMMON_SRC = bld.SUBDIR('common',
91
91
                            '''ldb_modules.c ldb_ldif.c ldb_parse.c ldb_msg.c ldb_utf8.c
92
 
                            ldb_debug.c ldb_dn.c ldb_match.c ldb_options.c
 
92
                            ldb_debug.c ldb_dn.c ldb_match.c ldb_options.c ldb_pack.c
93
93
                            ldb_attributes.c attrib_handlers.c ldb_controls.c qsort.c''')
94
94
 
95
95
    bld.SAMBA_MODULE('ldb_ldap', 'ldb_ldap/ldb_ldap.c',
228
228
 
229
229
        bld.SAMBA_MODULE('ldb_tdb',
230
230
                         bld.SUBDIR('ldb_tdb',
231
 
                                    '''ldb_tdb.c ldb_pack.c ldb_search.c ldb_index.c
 
231
                                    '''ldb_tdb.c ldb_search.c ldb_index.c
232
232
                                    ldb_cache.c ldb_tdb_wrap.c'''),
233
233
                         init_function='ldb_tdb_init',
234
234
                         module_init_name='ldb_init_module',
253
253
        bld.SAMBA_BINARY('ldbtest', 'tools/ldbtest.c', deps='ldb-cmdline ldb',
254
254
                         install=False)
255
255
 
 
256
        # ldbdump doesn't get installed
 
257
        bld.SAMBA_BINARY('ldbdump', 'tools/ldbdump.c', deps='ldb-cmdline ldb',
 
258
                         install=False)
 
259
 
256
260
    bld.SAMBA_LIBRARY('ldb-cmdline',
257
261
                      source='tools/ldbutil.c tools/cmdline.c',
258
262
                      deps='ldb dl popt',