summaryrefslogtreecommitdiff
path: root/source3
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
commit7e4e1d70497973905cae4aa5fcd86ca1aa505542 (patch)
treeff6c4a02d1eb2fe49dc3c98fe6c78f8b87d8a641 /source3
parentfbc62e3bfcc1c78cce9943add04c05745f772fb0 (diff)
downloadsamba-7e4e1d70497973905cae4aa5fcd86ca1aa505542.tar.gz
samba-7e4e1d70497973905cae4aa5fcd86ca1aa505542.tar.bz2
samba-7e4e1d70497973905cae4aa5fcd86ca1aa505542.zip
Print out information about statically linked in modules
(This used to be commit 9ef6f917f964e6b514fb95e4da75a57cbad6a233)
Diffstat (limited to 'source3')
-rw-r--r--source3/smbd/build_options.c12
1 files changed, 3 insertions, 9 deletions
diff --git a/source3/smbd/build_options.c b/source3/smbd/build_options.c
index da5accebab..43335666a6 100644
--- a/source3/smbd/build_options.c
+++ b/source3/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);
}