X-Recipient: archive-cygwin AT delorie DOT com X-Spam-Check-By: sourceware.org Message-ID: <48C71985.5050208@users.sourceforge.net> Date: Tue, 09 Sep 2008 19:49:09 -0500 From: "Yaakov (Cygwin Ports)" User-Agent: Thunderbird 2.0.0.16 (Windows/20080708) MIME-Version: 1.0 To: cygwin AT cygwin DOT com Subject: Re: Perl module Audio::Data References: <48C6F86B DOT 70900 AT ru DOT is> In-Reply-To: <48C6F86B.70900@ru.is> Content-Type: multipart/mixed; boundary="------------080400060307010805080109" Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com --------------080400060307010805080109 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256 Mary wrote: > I am trying to get the Audio::Data perl module because a program, rsynth > called by the HSLab utility of HTK, needs it. > I have not found it in the cygwin perl packages and when I use > perl -MCPAN -e shell and then > install Audio::Data (or fforce install Audio::Data) I get the following: It appears as this package needs to be told how to handle Cygwin. I've attached a patch which allows the module to build by using the oss driver instead of the nonexistent dummy driver. But given the nature of this package, I suggest testing the package further to make sure that it is actually working properly before relying on it. Yaakov -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (Cygwin) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iEYEAREIAAYFAkjHGYUACgkQpiWmPGlmQSOh+wCfatmVVahPbilaAnIgPd3iqQAE YoEAoKejrvzigXzx3ewoXvqEC0eJi7qB =rOQJ -----END PGP SIGNATURE----- --------------080400060307010805080109 Content-Type: text/x-patch; name="1.029-oss.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="1.029-oss.patch" --- origsrc/Audio-1.029/Play/Makefile.PL 2004-01-06 01:56:03.000000000 -0600 +++ src/Audio-1.029/Play/Makefile.PL 2008-09-09 19:33:40.974262100 -0500 @@ -80,7 +80,7 @@ } $driver = 'oss'; } - elsif (/^(\w+bsd)$/i) + elsif (/^(cygwin|\w+bsd)$/i) { $driver = 'oss'; } --------------080400060307010805080109 Content-Type: text/plain; charset=us-ascii -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/ --------------080400060307010805080109--