diff options
author | pi <pi@FreeBSD.org> | 2018-09-04 02:20:22 +0800 |
---|---|---|
committer | pi <pi@FreeBSD.org> | 2018-09-04 02:20:22 +0800 |
commit | a7191d6080587894c9522c02e449c1f286e5bed6 (patch) | |
tree | 0cae810df052c903086325ac3587ca98020442ef /audio | |
parent | 2e3732f30c69efa0faf8be15488ba9c2ea30f909 (diff) | |
download | freebsd-ports-gnome-a7191d6080587894c9522c02e449c1f286e5bed6.tar.gz freebsd-ports-gnome-a7191d6080587894c9522c02e449c1f286e5bed6.tar.zst freebsd-ports-gnome-a7191d6080587894c9522c02e449c1f286e5bed6.zip |
audio/xanalyser: fix a ioctl call
- SNDCTL_DSP_GETBLKSIZE() is in FreeBSD a read only ioctl()
Need to use SNDCTL_DSP_SETBLKSIZE() to really set the blocksize.
PR: 193373
Submitted by: hselasky
Reviewed by: Walter Schwarzenfeld <w.schwarzenfeld@utanet.at>
Approved by: db (maintainer)
Diffstat (limited to 'audio')
-rw-r--r-- | audio/xanalyser/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/audio/xanalyser/Makefile b/audio/xanalyser/Makefile index c4e2c173835c..d3f97231f7d1 100644 --- a/audio/xanalyser/Makefile +++ b/audio/xanalyser/Makefile @@ -3,7 +3,7 @@ PORTNAME= xanalyser PORTVERSION= 1.32 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= audio hamradio MASTER_SITES= http://arvin.schnell-web.net/xanalyser/ \ LOCAL/db |