1

I have Ubuntu 12.04 x32 To install opus-tool like described here I need to update from libogg 1.2.2 to libogg 1.3.0 I copied libogg.so.0.8.0 to i386-linux-gnu/ and made ldconfig, like in manual. But when I'm trying to ./configure opus-tools, getting error:

configure: error: newer libogg version (1.3 or later) required

Could you help me with that? Thanks.

fapw
  • 13

1 Answers1

0

I'm not sure how you can upgrade so...
You can install 1.3 not as an update:

cd /tmp && wget -O libogg-1.3.0.tar.gz http://goo.gl/vHzMn
tar zxvf libogg-1.3.0.tar.gz && cd libogg-1.3.0
./configure && make
sudo make install
TellMeWhy
  • 17,964
  • 41
  • 100
  • 142