4 # Copyright (C) Jelmer Vernooij 2006
5 # Released under the GNU GPL
15 return (defined($val) && $val =~ m/yes|true/i);
20 my ($output,$desc,$items) = @_;
25 push (@need, $_) if (enabled
($config::enable
{$_}));
28 print "Support for $desc: ";
30 print "no (install " . join(',',@need) . ")\n";
36 sub showisexternal
($$$)
38 my ($output, $desc, $name) = @_;
39 print "Using external $desc: ".
40 (($output->{$name}->{TYPE
} eq "EXT_LIB")?
"yes":"no")."\n";
45 my ($output,$config) = @_;
48 showitem
($output, "SSL in SWAT and LDAP", ["GNUTLS"]);
49 showitem
($output, "threads in server (see --with-pthread)", ["PTHREAD"]);
50 showitem
($output, "intelligent command line editing", ["READLINE"]);
51 showitem
($output, "changing process titles (see --with-setproctitle)", ["SETPROCTITLE"]);
52 showitem
($output, "using extended attributes", ["XATTR"]);
53 showitem
($output, "using libblkid", ["BLKID"]);
54 showitem
($output, "using iconv", ["ICONV"]);
55 showitem
($output, "using pam", ["PAM"]);
56 showitem
($output, "python bindings", ["LIBPYTHON"]);
57 showisexternal
($output, "popt", "LIBPOPT");
58 showisexternal
($output, "talloc", "LIBTALLOC");
59 showisexternal
($output, "tdb", "LIBTDB");
60 showisexternal
($output, "ldb", "LIBLDB");
61 print "Developer mode: ".(enabled
($config->{developer
})?
"yes":"no")."\n";
62 print "Automatic dependencies: ".
63 (enabled
($config->{automatic_dependencies
})
64 ?
"yes" : "no (install GNU make >= 3.81 and see --enable-automatic-dependencies)") .
67 print "Building shared libraries: " .
68 (enabled
($config->{BLDSHARED
})
69 ?
"yes" : "no (not supported on this system)") .
71 print "Using shared libraries internally: " .
72 (enabled
($config->{USESHARED
})
73 ?
"yes" : "no (specify --enable-dso)") .