summaryrefslogtreecommitdiff
path: root/libcli
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@jelmer.uk>2016-01-04 01:01:53 +0000
committerJelmer Vernooij <jelmer@samba.org>2016-01-13 07:47:04 +0100
commitda8674c72ab1f2dc8458434d714c61530630f51e (patch)
tree3946c3d4d685c6cc42d327435a42f051d05ff95f /libcli
parent218f96f2bf10f7f03ec964c4515f6e248fc31ad8 (diff)
downloadsamba-da8674c72ab1f2dc8458434d714c61530630f51e.tar.gz
Rename 'errors' to 'samba-errors' and make it public.
This is necessary because it has public headers. Signed-off-by: Jelmer Vernooij <jelmer@jelmer.uk> Reviewed-By: Andrew Bartlett <abartlet@samba.org> Reviewed-By: Stefan Metzmacher <metze@samba.org> Autobuild-User(master): Jelmer Vernooij <jelmer@samba.org> Autobuild-Date(master): Wed Jan 13 07:47:04 CET 2016 on sn-devel-144
Diffstat (limited to 'libcli')
-rwxr-xr-xlibcli/auth/wscript_build2
-rw-r--r--libcli/ldap/wscript_build2
-rwxr-xr-xlibcli/smb/wscript2
-rw-r--r--libcli/util/wscript_build6
4 files changed, 7 insertions, 5 deletions
diff --git a/libcli/auth/wscript_build b/libcli/auth/wscript_build
index 51eb293e24a..475b7d69406 100755
--- a/libcli/auth/wscript_build
+++ b/libcli/auth/wscript_build
@@ -2,7 +2,7 @@
bld.SAMBA_LIBRARY('cliauth',
source='',
- deps='MSRPC_PARSE LIBCLI_AUTH COMMON_SCHANNEL PAM_ERRORS SPNEGO_PARSE krb5samba errors NTLM_CHECK UTIL_LSARPC',
+ deps='MSRPC_PARSE LIBCLI_AUTH COMMON_SCHANNEL PAM_ERRORS SPNEGO_PARSE krb5samba samba-errors NTLM_CHECK UTIL_LSARPC',
private_library=True,
grouping_library=True)
diff --git a/libcli/ldap/wscript_build b/libcli/ldap/wscript_build
index 305060037af..db5b1df497a 100644
--- a/libcli/ldap/wscript_build
+++ b/libcli/ldap/wscript_build
@@ -2,7 +2,7 @@
bld.SAMBA_LIBRARY('cli-ldap-common',
source='ldap_message.c ldap_ndr.c',
- public_deps='errors talloc ldb',
+ public_deps='samba-errors talloc ldb',
private_headers='ldap_message.h ldap_errors.h ldap_ndr.h',
deps='samba-util asn1util NDR_SECURITY tevent',
private_library=True)
diff --git a/libcli/smb/wscript b/libcli/smb/wscript
index d6b594a1bc2..394136b855b 100755
--- a/libcli/smb/wscript
+++ b/libcli/smb/wscript
@@ -43,7 +43,7 @@ def build(bld):
tstream_smbXcli_np.c
''',
deps='''
- LIBCRYPTO NDR_SMB2_LEASE_STRUCT errors gensec krb5samba
+ LIBCRYPTO NDR_SMB2_LEASE_STRUCT samba-errors gensec krb5samba
smb_transport
''',
public_deps='talloc samba-util iov_buf',
diff --git a/libcli/util/wscript_build b/libcli/util/wscript_build
index ccb882d7618..8123914e482 100644
--- a/libcli/util/wscript_build
+++ b/libcli/util/wscript_build
@@ -1,11 +1,13 @@
#!/usr/bin/env python
-bld.SAMBA_LIBRARY('errors',
+bld.SAMBA_LIBRARY('samba-errors',
public_headers='error.h ntstatus.h doserr.h werror.h hresult.h',
header_path='core',
source='doserr.c errormap.c nterr.c errmap_unix.c hresult.c',
public_deps='talloc samba-debug',
- private_library=True
+ # private_library=True,
+ pc_files=[],
+ vnum='1',
)