summaryrefslogtreecommitdiffstats
path: root/libcli/util/wscript_build
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2014-09-17 15:09:52 +0200
committerVolker Lendecke <vl@samba.org>2014-09-18 20:36:11 +0200
commit3ffff13e0d66ac6f871c3d87d15c5c3c8095ed33 (patch)
tree8403fcb200bb5b8c04c4775c1ec9f4985e2f5edb /libcli/util/wscript_build
parentfb9067c789263d5e2fcc26adb46463b974ccdaae (diff)
downloadsamba-3ffff13e0d66ac6f871c3d87d15c5c3c8095ed33.tar.gz
samba-3ffff13e0d66ac6f871c3d87d15c5c3c8095ed33.tar.xz
samba-3ffff13e0d66ac6f871c3d87d15c5c3c8095ed33.zip
lib: Fix samba-util dep in "errors" module
This piece of code pulls in talloc_stackframe and smb_panic into what should be a very simple mapping library. I'm trying to reduce our dependencies right now a bit, and I think the use cases that this fixes (unknown NTSTATUS together with double nt_errstr() calls in the same DEBUG) are rare enough that this is not justified. Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Martin Schwenke <martin@meltin.net>
Diffstat (limited to 'libcli/util/wscript_build')
-rw-r--r--libcli/util/wscript_build2
1 files changed, 1 insertions, 1 deletions
diff --git a/libcli/util/wscript_build b/libcli/util/wscript_build
index 3bfa4b1cdc..ccb882d761 100644
--- a/libcli/util/wscript_build
+++ b/libcli/util/wscript_build
@@ -5,7 +5,7 @@ bld.SAMBA_LIBRARY('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-util',
+ public_deps='talloc samba-debug',
private_library=True
)