Hello! Trying to compile, build, install and run Opus. My config: Ubuntu console (Windows 10 app). First problem, configure says openssl is missing. My system says that i have openssl already. Which openssl does it need? Using aptitude, i've installed everything with openssl name in it. That's tons of files and gigabytes of data. But it worked somehow. Second problem, flac-1.3.2 - autogen.sh says missing program: libtool. Removed "libtool" requirment from autogen.sh. It solves. Built opus-tools, but not done yet! Third problem: opusenc: error while loading shared libraries: libopusenc.so.0: cannot open shared object file: No such file or directory. Same problems i've encountered running original Debian. Now running "make clean" then "configure --enable-static", "make" and "sudo make install" for all 6 packages... opusenc still cannot find libraries... Unsolved.
To build anything that needs openssl libraries on Ubuntu, you run sudo apt-get install libssl-dev For libtool, the package is either libtool, or libtool-bin on newer Ubuntu. Of course shared libraries won't be created if you don't have libtool. Aside from that, there should be error messages or warnings in the configure or the make process. Can you attach those full logs, if you can't find the error? Emily Bowman On Tue, Nov 19, 2019 at 11:11 AM ongaku zettai <sergeinakamoto at gmail.com> wrote:> Hello! Trying to compile, build, install and run Opus. > My config: Ubuntu console (Windows 10 app). > First problem, configure says openssl is missing. > My system says that i have openssl already. > Which openssl does it need? > Using aptitude, i've installed everything with openssl name in it. > That's tons of files and gigabytes of data. But it worked somehow. > Second problem, flac-1.3.2 - autogen.sh says missing program: libtool. > Removed "libtool" requirment from autogen.sh. It solves. > Built opus-tools, but not done yet! > Third problem: opusenc: error while loading shared libraries: > libopusenc.so.0: cannot open shared object file: No such file or directory. > Same problems i've encountered running original Debian. > Now running "make clean" then "configure --enable-static", > "make" and "sudo make install" for all 6 packages... > opusenc still cannot find libraries... Unsolved. > _______________________________________________ > opus mailing list > opus at xiph.org > http://lists.xiph.org/mailman/listinfo/opus >-------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.xiph.org/pipermail/opus/attachments/20191119/ffca919f/attachment.html>
>>> ongaku zettai <sergeinakamoto at gmail.com> schrieb am 19.11.2019 um 20:11 inNachricht <CAJB-V6a-qR=XaWd5Y8DvyYxr=NFO5Ww00wF6SOdWpuH1rObDRw at mail.gmail.com>:> Hello! Trying to compile, build, install and run Opus. > My config: Ubuntu console (Windows 10 app). > First problem, configure says openssl is missing. > My system says that i have openssl already.Most likely openssl development package (C headers, etc.)> Which openssl does it need? > Using aptitude, i've installed everything with openssl name in it. > That's tons of files and gigabytes of data. But it worked somehow. > Second problem, flac-1.3.2 - autogen.sh says missing program: libtool. > Removed "libtool" requirment from autogen.sh. It solves.URL : http://www.gnu.org/software/libtool/ Summary : A Tool to Build Shared Libraries> Built opus-tools, but not done yet! > Third problem: opusenc: error while loading shared libraries: > libopusenc.so.0: cannot open shared object file: No such file or directory.Did you read "man ld.so" about LD_LIBRARY_PATH?> Same problems i've encountered running original Debian. > Now running "make clean" then "configure --enable-static", > "make" and "sudo make install" for all 6 packages... > opusenc still cannot find libraries... Unsolved. > _______________________________________________ > opus mailing list > opus at xiph.org > http://lists.xiph.org/mailman/listinfo/opus