summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2003-04-15 17:05:30 +0000
committerJelmer Vernooij <jelmer@samba.org>2003-04-15 17:05:30 +0000
commit9ef6f917f964e6b514fb95e4da75a57cbad6a233 (patch)
tree575b27d79f4fad7c93dda2157cff58324e729c93
parent858017b16f8e6f1efd8e7df5c0e2c7fd08091ae3 (diff)
downloadsamba-9ef6f917f964e6b514fb95e4da75a57cbad6a233.tar.gz
samba-9ef6f917f964e6b514fb95e4da75a57cbad6a233.tar.xz
samba-9ef6f917f964e6b514fb95e4da75a57cbad6a233.zip
Print out information about statically linked in modules
-rw-r--r--source/smbd/build_options.c12
1 files changed, 3 insertions, 9 deletions
diff --git a/source/smbd/build_options.c b/source/smbd/build_options.c
index da5accebab6..43335666a63 100644
--- a/source/smbd/build_options.c
+++ b/source/smbd/build_options.c
@@ -104,15 +104,6 @@ void build_options(BOOL screen)
#ifdef WITH_PAM
output(screen," WITH_PAM\n");
#endif
-#ifdef WITH_TDB_SAM
- output(screen," WITH_TDB_SAM\n");
-#endif
-#ifdef WITH_SMBPASSWD_SAM
- output(screen," WITH_SMBPASSWD_SAM\n");
-#endif
-#ifdef WITH_NISPLUS_SAM
- output(screen," WITH_NISPLUS_SAM\n");
-#endif
#ifdef WITH_NISPLUS_HOME
output(screen," WITH_NISPLUS_HOME\n");
#endif
@@ -532,6 +523,9 @@ void build_options(BOOL screen)
output(screen," sizeof(uint32): %d\n",sizeof(uint32));
output(screen," sizeof(short): %d\n",sizeof(short));
output(screen," sizeof(void*): %d\n",sizeof(void*));
+
+ output(screen,"\nBuiltin modules:\n");
+ output(screen,"%s\n", STRING_STATIC_MODULES);
}