summaryrefslogtreecommitdiff
path: root/source4/build/smb_build/summary.pm
blob: c3edb094f39b276b229966b5dee59fb03010c2ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Samba Build System
# - write out summary
#
#  Copyright (C) Jelmer Vernooij 2006
#  Released under the GNU GPL

package summary;
use strict;

sub showitem($$$)
{
	my ($output,$desc,$items) = @_;

	my @need = ();

	foreach (@$items) {
		if ($output->{"EXT_LIB_$_"}->{ENABLE} ne "YES") {
			push (@need, $_);
		}
	}

	print "Support for $desc: ";
	if ($#need > 0) {
		print "no (install " . join(',',@need) . ")\n";
	} else {
		print "yes\n";
	}
}

sub show($$)
{
	my ($output,$config) = @_;
	print "Summary:\n\n";
	showitem($output, "GTK+ frontends", ["gtk","gconf"]);
	showitem($output, "SSL in SWAT", ["GNUTLS"]);
	showitem($output, "threads in smbd", ["PTHREAD"]);
	showitem($output, "intelligent command line editing", ["READLINE"]);
	showitem($output, "changing process titles", ["SETPROCTITLE"]);
	print "Using external popt: $output->{EXT_LIB_POPT}->{ENABLE}\n";
	print "Using shared libraries internally (experimental): ";

	if ($config->{BLDSHARED} eq "true") {
		print "yes\n";
	} else {
		print "no (try --enable-dso)\n";

	}
	print "\n";
}

1;