From: Volker Lendecke Date: Fri, 7 Sep 2018 05:27:46 +0000 (+0200) Subject: examples: Fix the smb2mount build X-Git-Tag: samba-4.8.8~149 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8d0fbe3ebb134bbf6cbdfdf86e0b0279ae8d1c73;p=thirdparty%2Fsamba.git examples: Fix the smb2mount build BUG: https://bugzilla.samba.org/show_bug.cgi?id=13465 Signed-off-by: Volker Lendecke Reviewed-by: Ralph Boehme (cherry picked from commit 94852e3544bf2cace3ddba8b9c89d986d77fdab5) --- diff --git a/examples/fuse/smb2mount.c b/examples/fuse/smb2mount.c index 816b0b597ad..ec4be809f6d 100644 --- a/examples/fuse/smb2mount.c +++ b/examples/fuse/smb2mount.c @@ -20,7 +20,7 @@ #include "source3/include/includes.h" #include "popt.h" -#include "popt_common.h" +#include "popt_common_cmdline.h" #include "client.h" #include "libsmb/proto.h" #include "clifuse.h" diff --git a/examples/fuse/wscript_build b/examples/fuse/wscript_build index 9ec5fc0a0f2..31341e4357d 100644 --- a/examples/fuse/wscript_build +++ b/examples/fuse/wscript_build @@ -3,5 +3,5 @@ if bld.env.HAVE_FUSE: bld.SAMBA_BINARY('smb2mount', source='smb2mount.c clifuse.c', - deps='smbconf popt_samba3 libsmb fuse', + deps='smbconf popt_samba3_cmdline libsmb fuse', install=False)