diff options
author | adam <adam@pkgsrc.org> | 2004-11-23 08:50:23 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2004-11-23 08:50:23 +0000 |
commit | 11a9e2278101dffee75ab292f6aa3c73f7ec8201 (patch) | |
tree | aa353c2d964086100793c302e5cfe71678ec3bd8 /audio/nas/Makefile | |
parent | 2ea17ce1c7566d5bb38a6c3d8dfc9e34094689ef (diff) | |
download | pkgsrc-11a9e2278101dffee75ab292f6aa3c73f7ec8201.tar.gz |
Changes 1.7:
- fixed config/Imakefile so 'configure' command would work
under cygwin. Tested clients/server under cygwin.
- corrected a possible race condition in auvoxware that could
cause the server to hang under certain conditions. I do not
know why I haven't seen this problem before, but I could
recreate it easily by killing auplay while playing a long
tune.
If the system restarts syscalls after a signal handler has
run, a situation could arise where the previous timer was
never disabled. This could cause a previous ioctl(DSP_SYNC)
called from setSampleRate() to be constantly interrupted and
restarted, causing an apparent hang.
Now we just turn off the timer as the first thing in
setSampleRate() so DSP_SYNC can actually finish.
We also turn off the timer when openDevice is called, so the
'wait for device to become available' code can work too.
- Patch from Tobias Diedrich that allows mixer init to
fail in the voxware server.
- redid the FAQ in an attempt to make it more useful. I'll
try to keep it up to date.
- updated libtool due to a problem(s) reported by Steve
McIntyre.
Diffstat (limited to 'audio/nas/Makefile')
-rw-r--r-- | audio/nas/Makefile | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/audio/nas/Makefile b/audio/nas/Makefile index a398806acca..4f605d809b3 100644 --- a/audio/nas/Makefile +++ b/audio/nas/Makefile @@ -1,11 +1,10 @@ -# $NetBSD: Makefile,v 1.46 2004/10/28 13:38:52 wiz Exp $ +# $NetBSD: Makefile,v 1.47 2004/11/23 08:50:23 adam Exp $ -DISTNAME= nas-1.6.src +DISTNAME= nas-1.7.src PKGNAME= ${DISTNAME:S/.src//} -PKGREVISION= 3 CATEGORIES= audio MASTER_SITES= http://nas.codebrilliance.com/nas/ \ - ftp://ftp.uni-duisburg.de/Sound/NAS/ \ + ftp://ftp.uni-duisburg.de/Sound/NAS/ MAINTAINER= tech-pkg@NetBSD.org HOMEPAGE= http://radscan.com/nas.html @@ -15,13 +14,12 @@ DEPENDS+= p5-perl-headers-${OS_VERSION}:../../devel/p5-perl-headers PKG_INSTALLATION_TYPES= overwrite pkgviews -WRKSRC= ${WRKDIR}/${PKGNAME_NOREV} +WRKSRC= ${WRKDIR}/${PKGNAME_NOREV} USE_BUILDLINK3= yes +USE_GNU_TOOLS+= make USE_PKGINSTALL= yes USE_IMAKE= yes -USE_GNU_TOOLS+= make - PKG_SYSCONFSUBDIR= nas REPLACE_PERL= clients/audio/auscope/auscope |