1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-11 05:18:09 +03:00
samba-mirror/examples/libsmbclient/wscript_build
Amitay Isaacs 5bdadd1501 build: Add missing dependencies on popt
This fixes compilation issues on freebsd where system popt is installed
under /usr/local.

Autobuild-User: Amitay Isaacs <amitay@samba.org>
Autobuild-Date: Fri Jan 27 08:33:52 CET 2012 on sn-devel-104
2012-01-27 08:33:52 +01:00

26 lines
569 B
Python

#!/usr/bin/env python
names = ['testsmbc',
'testacl',
'testacl2',
'testacl3',
'testbrowse',
'testbrowse2',
'teststat',
'teststat2',
'teststat3',
'teststatvfs',
'testfstatvfs',
'testtruncate',
'testchmod',
'testutime',
'testread',
'testwrite',
'testctx']
for name in names:
bld.SAMBA_BINARY(name,
source='%s.c' % name,
deps='popt smbclient',
install=False)