X-Git-Url: https://git.openssl.org/?a=blobdiff_plain;ds=sidebyside;f=Configurations%2F50-haiku.conf;h=cd6d10e5f082607c153dfa9d1613e757ecf070ab;hb=1b712f3fe4752ae1c770f06f957c0e5675b1801c;hp=f11466660965012ff9f37e5df176bea8367f955b;hpb=6c4be50a5d775866e79b2f58fafb23a862bd38b2;p=openssl.git diff --git a/Configurations/50-haiku.conf b/Configurations/50-haiku.conf index f114666609..cd6d10e5f0 100644 --- a/Configurations/50-haiku.conf +++ b/Configurations/50-haiku.conf @@ -1,10 +1,11 @@ -%targets = ( +my %targets = ( "haiku-common" => { template => 1, - cc => "cc", - cflags => add_before(picker(default => "-DL_ENDIAN -Wall -include \$(SRCDIR)/os-dep/haiku.h", + CC => "cc", + CFLAGS => add_before(picker(default => "-Wall", debug => "-g -O0", - release => "-O2"), + release => "-O2")), + cflags => add_before("-DL_ENDIAN -include \$(SRCDIR)/os-dep/haiku.h", threads("-D_REENTRANT")), sys_id => "HAIKU", ex_libs => "-lnetwork", @@ -14,11 +15,11 @@ shared_target => "gnu-shared", shared_cflag => "-fPIC", shared_ldflag => "-shared", - shared_extension => ".so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", + shared_extension => ".so.\$(SHLIB_VERSION_NUMBER)", }, "haiku-x86" => { inherit_from => [ "haiku-common", asm("x86_elf_asm") ], - cflags => add(picker(release => "-fomit-frame-pointer")), + CFLAGS => add(picker(release => "-fomit-frame-pointer")), bn_ops => "BN_LLONG", }, "haiku-x86_64" => {