s4/selftest: samba4.drs.replica_sync.python enable for python3.
[samba.git] / tests / summary.c
index a019fbfb2e0e84223fa5231a5e27a4c390373d4a..87a64fd90efdf48432fd470dfa0982002e4d8f0a 100644 (file)
@@ -2,30 +2,26 @@
 
 void exit(int);
 
-main()
+int main()
 {
 #if !defined(HAVE_FCNTL_LOCK)
-       printf("ERROR: No locking available. Running Samba would be unsafe\n");
-       exit(1);
+#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))
-       printf("WARNING: No automated network interface determination\n");
+#warning "WARNING: No automated network interface determination"
 #endif
 
-#if !(defined(USE_SETEUID) || defined(USE_SETREUID) || defined(USE_SETRESUID) || defined(USE_SETUIDX))
-       printf("ERROR: no seteuid method available\n");
-       exit(1);
+#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))
-       printf("ERROR: No disk free routine!\n");
-       exit(1);
+#error "ERROR: No disk free routine!"
 #endif
 
 #if !((defined(HAVE_RANDOM) || defined(HAVE_RAND)) && (defined(HAVE_SRANDOM) || defined(HAVE_SRAND)))
-    printf("ERROR: No random or srandom routine!\n");
-    exit(1);
+#error "ERROR: No random or srandom routine!"
 #endif
 
        exit(0);