From: Andrew Tridgell Date: Thu, 21 Oct 2010 03:52:25 +0000 (+1100) Subject: s4-waf: removed the XATTR and SASL aliases X-Git-Url: http://git.samba.org/?p=abartlet%2Fsamba.git%2F.git;a=commitdiff_plain;h=3981399957a8f2d608adb33e9ced1c50bcb1f5dc s4-waf: removed the XATTR and SASL aliases these were hangovers from the old build system names Pair-Programmed-With: Andrew Bartlett --- diff --git a/lib/util/wscript_build b/lib/util/wscript_build index 91c85f08379..4e03e2df22e 100644 --- a/lib/util/wscript_build +++ b/lib/util/wscript_build @@ -27,7 +27,7 @@ bld.SAMBA_SUBSYSTEM('UNIX_PRIVS', bld.SAMBA_SUBSYSTEM('WRAP_XATTR', source='wrap_xattr.c', - public_deps='XATTR', + public_deps='attr', deps='talloc', local_include=False ) diff --git a/source4/auth/gensec/wscript_build b/source4/auth/gensec/wscript_build index 4c8ced613b3..a1c32579795 100644 --- a/source4/auth/gensec/wscript_build +++ b/source4/auth/gensec/wscript_build @@ -31,7 +31,7 @@ bld.SAMBA_MODULE('cyrus_sasl', source='cyrus_sasl.c', subsystem='gensec', init_function='gensec_sasl_init', - deps='CREDENTIALS SASL', + deps='CREDENTIALS sasl2', enabled=bld.CONFIG_SET('HAVE_SASL') ) diff --git a/source4/wscript_build b/source4/wscript_build index 4c2bc9c5272..7fd6ee89b6c 100644 --- a/source4/wscript_build +++ b/source4/wscript_build @@ -14,11 +14,6 @@ bld.SAMBA_MKVERSION('version.h') # bld.ENABLE_MAGIC_ORDERING() -# we don't always use consistent names for our subsystems. -# this sets up some aliases -bld.TARGET_ALIAS('attr', 'XATTR') -bld.TARGET_ALIAS('sasl2', 'SASL') - bld.RECURSE('../lib/replace') bld.RECURSE('../lib/talloc') bld.RECURSE('../lib/tdb')