diff options
author | Jan Beich <jbeich@FreeBSD.org> | 2023-09-23 17:02:11 +0000 |
---|---|---|
committer | Jan Beich <jbeich@FreeBSD.org> | 2023-09-23 17:14:53 +0000 |
commit | 95a0d0389f594dd16b293141bac889151303a560 (patch) | |
tree | 4a975760864135990021ae71d1d2d4c7e947a7ec | |
parent | 68bcefcd283a8731acc4573656564b28ff9af773 (diff) | |
download | ports-95a0d0389f594dd16b293141bac889151303a560.tar.gz ports-95a0d0389f594dd16b293141bac889151303a560.zip |
audio/alsa-plugins: remove debug options to prevent footshooting
- BLKCNT_P2 and VERBOSE exposed compile knobs from
https://people.freebsd.org/~ariff/libasound/20090928_00-alsa-plugins-1.0.21.diff
- BUFSZ_P2 worked around crashes and high CPU usage in Firefox until
native OSS support phased out ALSA
- hselasky@ fixed many ALSA issues over the years
- users can still adjust compile knobs via make.conf(5) or Makefile.local
PR: 274047
-rw-r--r-- | audio/alsa-plugins/Makefile | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/audio/alsa-plugins/Makefile b/audio/alsa-plugins/Makefile index b072b0832cad..20c8374fca30 100644 --- a/audio/alsa-plugins/Makefile +++ b/audio/alsa-plugins/Makefile @@ -1,7 +1,7 @@ PORTNAME= alsa-plugins PORTVERSION= 1.2.2 -PORTREVISION= 12 DISTVERSIONPREFIX= v +PORTREVISION= 13 CATEGORIES= audio MASTER_SITES= GH @@ -31,17 +31,6 @@ OPTIONS_DEFAULT= PULSEAUDIO OPTIONS_DEFINE= FFMPEG JACK PULSEAUDIO SAMPLERATE SPEEX OPTIONS_SUB= yes -OPTIONS_GROUP= OSS -OPTIONS_GROUP_OSS= BLKCNT_P2 BUFSZ_P2 VERBOSE - -BLKCNT_P2_DESC= Restrict number of fragments to ^2 aligned -BUFSZ_P2_DESC= Restrict buffer size to ^2 aligned -VERBOSE_DESC= Print debugging messages - -BLKCNT_P2_CFLAGS= -DFREEBSD_OSS_BLKCNT_P2 -BUFSZ_P2_CFLAGS= -DFREEBSD_OSS_BUFSZ_P2 -VERBOSE_CFLAGS= -DALSA_OSS_DEBUG_VERBOSE - FFMPEG_LIB_DEPENDS= libavcodec.so:multimedia/ffmpeg FFMPEG_CONFIGURE_ENABLE= libav |