svn commit: r536016 - in head/audio/libaudec: . files

Yuri Victorovich yuri at FreeBSD.org
Wed May 20 19:07:12 UTC 2020


Author: yuri
Date: Wed May 20 19:07:11 2020
New Revision: 536016
URL: https://svnweb.freebsd.org/changeset/ports/536016

Log:
  audio/libaudec: Remove tests from build
  
  This fixes the i386 build.
  
  Reported by:	fallout (failed on i386)

Modified:
  head/audio/libaudec/Makefile
  head/audio/libaudec/files/patch-meson.build

Modified: head/audio/libaudec/Makefile
==============================================================================
--- head/audio/libaudec/Makefile	Wed May 20 19:07:00 2020	(r536015)
+++ head/audio/libaudec/Makefile	Wed May 20 19:07:11 2020	(r536016)
@@ -19,6 +19,8 @@ USE_GITHUB=	yes
 GH_ACCOUNT=	alex-tee
 USE_LDCONFIG=	yes
 
+MESON_ARGS=	-Dbuild-tests=false
+
 PLIST_FILES=	bin/audec \
 		include/audec/audec.h \
 		lib/libaudec.so \

Modified: head/audio/libaudec/files/patch-meson.build
==============================================================================
--- head/audio/libaudec/files/patch-meson.build	Wed May 20 19:07:00 2020	(r536015)
+++ head/audio/libaudec/files/patch-meson.build	Wed May 20 19:07:11 2020	(r536016)
@@ -1,6 +1,6 @@
---- meson.build.orig	2020-01-06 04:43:34 UTC
+--- meson.build.orig	2020-05-16 11:50:13 UTC
 +++ meson.build
-@@ -160,7 +160,7 @@ config_h_dep = declare_dependency (
+@@ -177,7 +177,7 @@ config_h_dep = declare_dependency (
    )
  audec_deps += config_h_dep
  
@@ -9,3 +9,14 @@
    'audec',
    sources: srcs,
    dependencies: [
+@@ -212,7 +212,9 @@ audec_exe = executable (
+   install: not meson.is_subproject(),
+   )
+ 
+-subdir('tests')
++if get_variable('build-tests', true)
++	subdir('tests')
++endif
+ 
+ summary = [
+   '',


More information about the svn-ports-all mailing list