echo -e '\052\052 FAILED -- MAKE';
travis_terminate 1;
fi;
+ - if test -n "$CHECKDOCS" && ! $make cmd-nits; then
+ echo -e '\052\052 FAILED -- MAKE CMD-NITS';
+ travis_terminate 1;
+ fi
- if [ -z "$BUILDONLY" ]; then
if [ -n "$CROSS_COMPILE" ]; then
sudo dpkg --add-architecture i386;
and L<EVP_MAC_final(3)>.
[Paul Dale]
+ *) Over two thousand fixes were made to the documentation, including:
+ - Common options (such as -rand/-writerand, TLS version control, etc)
+ were refactored and point to newly-enhanced descriptions in openssl.pod.
+ - Added style conformance for all options (with help from Richard Levitte),
+ documented all reported missing options, added a CI build to check
+ that all options are documented and that no unimplemented options
+ are documented.
+ - Documented some internals, such as all use of environment variables.
+ - Addressed all internal broken L<> references.
+ [Rich Salz]
+
*) All of the low level MD2, MD4, MD5, MDC2, RIPEMD160, SHA1, SHA224, SHA256,
SHA384, SHA512 and Whirlpool digest functions have been deprecated.
These include:
pages for further details.
[Matt Caswell]
- *) Most common options (such as -rand/-writerand, TLS version control, etc)
- were refactored and point to newly-enhanced descriptions in openssl.pod
- [Rich Salz]
-
- *) Over two thousand fixes were made to the documentation, including:
- adding missing command flags, better style conformance, documentation
- of internals, etc.
- [Rich Salz, Richard Levitte]
-
*) s390x assembly pack: add hardware-support for P-256, P-384, P-521,
X25519, X448, Ed25519 and Ed448.
[Patrick Steuer]
# Set to 1 for debug output
my $debug = 0;
+# Where to find openssl command
+my $BLDTOP = $ENV{BLDTOP} || ".";
+my $openssl = "$BLDTOP/util/opensslwrap.sh";
+
# Options.
our($opt_d);
our($opt_e);
my %localskips;
# Get the list of options in the command.
- open CFH, "./apps/openssl list --options $cmd|"
+ open CFH, "$openssl list --options $cmd|"
or die "Can list options for $cmd, $!";
while ( <CFH> ) {
chop;
my @commands = ();
# Get list of commands.
- open FH, "./apps/openssl list -1 -commands|"
+ open FH, "$openssl list -1 -commands|"
or die "Can't list commands, $!";
while ( <FH> ) {
chop;
}
# See what help is missing.
- open FH, "./apps/openssl list --missing-help |"
+ open FH, "$openssl list --missing-help |"
or die "Can't list missing help, $!";
while ( <FH> ) {
chop;