Como compilar o tarball do VLC 3.0.3 no Arch Linux?

0

Estou tentando reportar um acidente de VLC , mas a compilação falha:

$ ./configure CFLAGS="-g" CXXFLAGS="-g" --enable-debug && make
[…]
  CC       codec/libx264_plugin_la-x264.lo
In file included from ../include/vlc_fixups.h:31,
                 from ../config.h:907,
                 from codec/x264.c:29:
/usr/include/features.h:381:4: warning: #warning _FORTIFY_SOURCE requires compiling with optimization (-O) [-Wcpp]
 #  warning _FORTIFY_SOURCE requires compiling with optimization (-O)
    ^~~~~~~
codec/x264.c: In function ‘Open’:
codec/x264.c:849:26: error: ‘x264_bit_depth’ undeclared (first use in this function); did you mean ‘x264_picture_t’?
         const int mask = x264_bit_depth > 8 ? X264_CSP_HIGH_DEPTH : 0;
                          ^~~~~~~~~~~~~~
                          x264_picture_t
codec/x264.c:849:26: note: each undeclared identifier is reported only once for each function it appears in

Não parece haver um pacote de bibliotecas x264:

$ pacman --sync --search x264
extra/x264 2:155.r0a84d986-2 [installed]
    Open Source H264/AVC video encoder

Como faço para superar essa etapa? Eu já instalei todas as dependências de compilação do pacote vlc-git AUR .

    
por l0b0 30.08.2018 / 11:49

1 resposta

1

Com base nos comentários do @ jasonwryan, consegui modificar o VLC 3.0.3 oficial PKGBUILD para criar uma versão de depuração do VLC. O diff do PKGBUILD:

$ diff PKGBUILD{.orig,}
125c125
<   export CFLAGS+=" -I/usr/include/samba-4.0"
---
>   export CFLAGS+=" -I/usr/include/samba-4.0 -g"
127c127
<   export CXXFLAGS+=" -std=c++11"
---
>   export CXXFLAGS+=" -std=c++11 -g"
222c222,223
<               --with-kde-solid=/usr/share/solid/actions/
---
>               --with-kde-solid=/usr/share/solid/actions/ \
>               --enable-debug

Infelizmente, isso não foi suficiente para fornecer informações suficientes para os desenvolvedores.

    
por 31.08.2018 / 13:22