diff options
author | lloyd <[email protected]> | 2008-10-14 23:09:30 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-10-14 23:09:30 +0000 |
commit | 41c0330dad9fe8b432342ae6af3c711470ae6c90 (patch) | |
tree | acfd0c81bc0d5523962a77d9ac9758d9fca81996 /configure.pl | |
parent | 74f44e774adb8e4a7950ce5b2722785e239d752b (diff) |
Warn if an unknown value is passed to configure.pl's --with-tr1-implementation,
rather than silently ignoring it.
Diffstat (limited to 'configure.pl')
-rwxr-xr-x | configure.pl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.pl b/configure.pl index 00c37eae1..20dcddbaa 100755 --- a/configure.pl +++ b/configure.pl @@ -1255,6 +1255,9 @@ sub load_modules { elsif($tr1 eq 'boost') { push @macro_list, '#define BOTAN_USE_BOOST_TR1'; } + else { + warning("Unknown --with-tr1= option $tr1, will ignore"); + } } my %defines; |