summaryrefslogtreecommitdiffstats
path: root/tests/summary.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/summary.c')
-rw-r--r--tests/summary.c28
1 files changed, 28 insertions, 0 deletions
diff --git a/tests/summary.c b/tests/summary.c
new file mode 100644
index 0000000..ea48975
--- /dev/null
+++ b/tests/summary.c
@@ -0,0 +1,28 @@
+#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);
+}