diff --git a/srcpkgs/openssl/template b/srcpkgs/openssl/template index e4c2e383a4..b5cd083ec6 100644 --- a/srcpkgs/openssl/template +++ b/srcpkgs/openssl/template @@ -21,15 +21,27 @@ make_dirs=" do_configure() { local _opts - if [ "${XBPS_MACHINE}" = "x86_64" ]; then - _target="linux-x86_64" - _opts="enable-ec_nistp_64_gcc_128" - elif [ "${XBPS_MACHINE}" = "i686" ]; then - _target="linux-elf" - elif [ "${XBPS_MACHINE}" = "armv6l" ]; then - _target="linux-armv4" + case "$XBPS_TARGET_ARCH" in + arm*) _target="linux-armv4";; + mips*) msg_error "$pkgver: unknow cross arch\n";; + esac + + if [ -z "${_target}" ]; then + if [ "$XBPS_MACHINE" = "x86_64" ]; then + _target="linux-x86_64" + _opts="enable-ec_nistp_64_gcc_128" + elif [ "$XBPS_MACHINE" = "i686" ]; then + _target="linux-elf" + elif [ "$XBPS_MACHINE" = "armv6l" ]; then + _target="linux-armv4" + fi fi + sed -i '/^"linux-armv4/s/-DTERMIO/-DTERMIOS/' Configure + sed -i '/^"linux-x86_64/s/-DTERMIO/-DTERMIOS/' Configure + sed -i '/^"linux-elf/s/-DTERMIO/-DTERMIOS/' Configure + sed -i 's/defined(linux)/0/' crypto/ui/ui_openssl.c + ./Configure --prefix=/usr --openssldir=/etc/ssl --libdir=lib \ shared zlib enable-md2 threads ${_opts} \ ${_target} -Wa,--noexecstack "${CFLAGS}"