svn commit: r478887 - head/audio/xanalyser

Kurt Jaeger pi at FreeBSD.org
Mon Sep 3 18:20:23 UTC 2018


Author: pi
Date: Mon Sep  3 18:20:22 2018
New Revision: 478887
URL: https://svnweb.freebsd.org/changeset/ports/478887

Log:
  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 at utanet.at>
  Approved by:	db (maintainer)

Modified:
  head/audio/xanalyser/Makefile

Modified: head/audio/xanalyser/Makefile
==============================================================================
--- head/audio/xanalyser/Makefile	Mon Sep  3 17:51:32 2018	(r478886)
+++ head/audio/xanalyser/Makefile	Mon Sep  3 18:20:22 2018	(r478887)
@@ -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


More information about the svn-ports-all mailing list