mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
e8514527be
These files are included into the source3/wscript configure checks and so need to avoid C89 features otherwise they may cause an incorrect configure failure. BUG: https://bugzilla.samba.org/show_bug.cgi?id=15281 Signed-off-by: Joseph Sutton <josephsutton@catalyst.net.nz> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
29 lines
947 B
C
29 lines
947 B
C
#include <stdio.h>
|
|
|
|
void exit(int);
|
|
|
|
int main(void)
|
|
{
|
|
#if !defined(HAVE_FCNTL_LOCK)
|
|
#error "ERROR: No locking available. Running Samba would be unsafe"
|
|
#endif
|
|
|
|
#if !(defined(HAVE_IFACE_GETIFADDRS) || defined(HAVE_IFACE_IFCONF) || defined(HAVE_IFACE_IFREQ) || defined(HAVE_IFACE_AIX))
|
|
#warning "WARNING: No automated network interface determination"
|
|
#endif
|
|
|
|
#if !(defined(USE_SETEUID) || defined(USE_SETREUID) || defined(USE_SETRESUID) || defined(USE_SETUIDX) || defined(HAVE_LINUX_THREAD_CREDENTIALS))
|
|
#error "ERROR: no seteuid method available"
|
|
#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))
|
|
#error "ERROR: No disk free routine!"
|
|
#endif
|
|
|
|
#if !((defined(HAVE_RANDOM) || defined(HAVE_RAND)) && (defined(HAVE_SRANDOM) || defined(HAVE_SRAND)))
|
|
#error "ERROR: No random or srandom routine!"
|
|
#endif
|
|
|
|
exit(0);
|
|
}
|