[FFmpeg-trac] #7478(ffmpeg:new): ERROR: vorbis not found using pkg-config

FFmpeg trac at avcodec.org
Tue Oct 23 21:25:25 EEST 2018


#7478: ERROR: vorbis not found using pkg-config
------------------------------------+----------------------------------
             Reporter:  serverok    |                    Owner:
                 Type:  defect      |                   Status:  new
             Priority:  normal      |                Component:  ffmpeg
              Version:  git-master  |               Resolution:
             Keywords:  libvorbis   |               Blocked By:
             Blocking:              |  Reproduced by developer:  0
Analyzed by developer:  0           |
------------------------------------+----------------------------------

Comment (by hspedro):

 Hi @serverok,

 From your config.log, the issue seems to be that `pkg-config` did not
 found a vorbis
 pkg on your system. Generally, the libraries come with a .pc file that
 indicates to
 pkg-config necessary variables. This vorbis.pc file should be copied to
 pkg-config path
 during make install. I ran your procedure and that was the case for me:

 ----
 180 make[2]: Nothing to be done for 'install-exec-am'.
 181  /bin/mkdir -p '/usr/local/share/aclocal'
 182  /usr/bin/install -c -m 644 vorbis.m4 '/usr/local/share/aclocal'
 183  /bin/mkdir -p '/usr/local/lib/pkgconfig'
 184  /usr/bin/install -c -m 644 vorbis.pc vorbisenc.pc vorbisfile.pc
 '/usr/local/lib/pkgconfig'
 ----

 Check if during your `make install` this procedure was executed. You could
 also check
 with `pkg-config --exists --print-errors vorbis && echo $?`, if it returns
 0 then vorbis
 was found by `pkg-config`.

 In anyway this doesn't seem to be a problem in `ffmpeg` itself.

--
Ticket URL: <https://trac.ffmpeg.org/ticket/7478#comment:2>
FFmpeg <https://ffmpeg.org>
FFmpeg issue tracker


More information about the FFmpeg-trac mailing list