| Line |  | 
|---|
| 1 | #include <stdio.h> | 
|---|
| 2 |  | 
|---|
| 3 | main() | 
|---|
| 4 | { | 
|---|
| 5 | exit (0); | 
|---|
| 6 | #if !(defined(HAVE_FCNTL_LOCK) || defined(HAVE_STRUCT_FLOCK64)) | 
|---|
| 7 | printf("ERROR: No locking available. Running Samba would be unsafe\n"); | 
|---|
| 8 | exit(1); | 
|---|
| 9 | #endif | 
|---|
| 10 |  | 
|---|
| 11 | #if !(defined(HAVE_IFACE_IFCONF) || defined(HAVE_IFACE_IFREQ) || defined(HAVE_IFACE_AIX)) | 
|---|
| 12 | printf("WARNING: No automated network interface determination\n"); | 
|---|
| 13 | #endif | 
|---|
| 14 |  | 
|---|
| 15 | #ifndef __OS2__ | 
|---|
| 16 | #if !(defined(USE_SETEUID) || defined(USE_SETREUID) || defined(USE_SETRESUID) || defined(USE_SETUIDX)) | 
|---|
| 17 | printf("ERROR: no seteuid method available\n"); | 
|---|
| 18 | exit(1); | 
|---|
| 19 | #endif | 
|---|
| 20 | #endif /* __OS2__ */ | 
|---|
| 21 |  | 
|---|
| 22 | #if !(defined(STAT_STATVFS) || defined(STAT_STATVFS64) || defined(STAT_STATFS3_OSF1) || defined(STAT_STATFS2_BSIZE) || defined(STAT_STATFS4) || defined(STAT_STATFS2_FSIZE) || defined(STAT_STATFS2_FS_DATA)) | 
|---|
| 23 | printf("ERROR: No disk free routine!\n"); | 
|---|
| 24 | exit(1); | 
|---|
| 25 | #endif | 
|---|
| 26 |  | 
|---|
| 27 | #if !((defined(HAVE_RANDOM) || defined(HAVE_RAND)) && (defined(HAVE_SRANDOM) || defined(HAVE_SRAND))) | 
|---|
| 28 | printf("ERROR: No random or srandom routine!\n"); | 
|---|
| 29 | exit(1); | 
|---|
| 30 | #endif | 
|---|
| 31 |  | 
|---|
| 32 | exit(0); | 
|---|
| 33 | } | 
|---|
       
      
  Note:
 See   
TracBrowser
 for help on using the repository browser.