blob: 8c0d3005afd7b2667fb1d3262cf749a1b3426637 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
#include <stdio.h>
main()
{
#ifndef HAVE_FCNTL_LOCK
printf("ERROR: No locking available. Running Samba would be unsafe\n");
exit(1);
#endif
#if !(defined(HAVE_SYSV_IPC) || defined(HAVE_SHARED_MMAP))
printf("WARNING: no shared memory. Running with slow locking code\n");
#endif
#ifdef HAVE_TRAPDOOR_UID
printf("WARNING: trapdoor uid system - Samba may not operate correctly\n");
#endif
#if !(defined(HAVE_NETMASK_IFCONF) || defined(HAVE_NETMASK_IFREQ) || defined(HAVE_NETMASK_AIX))
printf("WARNING: No automated netmask determination - use an interfaces line\n");
#endif
#if !(defined(STAT_STATVFS) || defined(STAT_STATFS3_OSF1) || defined(STAT_STATFS2_BSIZE) || defined(STAT_STATFS4) || defined(STAT_STATFS2_FSIZE) || defined(STAT_STATFS2_FS_DATA))
printf("ERROR: No disk free routine!\n");
exit(1);
#endif
exit(0);
}
|