Lines Matching +full:version +full:- +full:major
6 - User defined macros
15 compilation command (C<cc -DMACRO=value>) or by defining the macro in
27 The value is a version number, given in one of the following two forms:
34 represents the major number, C<NN> represents the minor number, and
35 C<FF> represents the fix number, as a hexadecimal number. For version
38 Any version number may be given, but these numbers are
39 the current known major deprecation points, making them the most
44 =item C<0x00908000L> (version 0.9.8)
46 =item C<0x10000000L> (version 1.0.0)
48 =item C<0x10100000L> (version 1.1.0)
60 I<major> * 10000 + I<minor> * 100 + I<patch>
62 where I<major>, I<minor> and I<patch> are the desired major,
63 minor and patch components of the version number. For example:
67 =item 30000 corresponds to version 3.0.0
69 =item 10002 corresponds to version 1.0.2
71 =item 420101 corresponds to version 42.1.1
79 C<{- join('', map { my @x = split /=/,$_; $x[1] }
82 -}>
87 versions up to and including the version given by B<OPENSSL_API_COMPAT>
95 Copyright 2018-2021 The OpenSSL Project Authors. All Rights Reserved.