mirror of
https://github.com/samba-team/samba.git
synced 2025-01-08 21:18:16 +03:00
a5fcce05b6
This was accidentily lost in: commitb1ce226af8
Author: James Peach <jpeach@samba.org> Date: Fri Jun 15 21:58:49 2007 +0000 r23510: Tidy calls to smb_panic by removing trailing newlines. Print the failed expression in SMB_ASSERT. (This used to be commit171dc060e2
)
33 lines
932 B
C
33 lines
932 B
C
#include <stdio.h>
|
|
|
|
void exit(int);
|
|
|
|
main()
|
|
{
|
|
#if !defined(HAVE_FCNTL_LOCK)
|
|
printf("ERROR: No locking available. Running Samba would be unsafe\n");
|
|
exit(1);
|
|
#endif
|
|
|
|
#if !(defined(HAVE_IFACE_IFCONF) || defined(HAVE_IFACE_IFREQ) || defined(HAVE_IFACE_AIX))
|
|
printf("WARNING: No automated network interface determination\n");
|
|
#endif
|
|
|
|
#if !(defined(USE_SETEUID) || defined(USE_SETREUID) || defined(USE_SETRESUID) || defined(USE_SETUIDX))
|
|
printf("ERROR: no seteuid method available\n");
|
|
exit(1);
|
|
#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
|
|
|
|
#if !((defined(HAVE_RANDOM) || defined(HAVE_RAND)) && (defined(HAVE_SRANDOM) || defined(HAVE_SRAND)))
|
|
printf("ERROR: No random or srandom routine!\n");
|
|
exit(1);
|
|
#endif
|
|
|
|
exit(0);
|
|
}
|