0

I'm trying to build mpeg4ip library for Ubuntu 14.04 LTS. The command make && make install throws error as below. I referred to Install mpeg4ip using apt on Ubuntu 14.04TLS but it shows 404 while updating.

make[4]: *** [rtphint.lo] Error 1
make[4]: Leaving directory `/usr/local/src/mpeg4ip-1.5.0.1/lib/mp4v2'
make[3]: *** [all-recursive] Error 1
make[3]: Leaving directory `/usr/local/src/mpeg4ip-1.5.0.1/lib/mp4v2'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/usr/local/src/mpeg4ip-1.5.0.1/lib'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/usr/local/src/mpeg4ip-1.5.0.1'
make: *** [all] Error 2

How can I install this library in my linux machine.

jww
  • 97,681
  • 90
  • 411
  • 885
  • 1
    Hi. You need to show a few of the lines in your `make` output before those lines - before it starts saying "Leaving directory". – David Collins Jun 23 '18 at 13:32
  • Full log as [link](https://pastebin.com/index/VtKx1xsd) – user3696283 Jun 23 '18 at 13:51
  • It is hard to say what is wrong because so much information is missing. Try `./configure && make && sudo make install` – jww Jun 23 '18 at 15:49
  • You should ask on askubuntu rather than here – David Brossard Jun 23 '18 at 15:51
  • The error message is `invalid conversion from 'const char*' to 'char*' [-fpermissive]`. Looks like the project doesn't strictly follow types properties, and modern compiler with default settings emits error about that. You may add compiler option `-fpermissive` for tell a compiler to ignore such problems. About adding compiler flags for `configure` see [that question](https://stackoverflow.com/questions/23407635/append-compile-flags-to-cflags-and-cxxflags-while-configuration-make). – Tsyvarev Jun 24 '18 at 10:47
  • configure: error: unrecognized option: -fpermissive – user3696283 Jun 26 '18 at 16:43

0 Answers0