Samba compiled with no problem without smbmount, but here is what I get when I try configure --with-smbmount Any insight appreciated. Joel Compiling client/smbmount.c client/smbmount.c: In function `close_our_files': client/smbmount.c:98: storage size of `limits' isn't known client/smbmount.c:100: `RLIMIT_NOFILE' undeclared (first use in this function) client/smbmount.c:100: (Each undeclared identifier is reported only once client/smbmount.c:100: for each function it appears in.) make: *** [client/smbmount.o] Error 1
On Sat, 15 Sep 2001, Joel Hammer wrote:> Compiling client/smbmount.c > client/smbmount.c: In function `close_our_files': > client/smbmount.c:98: storage size of `limits' isn't known > client/smbmount.c:100: `RLIMIT_NOFILE' undeclared (first use in this > function)RLIMIT_NOFILE should be defined in sys/resource.h (assuming glibc, don't remember where libc5 puts things, and it's actually in bits/) ./configure should have detected that you have that file and put #define HAVE_SYS_RESOURCE_H 1 in include/config.h Did it, and if not what kind of system are you on? /Urban
On Sat, Sep 15, 2001 at 03:02:27PM -0700, Mark Dailey wrote:> Hi Joel, > I don't know a lot about SAMBA, but I suspect that in order to help, > people will need to know the environment you are compiling under e.g. > >I have Caldera 2.4 with an upgraded patched kernel, 2.4.5-win4lin Joel