diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2010-10-03 15:59:21 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2010-10-03 16:25:37 +0200 |
commit | 3c1eca124e791207d3afa9511d9a9201dfd933b7 (patch) | |
tree | 96dc2cef8842ca4247314801eac44d758d5d3a37 /buildtools/wafsamba | |
parent | 958d7a5710e52bbb04d5db79a6b2c0e1dab0e355 (diff) | |
download | samba-3c1eca124e791207d3afa9511d9a9201dfd933b7.tar.gz samba-3c1eca124e791207d3afa9511d9a9201dfd933b7.tar.bz2 samba-3c1eca124e791207d3afa9511d9a9201dfd933b7.zip |
wafsamba: Move heimdal library code to heimdal_build.
Diffstat (limited to 'buildtools/wafsamba')
-rw-r--r-- | buildtools/wafsamba/wafsamba.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/buildtools/wafsamba/wafsamba.py b/buildtools/wafsamba/wafsamba.py index db5445c774..76c1b3299d 100644 --- a/buildtools/wafsamba/wafsamba.py +++ b/buildtools/wafsamba/wafsamba.py @@ -117,9 +117,6 @@ def SAMBA_LIBRARY(bld, libname, source, hide_symbols=False, is_bundled=False, manpages=None, - heimdal_autoproto=None, - heimdal_autoproto_options=None, - heimdal_autoproto_private=None, enabled=True): '''define a Samba library''' @@ -220,11 +217,6 @@ def SAMBA_LIBRARY(bld, libname, source, if manpages is not None and 'XSLTPROC_MANPAGES' in bld.env and bld.env['XSLTPROC_MANPAGES']: bld.MANPAGES(manpages) - if heimdal_autoproto is not None: - bld.HEIMDAL_AUTOPROTO(heimdal_autoproto, source, options=heimdal_autoproto_options) - if heimdal_autoproto_private is not None: - bld.HEIMDAL_AUTOPROTO_PRIVATE(heimdal_autoproto_private, source) - Build.BuildContext.SAMBA_LIBRARY = SAMBA_LIBRARY |