Hey again
savecwd.c
The call to fchdir() should be prefixed with #ifdef HAVE_FCHDIR
The macro is indeed set correctly (or rather not set;) in winconfig.h
but we failed to check prior to the actual call to the function.
find_one.c
#if !defined(HAVE_WIN32) || defined(HAVE_MINGW)
#include <sys/param.h>
#endif
Should be changed to
#if !defined(HAVE_WIN32) || defined(HAVE_MINGW)
#include <sys/param.h>
#else
#define MAXPATHLEN <num>
#endif
What do you want it set to ? 4096 ?
------------------------------------------------------------------------------
Enter the BlackBerry Developer Challenge
This is your chance to win up to $100,000 in prizes! For a limited time,
vendors submitting new applications to BlackBerry App World(TM) will have
the opportunity to enter the BlackBerry Developer Challenge. See full prize
details at: http://p.sf.net/sfu/Challenge
_______________________________________________
Bacula-devel mailing list
Bacula-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-devel