app-arch/unzip-6.0_p27-r1: fix building on Solaris

This used to work, but likely due to Clang compiler version force,
certain functions, like memcpy aren't detected and bzero assumed.  Use
linux_noasm for Solaris, and apply a small extra config (BSD4_4) to
build, since we mimick Linux env in Gentoo Prefix for a great deal, this
works just fine for us.

Signed-off-by: Fabian Groffen <grobian@gentoo.org>
This commit is contained in:
Fabian Groffen
2024-07-25 09:10:18 +02:00
parent 7cea90df55
commit df3f2bc6cc

View File

@@ -65,7 +65,7 @@ src_configure() {
i?86*-*linux*) TARGET="linux_asm" ;;
*linux*) TARGET="linux_noasm" ;;
*-darwin*) TARGET="macosx" ;;
*-solaris*) TARGET="generic" ;;
*-solaris*) TARGET="linux_noasm" ;;
*) die "Unknown target; please update the ebuild to handle ${CHOST}" ;;
esac
@@ -73,6 +73,7 @@ src_configure() {
append-flags -std=gnu89
[[ ${CHOST} == *linux* ]] && append-cppflags -DNO_LCHMOD
[[ ${CHOST} == *-solaris* ]] && append-cppflags -DNO_LCHMOD -DBSD4_4
use bzip2 && append-cppflags -DUSE_BZIP2
use unicode && append-cppflags -DUNICODE_SUPPORT -DUNICODE_WCHAR -DUTF8_MAYBE_NATIVE -DUSE_ICONV_MAPPING