Skip to content

Commit

Permalink
deps: update archs files for openssl-3.0.15+quic1
Browse files Browse the repository at this point in the history
PR-URL: #55184
Reviewed-By: Rafael Gonzaga <[email protected]>
Reviewed-By: Richard Lau <[email protected]>
Reviewed-By: Michael Dawson <[email protected]>
Reviewed-By: Luigi Pinca <[email protected]>
  • Loading branch information
nodejs-github-bot authored and aduh95 committed Nov 2, 2024
1 parent 46c7824 commit fce3ab6
Show file tree
Hide file tree
Showing 203 changed files with 2,008 additions and 775 deletions.
26 changes: 22 additions & 4 deletions deps/openssl/config/archs/BSD-x86/asm/configdata.pm
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ our %config = (
],
"dynamic_engines" => "0",
"ex_libs" => [],
"full_version" => "3.0.14+quic",
"full_version" => "3.0.15+quic",
"includes" => [],
"lflags" => [],
"lib_defines" => [
Expand Down Expand Up @@ -203,7 +203,7 @@ our %config = (
"openssl_sys_defines" => [],
"openssldir" => "",
"options" => "enable-ssl-trace enable-fips no-afalgeng no-asan no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-ktls no-loadereng no-md2 no-msan no-rc5 no-sctp no-shared no-ssl3 no-ssl3-method no-trace no-ubsan no-unit-test no-uplink no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
"patch" => "14",
"patch" => "15",
"perl_archname" => "x86_64-linux-gnu-thread-multi",
"perl_cmd" => "/usr/bin/perl",
"perl_version" => "5.34.0",
Expand Down Expand Up @@ -255,11 +255,11 @@ our %config = (
"prerelease" => "",
"processor" => "",
"rc4_int" => "unsigned int",
"release_date" => "4 Jun 2024",
"release_date" => "3 Sep 2024",
"shlib_version" => "81.3",
"sourcedir" => ".",
"target" => "BSD-x86",
"version" => "3.0.14"
"version" => "3.0.15"
);
our %target = (
"AR" => "ar",
Expand Down Expand Up @@ -1240,6 +1240,9 @@ our %unified_info = (
"test/errtest" => {
"noinst" => "1"
},
"test/evp_byname_test" => {
"noinst" => "1"
},
"test/evp_extra_test" => {
"noinst" => "1"
},
Expand Down Expand Up @@ -7735,6 +7738,10 @@ our %unified_info = (
"libcrypto",
"test/libtestutil.a"
],
"test/evp_byname_test" => [
"libcrypto",
"test/libtestutil.a"
],
"test/evp_extra_test" => [
"libcrypto.a",
"providers/libcommon.a",
Expand Down Expand Up @@ -18773,6 +18780,10 @@ our %unified_info = (
"include",
"apps/include"
],
"test/evp_byname_test" => [
"include",
"apps/include"
],
"test/evp_extra_test" => [
"include",
"apps/include",
Expand Down Expand Up @@ -20335,6 +20346,7 @@ our %unified_info = (
"test/endecoder_legacy_test",
"test/enginetest",
"test/errtest",
"test/evp_byname_test",
"test/evp_extra_test",
"test/evp_extra_test2",
"test/evp_fetch_prov_test",
Expand Down Expand Up @@ -26687,6 +26699,12 @@ our %unified_info = (
"test/errtest-bin-errtest.o" => [
"test/errtest.c"
],
"test/evp_byname_test" => [
"test/evp_byname_test-bin-evp_byname_test.o"
],
"test/evp_byname_test-bin-evp_byname_test.o" => [
"test/evp_byname_test.c"
],
"test/evp_extra_test" => [
"providers/evp_extra_test-bin-legacyprov.o",
"test/evp_extra_test-bin-evp_extra_test.o"
Expand Down
2 changes: 1 addition & 1 deletion deps/openssl/config/archs/BSD-x86/asm/crypto/buildinf.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
*/

#define PLATFORM "platform: BSD-x86"
#define DATE "built on: Mon Aug 12 15:15:09 2024 UTC"
#define DATE "built on: Mon Sep 30 17:05:30 2024 UTC"

/*
* Generate compiler_flags as an array of individual characters. This is a
Expand Down
10 changes: 5 additions & 5 deletions deps/openssl/config/archs/BSD-x86/asm/include/openssl/opensslv.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ extern "C" {
*/
# define OPENSSL_VERSION_MAJOR 3
# define OPENSSL_VERSION_MINOR 0
# define OPENSSL_VERSION_PATCH 14
# define OPENSSL_VERSION_PATCH 15

/*
* Additional version information
Expand Down Expand Up @@ -74,21 +74,21 @@ extern "C" {
* longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
* OPENSSL_VERSION_BUILD_METADATA_STR appended.
*/
# define OPENSSL_VERSION_STR "3.0.14"
# define OPENSSL_FULL_VERSION_STR "3.0.14+quic"
# define OPENSSL_VERSION_STR "3.0.15"
# define OPENSSL_FULL_VERSION_STR "3.0.15+quic"

/*
* SECTION 3: ADDITIONAL METADATA
*
* These strings are defined separately to allow them to be parsable.
*/
# define OPENSSL_RELEASE_DATE "4 Jun 2024"
# define OPENSSL_RELEASE_DATE "3 Sep 2024"

/*
* SECTION 4: BACKWARD COMPATIBILITY
*/

# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.14+quic 4 Jun 2024"
# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.15+quic 3 Sep 2024"

/* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
# ifdef OPENSSL_VERSION_PRE_RELEASE
Expand Down
26 changes: 22 additions & 4 deletions deps/openssl/config/archs/BSD-x86/asm_avx2/configdata.pm
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ our %config = (
],
"dynamic_engines" => "0",
"ex_libs" => [],
"full_version" => "3.0.14+quic",
"full_version" => "3.0.15+quic",
"includes" => [],
"lflags" => [],
"lib_defines" => [
Expand Down Expand Up @@ -203,7 +203,7 @@ our %config = (
"openssl_sys_defines" => [],
"openssldir" => "",
"options" => "enable-ssl-trace enable-fips no-afalgeng no-asan no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-ktls no-loadereng no-md2 no-msan no-rc5 no-sctp no-shared no-ssl3 no-ssl3-method no-trace no-ubsan no-unit-test no-uplink no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
"patch" => "14",
"patch" => "15",
"perl_archname" => "x86_64-linux-gnu-thread-multi",
"perl_cmd" => "/usr/bin/perl",
"perl_version" => "5.34.0",
Expand Down Expand Up @@ -255,11 +255,11 @@ our %config = (
"prerelease" => "",
"processor" => "",
"rc4_int" => "unsigned int",
"release_date" => "4 Jun 2024",
"release_date" => "3 Sep 2024",
"shlib_version" => "81.3",
"sourcedir" => ".",
"target" => "BSD-x86",
"version" => "3.0.14"
"version" => "3.0.15"
);
our %target = (
"AR" => "ar",
Expand Down Expand Up @@ -1240,6 +1240,9 @@ our %unified_info = (
"test/errtest" => {
"noinst" => "1"
},
"test/evp_byname_test" => {
"noinst" => "1"
},
"test/evp_extra_test" => {
"noinst" => "1"
},
Expand Down Expand Up @@ -7735,6 +7738,10 @@ our %unified_info = (
"libcrypto",
"test/libtestutil.a"
],
"test/evp_byname_test" => [
"libcrypto",
"test/libtestutil.a"
],
"test/evp_extra_test" => [
"libcrypto.a",
"providers/libcommon.a",
Expand Down Expand Up @@ -18773,6 +18780,10 @@ our %unified_info = (
"include",
"apps/include"
],
"test/evp_byname_test" => [
"include",
"apps/include"
],
"test/evp_extra_test" => [
"include",
"apps/include",
Expand Down Expand Up @@ -20335,6 +20346,7 @@ our %unified_info = (
"test/endecoder_legacy_test",
"test/enginetest",
"test/errtest",
"test/evp_byname_test",
"test/evp_extra_test",
"test/evp_extra_test2",
"test/evp_fetch_prov_test",
Expand Down Expand Up @@ -26687,6 +26699,12 @@ our %unified_info = (
"test/errtest-bin-errtest.o" => [
"test/errtest.c"
],
"test/evp_byname_test" => [
"test/evp_byname_test-bin-evp_byname_test.o"
],
"test/evp_byname_test-bin-evp_byname_test.o" => [
"test/evp_byname_test.c"
],
"test/evp_extra_test" => [
"providers/evp_extra_test-bin-legacyprov.o",
"test/evp_extra_test-bin-evp_extra_test.o"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
*/

#define PLATFORM "platform: BSD-x86"
#define DATE "built on: Mon Aug 12 15:15:22 2024 UTC"
#define DATE "built on: Mon Sep 30 17:05:44 2024 UTC"

/*
* Generate compiler_flags as an array of individual characters. This is a
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ extern "C" {
*/
# define OPENSSL_VERSION_MAJOR 3
# define OPENSSL_VERSION_MINOR 0
# define OPENSSL_VERSION_PATCH 14
# define OPENSSL_VERSION_PATCH 15

/*
* Additional version information
Expand Down Expand Up @@ -74,21 +74,21 @@ extern "C" {
* longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
* OPENSSL_VERSION_BUILD_METADATA_STR appended.
*/
# define OPENSSL_VERSION_STR "3.0.14"
# define OPENSSL_FULL_VERSION_STR "3.0.14+quic"
# define OPENSSL_VERSION_STR "3.0.15"
# define OPENSSL_FULL_VERSION_STR "3.0.15+quic"

/*
* SECTION 3: ADDITIONAL METADATA
*
* These strings are defined separately to allow them to be parsable.
*/
# define OPENSSL_RELEASE_DATE "4 Jun 2024"
# define OPENSSL_RELEASE_DATE "3 Sep 2024"

/*
* SECTION 4: BACKWARD COMPATIBILITY
*/

# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.14+quic 4 Jun 2024"
# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.15+quic 3 Sep 2024"

/* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
# ifdef OPENSSL_VERSION_PRE_RELEASE
Expand Down
26 changes: 22 additions & 4 deletions deps/openssl/config/archs/BSD-x86/no-asm/configdata.pm
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ our %config = (
],
"dynamic_engines" => "0",
"ex_libs" => [],
"full_version" => "3.0.14+quic",
"full_version" => "3.0.15+quic",
"includes" => [],
"lflags" => [],
"lib_defines" => [
Expand Down Expand Up @@ -202,7 +202,7 @@ our %config = (
"openssl_sys_defines" => [],
"openssldir" => "",
"options" => "enable-ssl-trace enable-fips no-afalgeng no-asan no-asm no-buildtest-c++ no-comp no-crypto-mdebug no-crypto-mdebug-backtrace no-dynamic-engine no-ec_nistp_64_gcc_128 no-egd no-external-tests no-fuzz-afl no-fuzz-libfuzzer no-ktls no-loadereng no-md2 no-msan no-rc5 no-sctp no-shared no-ssl3 no-ssl3-method no-trace no-ubsan no-unit-test no-uplink no-weak-ssl-ciphers no-zlib no-zlib-dynamic",
"patch" => "14",
"patch" => "15",
"perl_archname" => "x86_64-linux-gnu-thread-multi",
"perl_cmd" => "/usr/bin/perl",
"perl_version" => "5.34.0",
Expand Down Expand Up @@ -255,11 +255,11 @@ our %config = (
"prerelease" => "",
"processor" => "",
"rc4_int" => "unsigned int",
"release_date" => "4 Jun 2024",
"release_date" => "3 Sep 2024",
"shlib_version" => "81.3",
"sourcedir" => ".",
"target" => "BSD-x86",
"version" => "3.0.14"
"version" => "3.0.15"
);
our %target = (
"AR" => "ar",
Expand Down Expand Up @@ -1241,6 +1241,9 @@ our %unified_info = (
"test/errtest" => {
"noinst" => "1"
},
"test/evp_byname_test" => {
"noinst" => "1"
},
"test/evp_extra_test" => {
"noinst" => "1"
},
Expand Down Expand Up @@ -7677,6 +7680,10 @@ our %unified_info = (
"libcrypto",
"test/libtestutil.a"
],
"test/evp_byname_test" => [
"libcrypto",
"test/libtestutil.a"
],
"test/evp_extra_test" => [
"libcrypto.a",
"providers/libcommon.a",
Expand Down Expand Up @@ -18693,6 +18700,10 @@ our %unified_info = (
"include",
"apps/include"
],
"test/evp_byname_test" => [
"include",
"apps/include"
],
"test/evp_extra_test" => [
"include",
"apps/include",
Expand Down Expand Up @@ -20255,6 +20266,7 @@ our %unified_info = (
"test/endecoder_legacy_test",
"test/enginetest",
"test/errtest",
"test/evp_byname_test",
"test/evp_extra_test",
"test/evp_extra_test2",
"test/evp_fetch_prov_test",
Expand Down Expand Up @@ -26519,6 +26531,12 @@ our %unified_info = (
"test/errtest-bin-errtest.o" => [
"test/errtest.c"
],
"test/evp_byname_test" => [
"test/evp_byname_test-bin-evp_byname_test.o"
],
"test/evp_byname_test-bin-evp_byname_test.o" => [
"test/evp_byname_test.c"
],
"test/evp_extra_test" => [
"providers/evp_extra_test-bin-legacyprov.o",
"test/evp_extra_test-bin-evp_extra_test.o"
Expand Down
2 changes: 1 addition & 1 deletion deps/openssl/config/archs/BSD-x86/no-asm/crypto/buildinf.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
*/

#define PLATFORM "platform: BSD-x86"
#define DATE "built on: Mon Aug 12 15:15:35 2024 UTC"
#define DATE "built on: Mon Sep 30 17:05:57 2024 UTC"

/*
* Generate compiler_flags as an array of individual characters. This is a
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ extern "C" {
*/
# define OPENSSL_VERSION_MAJOR 3
# define OPENSSL_VERSION_MINOR 0
# define OPENSSL_VERSION_PATCH 14
# define OPENSSL_VERSION_PATCH 15

/*
* Additional version information
Expand Down Expand Up @@ -74,21 +74,21 @@ extern "C" {
* longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
* OPENSSL_VERSION_BUILD_METADATA_STR appended.
*/
# define OPENSSL_VERSION_STR "3.0.14"
# define OPENSSL_FULL_VERSION_STR "3.0.14+quic"
# define OPENSSL_VERSION_STR "3.0.15"
# define OPENSSL_FULL_VERSION_STR "3.0.15+quic"

/*
* SECTION 3: ADDITIONAL METADATA
*
* These strings are defined separately to allow them to be parsable.
*/
# define OPENSSL_RELEASE_DATE "4 Jun 2024"
# define OPENSSL_RELEASE_DATE "3 Sep 2024"

/*
* SECTION 4: BACKWARD COMPATIBILITY
*/

# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.14+quic 4 Jun 2024"
# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.15+quic 3 Sep 2024"

/* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
# ifdef OPENSSL_VERSION_PRE_RELEASE
Expand Down
Loading

0 comments on commit fce3ab6

Please sign in to comment.