From owner-svn-ports-all@freebsd.org Thu Mar 22 05:51:59 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 879E4F6C114; Thu, 22 Mar 2018 05:51:59 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3B5268114C; Thu, 22 Mar 2018 05:51:59 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3654258D3; Thu, 22 Mar 2018 05:51:59 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w2M5pxOH052125; Thu, 22 Mar 2018 05:51:59 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w2M5px7K052123; Thu, 22 Mar 2018 05:51:59 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <201803220551.w2M5px7K052123@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Thu, 22 Mar 2018 05:51:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r465258 - in head/audio/vsound: . files X-SVN-Group: ports-head X-SVN-Commit-Author: danfe X-SVN-Commit-Paths: in head/audio/vsound: . files X-SVN-Commit-Revision: 465258 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 22 Mar 2018 05:51:59 -0000 Author: danfe Date: Thu Mar 22 05:51:58 2018 New Revision: 465258 URL: https://svnweb.freebsd.org/changeset/ports/465258 Log: Attempt to unbreak on ARM architectures by assuming they are little-endian. Modified: head/audio/vsound/Makefile head/audio/vsound/files/patch-configure Modified: head/audio/vsound/Makefile ============================================================================== --- head/audio/vsound/Makefile Thu Mar 22 05:48:25 2018 (r465257) +++ head/audio/vsound/Makefile Thu Mar 22 05:51:58 2018 (r465258) @@ -14,9 +14,6 @@ COMMENT= Utility for capturing audio streams from prog LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/COPYING -NOT_FOR_ARCHS= aarch64 armv6 armv7 -NOT_FOR_ARCHS_REASON= fails to build: error: Cannot determine endian-ness of processor - BUILD_DEPENDS= sox:audio/sox RUN_DEPENDS= sox:audio/sox Modified: head/audio/vsound/files/patch-configure ============================================================================== --- head/audio/vsound/files/patch-configure Thu Mar 22 05:48:25 2018 (r465257) +++ head/audio/vsound/files/patch-configure Thu Mar 22 05:51:58 2018 (r465258) @@ -31,7 +31,7 @@ case "$target_cpu" in - alpha* | i?86 ) -+ alpha* | i?86 | ia64* | amd64* ) ++ alpha* | i?86 | ia64* | amd64* | aarch64 | arm*) ac_cv_cpu_endian_ness="little" ;;