~lefteris-nikoltsios/+junk/samba-lp1016895

« back to all changes in this revision

Viewing changes to source4/ntvfs/wscript_build

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2011-12-21 13:18:04 UTC
  • mfrom: (0.39.21 sid)
  • Revision ID: package-import@ubuntu.com-20111221131804-xtlr39wx6njehxxr
Tags: 2:3.6.1-3ubuntu1
* Merge from Debian testing.  Remaining changes:
  + debian/patches/VERSION.patch:
    - set SAMBA_VERSION_SUFFIX to Ubuntu.
  + debian/patches/error-trans.fix-276472:
    - Add the translation of Unix Error code -ENOTSUP to NT Error Code
    - NT_STATUS_NOT_SUPPORTED to prevent the Permission denied error.
  + debian/smb.conf:
    - add "(Samba, Ubuntu)" to server string.
    - comment out the default [homes] share, and add a comment about
      "valid users = %S" to show users how to restrict access to
      \\server\username to only username.
    - Set 'usershare allow guests', so that usershare admins are 
      allowed to create public shares in addition to authenticated
      ones.
    - add map to guest = Bad user, maps bad username to guest access.
  + debian/samba-common.config:
    - Do not change priority to high if dhclient3 is installed.
    - Use priority medium instead of high for the workgroup question.
  + debian/control:
    - Don't build against or suggest ctdb.
    - Add dependency on samba-common-bin to samba.
  + Add ufw integration:
    - Created debian/samba.ufw.profile
    - debian/rules, debian/samba.dirs, debian/samba.files: install
      profile
    - debian/control: have samba suggest ufw
  + Add apport hook:
    - Created debian/source_samba.py.
    - debian/rules, debian/samba.dirs, debian/samba-common-bin.files: install
  + Switch to upstart:
    - Add debian/samba.{nmbd,smbd}.upstart.
  + debian/samba.logrotate, debian/samba-common.dhcp, debian/samba.if-up:
    - Make them upstart compatible
  + debian/samba.postinst: 
    - Avoid scary pdbedit warnings on first import.
  + debian/samba-common.postinst: Add more informative error message for
    the case where smb.conf was manually deleted
  + debian/patches/fix-debuglevel-name-conflict.patch: don't use 'debug_level'
    as a global variable name in an NSS module 
  + Dropped:
    - debian/patches/error-trans.fix-276472
    - debian/patches/fix-debuglevel-name-conflict.patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env python
 
2
 
 
3
bld.RECURSE('posix')
 
4
bld.RECURSE('common')
 
5
bld.RECURSE('unixuid')
 
6
bld.RECURSE('sysdep')
 
7
 
 
8
bld.SAMBA_MODULE('ntvfs_cifs',
 
9
        source='cifs/vfs_cifs.c',
 
10
        subsystem='ntvfs',
 
11
        init_function='ntvfs_cifs_init',
 
12
        deps='LIBCLI_SMB LIBCLI_RAW'
 
13
        )
 
14
 
 
15
 
 
16
bld.SAMBA_MODULE('ntvfs_smb2',
 
17
        source='smb2/vfs_smb2.c',
 
18
        subsystem='ntvfs',
 
19
        init_function='ntvfs_smb2_init',
 
20
        deps='LIBCLI_SMB LIBCLI_RAW'
 
21
        )
 
22
 
 
23
 
 
24
bld.SAMBA_MODULE('ntvfs_simple',
 
25
        source='simple/vfs_simple.c simple/svfs_util.c',
 
26
        autoproto='simple/proto.h',
 
27
        subsystem='ntvfs',
 
28
        init_function='ntvfs_simple_init',
 
29
        deps='talloc'
 
30
        )
 
31
 
 
32
 
 
33
bld.SAMBA_MODULE('ntvfs_cifsposix',
 
34
        source='cifs_posix_cli/vfs_cifs_posix.c cifs_posix_cli/svfs_util.c',
 
35
        autoproto='cifs_posix_cli/proto.h',
 
36
        subsystem='ntvfs',
 
37
        init_function='ntvfs_cifs_posix_init',
 
38
        deps='talloc'
 
39
        )
 
40
 
 
41
 
 
42
bld.SAMBA_MODULE('ntvfs_print',
 
43
        source='print/vfs_print.c',
 
44
        subsystem='ntvfs',
 
45
        init_function='ntvfs_print_init',
 
46
        deps='talloc'
 
47
        )
 
48
 
 
49
 
 
50
bld.SAMBA_MODULE('ntvfs_ipc',
 
51
        source='ipc/vfs_ipc.c ipc/ipc_rap.c ipc/rap_server.c',
 
52
        autoproto='ipc/proto.h',
 
53
        subsystem='ntvfs',
 
54
        init_function='ntvfs_ipc_init',
 
55
        deps='NDR_NAMED_PIPE_AUTH NAMED_PIPE_AUTH_TSTREAM gssapi credentials DCERPC_SHARE'
 
56
        )
 
57
 
 
58
 
 
59
bld.SAMBA_MODULE('ntvfs_nbench',
 
60
        source='nbench/vfs_nbench.c',
 
61
        subsystem='ntvfs',
 
62
        init_function='ntvfs_nbench_init',
 
63
        deps='talloc'
 
64
        )
 
65
 
 
66
 
 
67
bld.SAMBA_LIBRARY('ntvfs',
 
68
                  source='ntvfs_base.c ntvfs_generic.c ntvfs_interface.c ntvfs_util.c',
 
69
                  autoproto='ntvfs_proto.h',
 
70
                  deps='tevent',
 
71
                  private_library=True
 
72
                  )
 
73