Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 15 Feb 1995 21:54:46 -0700
From:      Steve Passe <fbsd@clem.systemsix.com>
To:        hackers@FreeBSD.org
Cc:        Terry Dwyer <tdwyer@netbsd08.dn.itg.telecom.com.au>
Subject:   Re: playmidi? 
Message-ID:  <199502160454.VAA07809@clem.systemsix.com>
In-Reply-To: Your message of "Thu, 16 Feb 1995 11:07:23 %2B0800." <Pine.BSI.3.90.950216105440.26671C-100000@netbsd08.dn.itg.telecom.com.au> 

next in thread | previous in thread | raw e-mail | index | archive | help
> dictionary, I also got that from: 
>   ftp://ota.ox.ac.uk88/pub/ota/dicts/710/text710.dat.gz
> However rsynth does not find the dictionary in /usr/local/lib which is 
> the default in dict.c  Is this caused by some deficiency in 1.1.5.1 or 
> does it happen in 2.x as well


hello,
	for 1.1.5.1 there is a bug in dict.c, line 68:

68c68
<      d->base = (dictrec_ptr) mmap(0, d->size, PROT_READ, MAP_PRIVATE, fd, 0);
---
>      d->base = (dictrec_ptr) mmap(0, d->size, PROT_READ, (MAP_FILE | MAP_PRIVATE), fd, 0);

once rebuilt test it by:

% say ABCs

if it says "abeseas" it works, if it spells a,b,c,s, it didn't

i have no idea if it is in 2.0...

					Steve Passe
					smp@clem.systemsix.com



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199502160454.VAA07809>