diff options
author | Amitay Isaacs <amitay@gmail.com> | 2012-01-27 16:57:46 +1100 |
---|---|---|
committer | Amitay Isaacs <amitay@samba.org> | 2012-01-27 08:33:52 +0100 |
commit | 5bdadd15013e69b6e8869386301628611268bf30 (patch) | |
tree | 93a862343f1ec894278f2aed7c2e9a34f61b8d20 /examples | |
parent | a9e03337c1dbf13dcab5bf1f825bc1853b61256e (diff) | |
download | samba-5bdadd15013e69b6e8869386301628611268bf30.tar.gz samba-5bdadd15013e69b6e8869386301628611268bf30.tar.bz2 samba-5bdadd15013e69b6e8869386301628611268bf30.zip |
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
Diffstat (limited to 'examples')
-rw-r--r-- | examples/libsmbclient/wscript_build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/libsmbclient/wscript_build b/examples/libsmbclient/wscript_build index 84e03f394a..aa39965d22 100644 --- a/examples/libsmbclient/wscript_build +++ b/examples/libsmbclient/wscript_build @@ -21,5 +21,5 @@ names = ['testsmbc', for name in names: bld.SAMBA_BINARY(name, source='%s.c' % name, - deps='smbclient', + deps='popt smbclient', install=False) |