Deleted Added
full compact
Configure (264278) Configure (269682)
1:
2eval 'exec perl -S $0 ${1+"$@"}'
3 if $running_under_some_shell;
4##
5## Configure -- OpenSSL source tree configuration script
6##
7
8require 5.000;

--- 706 unchanged lines hidden (view full) ---

715 "gmp" => "default",
716 "jpake" => "experimental",
717 "md2" => "default",
718 "rc5" => "default",
719 "rfc3779" => "default",
720 "sctp" => "default",
721 "shared" => "default",
722 "store" => "experimental",
1:
2eval 'exec perl -S $0 ${1+"$@"}'
3 if $running_under_some_shell;
4##
5## Configure -- OpenSSL source tree configuration script
6##
7
8require 5.000;

--- 706 unchanged lines hidden (view full) ---

715 "gmp" => "default",
716 "jpake" => "experimental",
717 "md2" => "default",
718 "rc5" => "default",
719 "rfc3779" => "default",
720 "sctp" => "default",
721 "shared" => "default",
722 "store" => "experimental",
723 "unit-test" => "default",
723 "zlib" => "default",
724 "zlib-dynamic" => "default"
725 );
726my @experimental = ();
727
728# This is what $depflags will look like with the above defaults
729# (we need this to see if we should advise the user to run "make depend"):
724 "zlib" => "default",
725 "zlib-dynamic" => "default"
726 );
727my @experimental = ();
728
729# This is what $depflags will look like with the above defaults
730# (we need this to see if we should advise the user to run "make depend"):
730my $default_depflags = " -DOPENSSL_NO_EC_NISTP_64_GCC_128 -DOPENSSL_NO_GMP -DOPENSSL_NO_JPAKE -DOPENSSL_NO_MD2 -DOPENSSL_NO_RC5 -DOPENSSL_NO_RFC3779 -DOPENSSL_NO_SCTP -DOPENSSL_NO_STORE";
731my $default_depflags = " -DOPENSSL_NO_EC_NISTP_64_GCC_128 -DOPENSSL_NO_GMP -DOPENSSL_NO_JPAKE -DOPENSSL_NO_MD2 -DOPENSSL_NO_RC5 -DOPENSSL_NO_RFC3779 -DOPENSSL_NO_SCTP -DOPENSSL_NO_STORE -DOPENSSL_NO_UNIT_TEST";
731
732# Explicit "no-..." options will be collected in %disabled along with the defaults.
733# To remove something from %disabled, use "enable-foo" (unless it's experimental).
734# For symmetry, "disable-foo" is a synonym for "no-foo".
735
736# For features called "experimental" here, a more explicit "experimental-foo" is needed to enable.
737# We will collect such requests in @experimental.
738# To avoid accidental use of experimental features, applications will have to use -DOPENSSL_EXPERIMENTAL_FOO.

--- 1438 unchanged lines hidden ---
732
733# Explicit "no-..." options will be collected in %disabled along with the defaults.
734# To remove something from %disabled, use "enable-foo" (unless it's experimental).
735# For symmetry, "disable-foo" is a synonym for "no-foo".
736
737# For features called "experimental" here, a more explicit "experimental-foo" is needed to enable.
738# We will collect such requests in @experimental.
739# To avoid accidental use of experimental features, applications will have to use -DOPENSSL_EXPERIMENTAL_FOO.

--- 1438 unchanged lines hidden ---