Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 22 Mar 2018 05:51:58 +0000 (UTC)
From:      Alexey Dokuchaev <danfe@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r465258 - in head/audio/vsound: . files
Message-ID:  <201803220551.w2M5px7K052123@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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"
  		;;
  		



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201803220551.w2M5px7K052123>