summaryrefslogtreecommitdiff
path: root/source3/tests
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>1998-09-05 13:53:13 +0000
committerAndrew Tridgell <tridge@samba.org>1998-09-05 13:53:13 +0000
commitb28284007838c5802930691f1bd0aa77627ae7a2 (patch)
tree1ec2300308f02bd1bf00428eb207ff1ec76dc9f7 /source3/tests
parentf5e6f03389e53c6575c68f7bde5f9fa7dc496240 (diff)
downloadsamba-b28284007838c5802930691f1bd0aa77627ae7a2.tar.gz
samba-b28284007838c5802930691f1bd0aa77627ae7a2.tar.bz2
samba-b28284007838c5802930691f1bd0aa77627ae7a2.zip
added a configuration summary at the end of ./configure. It also
aborts if essential functions are not available. (This used to be commit 5c7717f033f670f587b4a250d0a663cad30824e5)
Diffstat (limited to 'source3/tests')
-rw-r--r--source3/tests/summary.c28
1 files changed, 28 insertions, 0 deletions
diff --git a/source3/tests/summary.c b/source3/tests/summary.c
new file mode 100644
index 0000000000..8c0d3005af
--- /dev/null
+++ b/source3/tests/summary.c
@@ -0,0 +1,28 @@
+#include <stdio.h>
+
+main()
+{
+#ifndef HAVE_FCNTL_LOCK
+ printf("ERROR: No locking available. Running Samba would be unsafe\n");
+ exit(1);
+#endif
+
+#if !(defined(HAVE_SYSV_IPC) || defined(HAVE_SHARED_MMAP))
+ printf("WARNING: no shared memory. Running with slow locking code\n");
+#endif
+
+#ifdef HAVE_TRAPDOOR_UID
+ printf("WARNING: trapdoor uid system - Samba may not operate correctly\n");
+#endif
+
+#if !(defined(HAVE_NETMASK_IFCONF) || defined(HAVE_NETMASK_IFREQ) || defined(HAVE_NETMASK_AIX))
+ printf("WARNING: No automated netmask determination - use an interfaces line\n");
+#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
+
+ exit(0);
+}