Re: [FFmpeg-user] How to build static fontconfig with ffmpeg?

2018-08-15 Thread Reino Wijnsma
On 13-8-2018 15:02, qw wrote: > I use the command of 'pkg-config --static', which prints nothing. On 9-8-2018 2:09, Reino Wijnsma wrote: > 8) build fontconfig-2.13.0.tar.bz2 > export PKG_CONFIG="pkg-config --static" > ./configure --disable-shared --enable-static > make > unset PKG_CONFIG You'd

Re: [FFmpeg-user] How to build static fontconfig with ffmpeg?

2018-08-13 Thread qw
Hi, >Andrew, how does your FreeType2 pkg-config file ('freetype2.pc') look like? >You're compiling Fontconfig. Fontconfig requires FreeType2, which in turn (in >your case) requires LibPNG and Harfbuzz. >To have Fontconfig also recognize Freetype2's requirements (LibPNG and >Harfbuzz) I believe

Re: [FFmpeg-user] How to build static fontconfig with ffmpeg?

2018-07-24 Thread qw
Hi, >Wonder if it should be >or use another configure command : ./configure --disable-shared >--enable-static LDFLAGS="-L/usr/local/lib" LIBS="-lfreetype -lharfbuzz > -lpng" > >If that doesn't work maybe the circular dep. with harfbuzz and free >type isn't trivial? It doesn't work. I combine

[FFmpeg-user] How to build static fontconfig with ffmpeg?

2018-07-17 Thread qw
Hi, My environment is Centos 7.4. I want to build static fontconfig and build ffmpeg with static fontconfig. I succeed in building static libpng/freetype2/harfbuzz/vidstab/fribidi/expat, but I fail to build static fontconfig. The following is my building steps: 1) build