svn commit: r465258 - in head/audio/vsound: . files

Alexey Dokuchaev danfe at FreeBSD.org
Thu Mar 22 05:51:59 UTC 2018


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"
  		;;
  		


More information about the svn-ports-all mailing list