diff options
author | lloyd <[email protected]> | 2007-10-20 21:42:49 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2007-10-20 21:42:49 +0000 |
commit | e47e3a1f34896968ba1a68be5e8ac12c7b4adeac (patch) | |
tree | 9ed72e58d6cb6f6e035bc57a0e74926ae70cb889 /configure.pl | |
parent | a0331a06a431a069938657147bfb75af47ae64dd (diff) |
Rename the option in configure.pl named --disable-shared to --no-shared
Diffstat (limited to 'configure.pl')
-rwxr-xr-x | configure.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.pl b/configure.pl index ed5f4a8c7..c204f0bbe 100755 --- a/configure.pl +++ b/configure.pl @@ -254,7 +254,7 @@ Usage for $0 (Botan $VERSION_STRING) --build-dir=DIR: setup the build in DIR --local-config=FILE: include the contents of FILE into build.h --debug: set compiler flags for debugging - --disable-shared: disable building shared libararies + --no-shared: don't build shared libararies --make-style=STYLE: override the guess as to what type of makefile to use To change what modules to use: @@ -440,7 +440,7 @@ sub get_options { 'trace' => sub { $TRACING = 1; }, 'debug' => sub { &$save_option($_[0], 1); }, - 'disable-shared' => sub { $$config{'shared'} = 'no'; }, + 'no-shared' => sub { $$config{'shared'} = 'no'; }, 'noauto' => sub { $$config{'autoconfig'} = 0; }, 'dumb-gcc|gcc295x' => sub { $$config{'gcc_bug'} = 1; } |