Re: [qmc2-devel] [svs-devel] compiling for samba 3.6.3
Brought to you by:
prianthefist,
renereucher
|
From: R. R. <ren...@ba...> - 2012-03-05 15:31:17
|
On Monday 05 March 2012 16:23:55 Sebastien Caty wrote: > They seem to have shuffled some definition around. > > smb_register_vfs which was defined in source3/include/proto.h is now > in source3/smbd/proto.h > > A quick hack adding : > #include "../source3/smbd/proto.h" > in svs-vfs.c did it for me. Well that and renaming the open function > to open_fn. > > http://lists.samba.org/archive/samba-cvs/2011-April/102229.html > > struct vfs_fn_pointers svs_fn_pointers = { > .connect_fn = svs_connect, > .disconnect = svs_disconnect, > - .open = svs_open, > + .open_fn = svs_open, > .close_fn = svs_close, > .rename = svs_rename, > .unlink = svs_unlink > }; > > I now have SVS built for samba 3.6.3 > > Hope this helps! Indeed!! Thanks! ;-) |