diff options
author | lloyd <[email protected]> | 2007-10-21 02:42:54 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2007-10-21 02:42:54 +0000 |
commit | 14f2c19b84b5885049f6f647434a62f19a11d48d (patch) | |
tree | cf8e6e70d943f57ffc4eb3b82f3e77d08c612871 /configure.pl | |
parent | 4a09ffa9e83a59607fcebb44cc5dbdc19cfc63fd (diff) |
Add an option --quiet which will disable the messages caused when
the script is guessing things.
Diffstat (limited to 'configure.pl')
-rwxr-xr-x | configure.pl | 27 |
1 files changed, 21 insertions, 6 deletions
diff --git a/configure.pl b/configure.pl index 8f37ded72..b5baa4921 100755 --- a/configure.pl +++ b/configure.pl @@ -37,6 +37,8 @@ my $TRACING = 0; ################################################## # Run main() and Quit # ################################################## +my $config = {}; + main(); exit; @@ -44,8 +46,6 @@ exit; # Main Driver # ################################################## sub main { - my $config = {}; - my $base_dir = where_am_i(); $$config{'base-dir'} = $base_dir; @@ -140,9 +140,11 @@ sub main { load_modules($config); - mkdirs($$config{'build-dir'}, - $$config{'build_include'}, $$config{'build_include_botan'}, - $$config{'build_lib'}, $$config{'build_check'}); + my @dirs = mkdirs($$config{'build-dir'}, + $$config{'build_include'}, $$config{'build_include_botan'}, + $$config{'build_lib'}, $$config{'build_check'}); + + #autoconfig('Created ' . join(' ', @dirs)) if @dirs; write_pkg_config($config); @@ -186,7 +188,8 @@ sub warning { } sub autoconfig { - print with_diagnostic('autoconfig', @_); + print with_diagnostic('autoconfig', @_) + if($$config{'verbose'}); } sub emit_help { @@ -246,6 +249,8 @@ sub display_help { Usage for $0 (Botan $VERSION_STRING): + --quiet display only warnings and errors + To change where the library is installed: --prefix=PATH: set the base installation directory @@ -408,6 +413,8 @@ sub get_options { $$config{$opt} = $val; }; + $$config{'verbose'} = 1; + my $module_set = ''; my @modules; exit 1 unless GetOptions( @@ -415,6 +422,8 @@ sub get_options { 'module-info' => sub { display_module_info(); }, 'version' => sub { emit_help("Botan $VERSION_STRING\n") }, + 'quiet' => sub { $$config{'verbose'} = 0; }, + 'cc=s' => sub { &$save_option('compiler', $_[1]) }, 'os=s' => sub { &$save_option(@_) }, 'cpu=s' => sub { &$save_option(@_) }, @@ -716,11 +725,15 @@ sub dir_list { sub mkdirs { my (@dirs) = @_; + + my @created; foreach my $dir (@dirs) { next if( -e $dir and -d $dir ); # skip it if it's already there mkdir($dir, 0777) or croak("Could not create directory $dir ($!)"); + push @created, $dir; } + return @created; } sub slurp_file { @@ -1626,6 +1639,8 @@ sub generate_makefile { trace("'$make_style' -> '$template'"); process_template($template, $$config{'makefile'}, $config); + + #autoconfig('Created ' . $$config{'makefile'}); } ################################################## |