mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-28 03:42:04 +01:00
e0c4386e7e
* Fixed PKCS12 Decoding crashes ([CVE-2024-0727]) * Fixed Excessive time spent checking invalid RSA public keys ([CVE-2023-6237]) * Fixed POLY1305 MAC implementation corrupting vector registers on PowerPC CPUs which support PowerISA 2.07 ([CVE-2023-6129]) * Fix excessive time spent in DH check / generation with large Q parameter value ([CVE-2023-5678]) Release notes can be found at https://www.openssl.org/news/openssl-3.0-notes.html. Approved by: emaste MFC after: 3 days Merge commit '9dd13e84fa8eca8f3462bd55485aa3da8c37f54a'
36 lines
1.3 KiB
Plaintext
36 lines
1.3 KiB
Plaintext
my %targets = (
|
|
"haiku-common" => {
|
|
template => 1,
|
|
CC => "cc",
|
|
CFLAGS => add_before(picker(default => "-Wall",
|
|
debug => "-g -O0",
|
|
release => "-O2")),
|
|
cflags => add_before("-DL_ENDIAN -include \$(SRCDIR)/os-dep/haiku.h",
|
|
threads("-D_REENTRANT")),
|
|
AR => "ar",
|
|
ARFLAGS => "qc",
|
|
HASHBANGPERL => "/bin/env perl",
|
|
sys_id => "HAIKU",
|
|
ex_libs => "-lnetwork",
|
|
perlasm_scheme => "elf",
|
|
thread_scheme => "pthreads",
|
|
dso_scheme => "dlfcn",
|
|
shared_target => "gnu-shared",
|
|
shared_cflag => "-fPIC",
|
|
shared_ldflag => "-shared",
|
|
perl_platform => 'Unix',
|
|
},
|
|
"haiku-x86" => {
|
|
inherit_from => [ "haiku-common" ],
|
|
CFLAGS => add(picker(release => "-fomit-frame-pointer")),
|
|
bn_ops => "BN_LLONG",
|
|
asm_arch => 'x86',
|
|
perlasm_scheme => 'elf',
|
|
},
|
|
"haiku-x86_64" => {
|
|
inherit_from => [ "haiku-common" ],
|
|
cflags => add("-m64"),
|
|
bn_ops => "SIXTY_FOUR_BIT_LONG",
|
|
},
|
|
);
|