mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-06 00:48:18 -07:00
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:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user