|
From: Eric W. <nor...@yh...> - 2015-10-07 10:24:04
|
Please don't drop Cc: to public lists, others can help while I'm away. I welcome direct emails, just keep others in the loop :) Tarim <ta...@me...> wrote: > Having problems building sox from your git repository at the moment. > > I get: > ./configure: line 14592: syntax error near unexpected token `OPUS,' > ./configure: line 14592: ` PKG_CHECK_MODULES(OPUS, opusfile, , > using_opus=no)' > > Try ./configure --with-opus=no - but that doesn't help. > > Comment out PKG_CHECK_MODULES line (but still need --with-opus-no to get > it to compile). > > Now I have a sox but it has no default sound device, and only seems to > know about oss or ossdsp. Try: > > AUDIODRIVER=oss LD_LIBRARY_PATH=/usr/local/lib:/lib:/usr/lib play xx.wav > > but this also seems to need an AUDIODEV and I can't find anything in > /dev/snd which satisfies it. > > Think I'm probably overlooking something obvious but I've been going > round in circles with this for a while now. You're probably missing dependencies and sox is falling back to non-ideal audio playback (OSS, instead of ALSA or PulseAudio). Try to install the same build-dependencies for sox used by your system. On Debian/Ubuntu systems, this can be done easily using: apt-get install build-essential apt-get build-dep sox (Be sure you have the "deb-src" lines in your /etc/apt/sources.list file uncommented). |