diff options
author | Rusty Russell <rusty@rustcorp.com.au> | 2012-06-09 16:18:57 +0930 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2012-06-09 12:07:13 +0200 |
commit | 36353a9fc359e8156cfd2e7e4288021aba789b74 (patch) | |
tree | ea0dac868e8711860d1810eb0e15f6b173673c08 /lib/ccan/wscript | |
parent | aeb3ff5c8667328f7f837412e9ec4365e3853cce (diff) | |
download | samba-36353a9fc359e8156cfd2e7e4288021aba789b74.tar.gz samba-36353a9fc359e8156cfd2e7e4288021aba789b74.tar.bz2 samba-36353a9fc359e8156cfd2e7e4288021aba789b74.zip |
tdb2: use ccan/err instead of err.h
Solaris has no err.h, so use CCAN replacement.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Autobuild-User(master): Rusty Russell <rusty@rustcorp.com.au>
Autobuild-Date(master): Sat Jun 9 12:07:15 CEST 2012 on sn-devel-104
Diffstat (limited to 'lib/ccan/wscript')
-rw-r--r-- | lib/ccan/wscript | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ccan/wscript b/lib/ccan/wscript index 24c9550121..8d5782af8b 100644 --- a/lib/ccan/wscript +++ b/lib/ccan/wscript @@ -129,10 +129,10 @@ def build(bld): if bld.env.DEVELOPER_MODE: bld.SAMBA_LIBRARY('ccan-failtest', source=bld.path.ant_glob('failtest/*.c'), - deps='execinfo ccan ccan-err ccan-htable ccan-list ccan-read_write_all ccan-time', + deps='execinfo ccan ccan-htable ccan-list ccan-read_write_all ccan-time', private_library=True) bld.SAMBA_LIBRARY('ccan', source='', - deps='ccan-hash ccan-ilog ccan-likely ccan-tally', + deps='ccan-err ccan-hash ccan-ilog ccan-likely ccan-tally', private_library=True) |